Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Checkbox Vs Scroll (under Mask)(MX)



Hello, folks! I'm in need of a "little" help!
I've done a movie clip with some checkboxes in it. It is larger than the screen, thus I put it under a mask and made buttons for scrolling (no, my client didn't allow me to use the scrollpane!).
Problem is: only the first checkbox apears! And more: when I scroll the movie, it stands still!
How should I proceed?
Thanks in advance!



FlashKit > Flash Help > Flash MX
Posted on: 06-05-2003, 04:45 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Checkbox Label Not Seen When Using Mask
Hi:
I have this problem that when i use a checkbox within a mask i cannot see the label of the chackbox. Any clue?
Thanks vey much in advance

Scroll MovieClip With No Mask
Hi
I know that if u mask the text or componets the text will not show , only if u are using embeded font.
I dont want to use the embeded font becuse the text will not look so good like its looks with the use divice fonts.

I want to scroll an mc with many checkBoxs.But i dont know how to scroll it without the mask. I want an simple scroll with to button for up and down .

Can u plese tell me what r my solutions in this situation?

Thank You

Please Help Menu With Mask - Won't Scroll
Could you please see what is happening with my menu. It won't scroll. This menu contains links.
Thanks
Ecinele

[Help] Load SWF And Scroll / Mask
Using Flash 9 AS3.

Attached is a prototype of a project I'm working on... Load the interface.swf and click on the button "load viewer" to load the map.swf file into interface.swf.

Map.swf contains an image to move around with the buttons. The problem is the image (which is larger than map.swf) along the outside of the map.swf is still visible. How can I get the image to only appear within the bounds of map.swf and not outside the edges?

The attached zip also contains fla files for both interface and map.

I experimented with mask could couldn't get anything to work.

Thanks for any help... a screen capture of the issue is below (the white background is the "interface"... that loads the grey viewer)

Brent



Click here to download zip file with source files in Flash 9 format

Easing Scroll With Mask
Hello,

I've created my own custom scroll bar with easing, which scrolls a dynamic text field (formatted with html) pixel by pixel. It works really well. But obviously I need a mask so that you can't see all the text when you scroll it. After trying a mask and it not working, I realised I had to embed the font (and the bold and italic versions too). And I've also turned off antialiasing, because turning it on looks pretty awful. The problem is that now the movie slows down considerably.

I've done some experimenting with speed tests and it seems that embedding the font seems to slow things down alot. And masking makes it slower too.

Admitedly the scrolling area is about 400px by 300px, and the dynamic text field is stored to it's full height (it's resized to fit all of the text) inside a movieclip. Is is typical of this kind of scrolling technique to slow down the movie so much? Or is there an alternative way of masking the text, because, WITHOUT the mask and embedding, there's no speed loss and my scrolling work's great.

If not, I'll just have to go back to flash's default line by line scrolling.

[F8] Checkbox & Masks - How Do I Embed The Checkbox Font?
i'm trying to put checkboxes under a mask, but can't seem to succesfully embed the font for the checkboxes so that they labels actually appear...

can someone please give me directions as to how/where to set the checkbox font to be embedded? the default font is fine...

TIA

Scroll Text (mask) OnMouseOver
hello,
i'm trying to figure out how to make some text scroll onMouseOver rather than onCLick/release)

any help is appreciated

Gradient Mask Away Dynamic Text With Scroll
Ok so basically I would like to have a dynamic text box that loads text in from a notepade file. Then I want it to be scrollable with arrows and the actual bar. Then when it is supposed to disappear from scrolling, I would like it to fade away like with a gradient mask or just alpha. Anyone ever done this?

I know how to load the txt file, I know how to make it scroll with arrows. Now I just need help with the bar and the fade away.


Thanks



Brian

Load Big Image.. Set Mask... Scroll Mouse
i have searched for some help on this. can anyone help me out. I would like to be able to load an external image into a MC and then scroll it (up, down, left, right) using the position of the mouse. I saw something before but it would not work when i loaded an external image.

Anyone can direct me in the reight direction?

thanks

Scrolling Text Already Masked (how To Scroll W/o A Mask)
http://www.clayton.bellmor.com/

On the home page, I have a mask that slides up and shows the text in both tables.
As you probably can see, the text field on the right is long and I need to have it scrollable.

How is this accomplished considering I've already masked the text once, and it doesn't look like I can mask a mask...

the .fla is at http://www.clayton.bellmor.com/inlaytext.fla

Thanks!

HELP: Here's Another Stupid Prob That I Don't See: Scroll Mask Don't Work [MX04]
I just don't get that a mask scroll works fine. the scroll alone works fine but when I add a mask everything disappear, I don't understand, I've done it about twenty times...but adding a mask seem so easy that I just don't know where can be the mistake. it's on the section called "nos plats" of the attached fla. Please Help....before I jump through the window.

Panchoskywalker

here's the fla

Want Up & Down Buttons To Scroll Graphic Movie Clip Behind Mask
As the title suggests, I am trying to simply scroll an mc (not dynamic text) under a mask via an up and down button.

Have it all set up except for the button actions...
could use some help -- what actions should go in the up and down buttons

Thx

Want Up & Down Buttons To Scroll Graphic Movie Clip Behind Mask
As the title suggests, I am trying to simply scroll an mc (not dynamic text) under a mask via an up and down button.

Have it all set up except for the button actions...
could use some help -- what actions should go in the up and down buttons

Thx

AS3: Mask Within A Mask (or How To Use A Shape With A Hole In It As A Mask)
Hi guys,

I've been stuck on this AS 3 masking problem for days now. I'm sure there's a simple solution to my problem but it's proving to be a pain.

I have a movieclip that contains some drawings, bitmap, etc. on top of that I am drawing a yellow rectangle with a hole in it using ActionScript:




What I want to achieve is to mask the movieclip container using the yellow rectangle, but I want the hole in the middle to not show the drawings and line:




However what I am actually getting is the yellow rectangle is masking the movieclip, but is ignoring the hole within it:




This is the AS3 code that I've written to get the above effect (with 'maskee' being the movieclip that contains the drawings):


Code:
function drawRectMask(p_sprite:Sprite) : void {
p_sprite.graphics.beginFill(0xf0ff00);
p_sprite.graphics.drawRect(100,100,300, 300);
p_sprite.graphics.moveTo(100,200);
p_sprite.graphics.drawRect(150,150,100, 100);
p_sprite.graphics.endFill();
}

var spr:Sprite = new Sprite();
drawRectMask(spr);
addChild(spr);

maskee.mask = spr ;

I'm at wits end. Any help on this would be greatly appreciated.

Client Request Feathered Mask Or Soften Fill Edges Mask
What application do you use to mock up flash designs?Photoshop7

How To Mask Duplicated Movie Clips With A Single Mask?
I have created 11 movie clips 17px in a vertical column.

I have used this code to duplicate them.


ActionScript Code:
for(i=0; i <10; i++){
    newName = "softwareBar" + i;
    duplicateMovieClip("softwareBar", newName, i);
    softwareBar._y += 17;
}

I have a mask that I need to use to cover all the clips, however when I use setmask it only covers the last looped item in the duplicateMovieClip code.

How would I go about masking all the duplicated clips with a single mask?


Not sure if this info is pertinent but once they are masked I will then be animating each duplicated bar separate using this function.


ActionScript Code:
loadBar = function(clipName, amount){
    clipName.onEnterFrame = function(){
        if(clipName._width<amount){
            clipName._width +=speed * speedDim;
        }
    }
}

Thanks
DDC

Mask Over Mask Leaving Pasrts Covered From Overlap.
Hello,

I have a complex image that I would like to mask with an animated mask.

I am using a movie clip with a couple of layers that "reveal" parts of the complex image at a time.
The problem is, when part of a mask overlaps another, it leaves that part of the complex image covered.

Is there a way around this?

Thanks in advance.

Drag A Mask, With Out Draging The MC Under That I Want To Mask Over?
Hello,

I have a mask and MC button which I am draging. I works fine other the fact the the whole MC movies even the MC inwhich I want to mask over: "BigYears" .

I have tryed to use:
onClipEvent (enterFrame) {
setProperty (this.BigYears, _x, -this._x);
setProperty (this.BigYears, _y, -this._y);
}

Then "BigYears" is not viewable under the mask.

INVERSED Mask? REVERSE Mask?
Okay, here's my dilemma.

I want a small circle to grow to reveal the contents within the circle, and THEN (and this is the hard part) I want another circle to grow from the same starting point that makes shows THROUGH to what's behind the circle.

So

I already have the first part done, where there's the contents on one layer, and a masked circle that tweens to reveal the contents.

BUT, the second part has to reveal the INVERSE of the contents... I don't really know HOW to explain this other than saying I want to punch a hole THROUGH the contents.

Any ideas?

HELP I Need A Mask Guru To Help Me With A Mask Problem
Hi,

I've got two mc's that are suppose to be playing simultaneously. Both duplicate mc's are called "Cloud Motion Tween" and there is one on the main timeline that has a brightness of -55 and the other duplicate of that mc is inside a mask in a mc called "Nav Bar (About)". Both mc's are suppose to be in sync.

Now every time I rollover the "Nav Hit Panel" button the mc inside the mask starts all over again and stuffs up the synchronization of the two mc's.

I have attached the fla file. You'll see what I mean.

Thank you so much for you valued time and effort. You are a true champ!!! (Whoever you are)

Blastbum

HELP I Need A Mask Guru To Help Me With A Mask Problem
Hi,

I've got two mc's that are suppose to be playing simultaneously. Both duplicate mc's are called "Cloud Motion Tween" and there is one on the main timeline that has a brightness of -55 and the other duplicate of that mc is inside a mask in a mc called "Nav Bar (About)". Both mc's are suppose to be in sync.

Now every time I rollover the "Nav Hit Panel" button the mc inside the mask starts all over again and stuffs up the synchronization of the two mc's.

I have attached the fla file. You'll see what I mean.

Thank you so much for you valued time and effort. You are a true champ!!! (Whoever you are)

Blastbum

Dynamic Mask Doesn't Mask...
I have a local radar image that I am loading into a holder movie clip and trying to mask but it doesn't work. Both the image and the mask are being displayed.

The holder movie clip is 'dopplerRad_mc' and I am attaching from the library.
The clip the image is loaded into is 'dopplerHolder_mc' and is dynamically created.
I then attach a mask movie clip from the library, 'imageMask1'.

My code is below. Any idea what I am missing?

var dopplerRad_mc:MovieClip = attachMovie("doppler_mc","dopplerRad_mc", getNextHighestDepth());
var doppler_mc:MovieClip = dopplerRad_mc.createEmptyMovieClip("dopplerHolder_ mc", dopplerRad_mc.getNextHighestDepth());
var mclListener:Object = new Object();
var mcLoader:MovieClipLoader = new MovieClipLoader();
mcLoader.addListener(mclListener);
mcLoader.loadClip(doppler, dopplerRad_mc.dopplerHolder_mc,1);
dopplerRad_mc.attachMovie("imageMask","imageMask1" ,2);
dopplerRad_mc.dopplerHolder_mc.setMask(dopplerRad_ mc.imageMask1);

Attaching Mask Onto Mask Layer
Hi,

I've been trying to attach a movieclip from the library, to the Mask layer using actionscript so that the mask_mc can hide a line of text as it moves.

But the movieclip is not getting attached to the mask layer.

Please help....

Gradient Mask Using JPEG As Mask
Hi there. I am trying to find a way to use loaded greyscale JPEGs to form gradient masks in Flash. Basically I want to be able to create an opacity mask just like you do in Illustrator or Photoshop, where it's the darkness of each pixel that determines opacity, rather than the alpha value.

It seems that in Flash the only way to create a gradient mask is to use a mask that has varying alpha values. I suppose that means I could use PNG files to form my mask instead, but I really need to be able to do it with JPEGs.

Perhaps there is a BitmapData filter that can convert shades of grey to degrees of alpha?

Thanks :)

Lara.

Can The Mask, Mask Color To Create B/w
Is it possible for a mask to mask color? I would like my mask to mask the color and only show B/W in the output.

Checkbox Help Please
I have a flash form that i'm working on that has 5 checkboxes. And i only want them to select 2 of the 5.
I believe i have to write a "change handler" function...am i right?
If so, how would i go about doing that?
please help!!!

Set CheckBox Value
This is a small part to a bigger thing, but what I am trying to do is load a movie clip that contains an instance of a checkbox and then set the value of the checkbox from the parent movie. I know this is probably really simple, but I can't seem to get my relative addressing right to make it work.

What I have been trying is
this.new_name_of_attached_mc.inst_name_of_box.setV alue(true);

This is one of those really irritating little things, and I would appreciate the help.

Here is an example fla.

Add Checkbox
I need to modify this script to add a column for checkboxes..
i think this part of the script that i got to modify...
Muz i modify the php file as well??
Can anyone help??

Thanx in advance!!!

function initializePHP(file) {
//Defining url string
//Result array initialization
dataArray = [];
//Loading and processing function
loadedData = new LoadVars();
v = new LoadVars();
v.host = hostName;
v.user = user;
v.pass = pass;
v.db = dbName;
v.table = tbName;
v.sendAndLoad(file, loadedData, "POST");
loadedData.onLoad = function(success) {
if (success) {
if (loadedData.link == "false") {
errorMessage();
} else {
columns = [];
for (var i = 0; i<loadedData.colnum; i++) {
columns.push(eval("loadedData.column"+i));
}
var count = 0;
for (var i = 0; i<loadedData.rownum; i++) {
var obj = new Object();
//Feeding Object with its properties
for (var j = 0; j<loadedData.colnum; j++) {
obj[columns[j]] = eval("loadedData.row"+count);
count++;
}
//Feeding Result array with Objects
dataArray.push(obj);
delete (obj);
}
dragPos(loadedData.colnum);
//make Table At Startup
createTable(dataArray);
}
} else {
errorMessage();
}
};
//initialize pages number
pages = 1;
}

How Do I Set A Value In A Checkbox?
Hey guys,

This is my first try at doing Flash so I don't know anything. I have a job where an associate is going to be doing flash pages and I have to do the ASP back side scripting. So... I need to understand a few basic things about actionscripting to do it.

if someone could help me understand the object model that is used that would be great.

What I need to do is set the value of a checkbox from a value collected from an ASP.

I got the value from the ASP into Flash. Now I don't know how to set the value of a checkbox.

Any help would be appreciated.

Checkbox Help
newb question...

how would i go about setting up a checkbox component in a movie clip which makes the clip invisible when unchecked, and visible when checked?

something like

if(checked){
myMovieClip._visible = false;

right?

but how do i find out what variable the check box is making true/false?

Checkbox
I have a checkbox through out my entire flash movie. Depending on its state and what buttons are clicked on next will take them to a different 'slide'. I would like perform an action immediately after the checkbox is first checked or unchecked. Can someone tell me how to perform this action.

Thanks,

Nate

Checkbox
I've made a form that people can fill in and send to my email address. I want to add a checkbox to that form that is send with the form to my email address. How do I do that. I used the component inside flash. What actionscript do I use to make sure that the information (true or false) is send with the rest of the form variables!
The checkbox is used to let the sender of the form deside if he wants extra information or not.
Thanks for helping me out!

CheckBox
Hi, I am trying to create a quiz in flash MX, one of the questions involves picking 3 correct answers from 7 possible. I want to be able to make the user taking the test to check they have selected the correct answers.

I am trying to use the checkbox component, however I am not really sure how to go about it as i want a variable to record which answers are selected and give a mark ie 1/3 correct. Can anyhow help me on the actionscript I would need to go about this? Or point me towards a helpful simply tutorial?????

Please help....

Michelle

Checkbox
I want to make a form using the checkbox component
Let's say I have 6 checkbox and 6 variables
I dont know how to modify the 6 variables when
the user clicks the checkboxes

Checkbox Help
I need help with my checkbox componenet. I have a checkbox labeled Resident and a component name of TNUR. From within another MC on the next frame, I have the action:

ResCHK = _root.inrec.TNUR.getValue();

Now shouldn't the variable ResCHK be equal to the Checkbox? Shouldn't something appear on the screen if I set a variable on the screen with the name of ResCHK? If not, can someone please help?

Checkbox Help
I am trying to tell when a checkbox is selected... then display something. Below is the code I am using.


Code:
var t1 = myAccordion.jobDept.createChild("CheckBox", "label1", { label: label1 });
t1.setSize(200,25);

if (t1.selected=="true"){
trace("SUCCESS");
}
Any help is greatly appreciated!

/z

Checkbox
Hello

I have a movie loaded into my flash program and I have created several check boxes for which I want to give the user the control to stop at a particular frame within the movie. I am not sure where to start. My end goal is to provide the User with three checkboxes. If they check the first one they start at the beginning of the movie and stop at the specified frame. If they check the second box then they start at the beginning of the movie and continue past where the first check box would stop and stop and a second specified frame and so on. Does anyone know how to do this?

Thanks

Can't See My Checkbox
I have some simple checkboxes set up, not embedded in a movie clip. They seem fine in Flash, but when I test or export the movie, there's a white box (the size of the bounding box) where the checkbox and the label should be. I copied the checkboxes to a fresh project, and they seem fine. I'm sure there's a simple solution, but I've yet to find it. Any ideas?

Thanks.
apVance

Checkbox
If checkbox is clicked, movie has to go to particular label & play. If it is unclicked it has to go to other lable & play. How to do that?

Checkbox?
i just want to globally change the theme color of the check box.

for an instance
myCB.setStyle("themeColor", 0xff0000); // works
_global.styles.CheckBox.setStyle("themeColor", 0xff0000); //doesn't???

Checkbox Help
I'm having troubles transposing the tutorial for creating the checkboxes into the project I'm working on. I just need one checkbox linked to a Boolean variable called exitOnLoad. What is the easiest way to go about this? Is it better to accomplish this by actionscript or via the components? I must be making this harder than it really is.

Help With Checkbox Please...
hi, I am having some trouble trying to get flash check boxes work with php, can anyone help please...
I've been banging my head against the wall..hehe...
I apreciate any help at all

CheckBox And MCs
I am trying to create a small movie where users select a number of images (MCs) by ticking a CheckBox for each image they wish to select. Then they press continue_btn and they are taken to another frame where their chosen MCs can be found. Is this even possible?

Gabriel

[F8] Checkbox Help Please
Trying to set a price to 25.00 once the checkbox is selected and set the price back to 0.00 once its unselected.
I have the following code in the frame's actionscript;



Code:
myCheckbox.click = function() {
if (myCheckbox.selected) {
photo_pricet.text = rounding(25, 2);
return;
}
photo_pricet.text = rounding(0, 2);
};
}

the dynamic text doesn't change at all...any ideas? Thanks!

[F8] Help With Checkbox Please
HI

I build an image gallery with AS2 and XML, now I want the user to be able to check a checkbox next to the image whenever they want to select it as one of their favourates...it's kind of like a catalouge and it should just write the image info to a seperate word file or spreadsheat. Is there any way of doing this?

This is the code for one of the frames in my swf.

//thank you cards

stop();

Fuse.AUTOSTOP = true;
Fuse.AUTOCLEAR = true;

this.tin_mc.slideTo('260', '0', .6, 'easeInOutBack');
this.organza_mc.slideTo('260', '0', .7, 'easeInOutBack');
this.boxed_mc.slideTo('260', '0', .8, 'easeInOutBack');
this.unique_mc.slideTo('260', '0', .9, 'easeInOutBack');
this.serv_mc.slideTo('260', '0', 1, 'easeInOutBack');


this.tin_mc.alphaTo(100, .6, 'easeInOutBack');
this.organza_mc.alphaTo(100, .7, 'easeInOutBack');
this.boxed_mc.alphaTo(100, .8, 'easeInOutBack');
this.unique_mc.alphaTo(100, .9, 'easeInOutBack');
this.serv_mc.alphaTo(100, 1, 'easeInOutBack');


//back
this.back_mc.slideTo('260', '0', 1.1, 'easeInOutBack');
this.back_mc.alphaTo(100, 1.1, 'easeInOutBack');
//


//code wat images load van xml
var x:XML = new XML();
x.ignoreWhite = true;
var urls:Array = new Array();
var captions:Array = new Array();
var wis:Number;

x.onLoad = function() {
urls = new Array;
var photos:Array = this.firstChild.childNodes;
for (i=0;i<photos.length;i++) {
urls.push(photos[i].attributes.url);
captions.push(photos[i].attributes.caption);
}
holder.loadMovie(urls[0]);
caption.text = captions[0];
wis = 0;
}


tin_mc.onRelease = function() {
x.load("XML/gallery/thanx/tTin.xml");
}
organza_mc.onRelease = function() {
x.load("XML/gallery/thanx/tOrganza.xml");
}
boxed_mc.onRelease = function() {
x.load("XML/gallery/thanx/tBoxed.xml");
}
unique_mc.onRelease = function() {
x.load("XML/gallery/thanx/tUnique.xml");
}
serv_mc.onRelease = function() {
x.load("XML/gallery/thanx/tServiette.xml");
}

/////////////////////////////////////
p = 0;
this.onEnterFrame = function() {

filesize = holder.getBytesTotal();
loaded = holder.getBytesLoaded();
preloader._visible = true;
if (loaded != filesize) {

preloader.preload_bar._xscale = 100*loaded/filesize;

} else {

preloader._visible = false;
if (holder._alpha<100) {

holder._alpha += 10;

}

}

};

/////////////////////////////////////////////////

//previous button
previous_btn.onRollOver = over;
previous_btn.onRollOut = out;
previous_btn.buttText.buttonText.text = "previous";

function over () {
this.gotoAndPlay(2);
}

function out () {
this.gotoAndPlay(7);
}
previous_btn.onRelease = function() {
if(wis > 0) {
wis--;
holder.loadMovie(urls[wis]);
caption.text = captions[wis];
}
}
//next button
next_btn.onRollOver = over;
next_btn.onRollOut = out;
next_btn.buttText.buttonText.text = "next";

function over () {
this.gotoAndPlay(2);
}

function out () {
this.gotoAndPlay(7);
}

next_btn.onRelease = function() {
if(wis < urls.length-1) {
wis++;
holder.loadMovie(urls[wis]);
caption.text = captions[wis];
}
}


//submenu settings

back_mc.subText.subbText.text = "Home";

tin_mc.subText.subbText.text = "Tin Favours";
organza_mc.subText.subbText.text = "Organza Favours";
boxed_mc.subText.subbText.text = "Boxed & Other";
unique_mc.subText.subbText.text = "Unique Favours";
serv_mc.subText.subbText.text = "Serviette Rings";

//back
back_mc.onRollOver = over;
back_mc.onRollOut = out;

back_mc.onRelease = function() {
gotoAndPlay(2);
}
//

tin_mc.onRollOver = over;
tin_mc.onRollOut = out;
organza_mc.onRollOver = over;
organza_mc.onRollOut = out;
boxed_mc.onRollOver = over;
boxed_mc.onRollOut = out;
unique_mc.onRollOver = over;
unique_mc.onRollOut = out;
serv_mc.onRollOver = over;
serv_mc.onRollOut = out;



//about us button en contact us
aboutUs_btn.onRollOver = over;
aboutUs_btn.onRollOut = out;
function over () {
this.gotoAndPlay(2);
}

function out () {
this.gotoAndPlay(7);
}
aboutUs_btn.onRelease = function() {
gotoAndPlay(8);
}
contactUs_btn.onRollOver = over;
contactUs_btn.onRollOut = out;
function over () {
this.gotoAndPlay(2);
}

function out () {
this.gotoAndPlay(7);
}

contactUs_btn.onRelease = function(){
gotoAndPlay(10);
}

Thanx for any help

Checkbox To Php
Hi there,

I working on a send a friend script and I am trying to ad a "yes I want to receive the newsletter" checkbox. I want to send a yes or no to sendfriend.php but it won't work? What is the problem?


PHP Code:



// SETTING VARIABLESvar bedanktBericht = '';var errorBericht = '';var fout1 = false;var fout2 = false;var fout3 = false;var fout4 = false;var fout5 = false;var fout6 = false;var signup:mx.controls.CheckBox;scherm._visible = false;// check ENTERvar keyListener:Object = new Object();keyListener.onKeyDown = function() {    if (Key.getCode() == Key.ENTER) {        checkData();    }};Key.addListener(keyListener);// SET BUTTONthis.send.onPress = function() {    checkData();};// CHECK EMAILfunction emailCheck(address:String):Boolean {    if (address.indexOf("@")<0) {        return false;    } else {        return true;    }}// CHECK INPUTfunction checkData() {    // FIELD 1 -------------- correct emailaddress needed    if (emailCheck(this.txt.email1.text) == true && this.txt.email1.text != "") {        email1 = this.txt.email1.text;        this.fout1.gotoAndPlay(6);        fout1 = false;    } else {        fout1 = true;        this.fout1.gotoAndPlay(1);    }    // FIELD 2 ------------------------------------------     if (this.txt.email2.text == "") {        fout2 = false;        this.fout2.gotoAndPlay(1);        //trace("niets ingevuld");    } else if (emailCheck(this.txt.email2.text) == false && this.txt.email2.text != "") {        fout2 = true;        this.fout2.gotoAndPlay(1);        //trace("geen geldig emailadres, maar wel wat ingevuld");    } else {        email2 = this.txt.email2.text;        this.fout2.gotoAndPlay(6);        fout2 = false;        //trace("goed");    }    // FIELD 3 ------------------------------------------    if (this.txt.email3.text == "") {        fout3 = false;        this.fout3.gotoAndPlay(1);    } else if (emailCheck(this.txt.email3.text) == false && this.txt.email3.text != "") {        fout3 = true;        this.fout3.gotoAndPlay(1);    } else {        email3 = this.txt.email3.text;        this.fout3.gotoAndPlay(6);        fout3 = false;    }    // FIELD 4 ------------------------------------------    if (this.txt.email4.text == "") {        fout4 = false;        this.fout4.gotoAndPlay(1);    } else if (emailCheck(this.txt.email4.text) == false && this.txt.email4.text != "") {        fout4 = true;        this.fout4.gotoAndPlay(1);    } else {        email4 = this.txt.email4.text;        this.fout4.gotoAndPlay(6);        fout4 = false;    }    // FIELD 5 ------------------------------------------    if (this.txt.email5.text == "") {        fout5 = false;        this.fout5.gotoAndPlay(1);    } else if (emailCheck(this.txt.email5.text) == false && this.txt.email5.text != "") {        fout5 = true;        this.fout5.gotoAndPlay(1);    } else {        email5 = this.txt.email5.text;        this.fout5.gotoAndPlay(6);        fout5 = false;    }    // FIELD 6 ------------------------------------------    if (this.txt.email6.text == "") {        fout6 = false;        this.fout6.gotoAndPlay(1);    } else if (emailCheck(this.txt.email6.text) == false && this.txt.email6.text != "") {        fout6 = true;        this.fout6.gotoAndPlay(1);    } else {        email6 = this.txt.email6.text;        this.fout6.gotoAndPlay(6);        fout6 = false;    }    // ALS ER GEEN FOUTEN ZIJN    //if (fout1 == false && fout2 == false && fout3 == false && fout4 == false && fout5 == false && fout6 == false) {    //sendData();    //}    //     // we give "myCheckbox" a default value    var myCheckbox:String;    myCheckbox = "yes";    //    // we create a listener for the checkbox to increase either number    var checkListener:Object = new Object();    checkListener.click = function() {        //        // here we let the user select        if (nieuwsbrief.selected) {            myCheckbox = "yes";        } else {            myCheckbox = "no";        }    };    // ALS ER GEEN FOUTEN ZIJN    if (fout1 == false && fout2 == false && fout3 == false && fout4 == false && fout5 == false && fout6 == false) {        sendData();    }    //   }// VERZENDEN VAN DATA NAAR PHPfunction sendData() {    scherm._visible = true;    this.output.text = 'Moment geduld...';    var sendData = new LoadVars();    sendData["_parent"] = this;    sendData.email1 = email1;    sendData.email2 = email2;    sendData.email3 = email3;    sendData.email4 = email4;    sendData.email5 = email5;    sendData.email6 = email6;    sendData.myCheckbox = nieuwsbrief;//    sendData.nieuwsbrief = nieuwsbrief;    sendData.sendAndLoad("sendfriend.php",sendData,"POST");    sendData.onLoad = function(success) {        this['_parent'].bedanktBericht = 'Bedankt voor het doorsturen!';        this['_parent'].gotoAndStop('bedankt');    };}stop();

CheckBox And MCs
I want to create a small movie where users select a number of images (MCs) by ticking a CheckBox for each image they wish to select. Then they press continue_btn and they are taken to another frame where their chosen MCs can be found. Is this even possible?

wB

CheckBox Php Help
Hello there. I am new to all of this and have used this boards postings and tutorials to make a site for our boat in Costa Rica. Link at bottom.
I am solving all the problems I have had so far except 2:
1 -- Is there anyway to prevent the buttons at the top from switching frames on multiple rollovers? I have 3 timelines with 30 frames. 1 TL for the background and main frame with a stop at 1. 1 for the buttons with a stop on every frame. And 1 for the block where the info is posted on every frame. Each button has this Action
on (rollOver) {gotoAndStop(frame number);
}
2 -- And my main problem now is with my script for PHP on my 'Contact' page. Everything shows up in the email except for the check boxes that are checked. At this point the input fields are tagged with letters and the boxes are numbered.
<?php
$sendTo = "myemail@somewhere.com";
$subject = "Reel Deal Inquiery";
$headers = "From: " .
$_POST["a"] ." ".
$_POST["b"] . "<" .
$_POST["d"] .">
";
$headers .= "Reply-To: " .
$_POST["d"] . "
";
$headers .= "Return-path: " .
$_POST["d"];
$message =
$_POST["d"] ." / ".
$_POST["c"] ." / ".
$_POST["e"] ." / ".
$_POST["f"] ." / ".
$_POST["g"] ." / ".
$_POST["message"] ."/".
$_POST["CheckBox01 = CheckBox01.selected"] ." / ".
$_POST["CheckBox02 = CheckBox02.selected"] ." / ".
$_POST["CheckBox03 = CheckBox03.selected"] ." / ".
$_POST["CheckBox04 = CheckBox04.selected"] ." / ".
$_POST["CheckBox05 = CheckBox05.selected"] ." / ".
$_POST["CheckBox06 = CheckBox06.selected"] ." / ".
$_POST["CheckBox07 = CheckBox07.selected"] ." / ".
$_POST["CheckBox08 = CheckBox08.selected"] ." / ".
$_POST["CheckBox09 = CheckBox09.selected"] ." / ".
$_POST["CheckBox10 = CheckBox10.selected"] ." / ".
$_POST["CheckBox11 = CheckBox11.selected"] ." / ".
$_POST["CheckBox12 = CheckBox12.selected"] ." / ".
$_POST["CheckBox13 = CheckBox13.selected"] ." / ".
$_POST["CheckBox14 = CheckBox14.selected"] ." / ".
$_POST["CheckBox15 = CheckBox15.selected"] ." / ".
$_POST["CheckBox16 = CheckBox16.selected"] ." / ".
$_POST["CheckBox17 = CheckBox17.selected"] ." / ".
$_POST["CheckBox18 = CheckBox18.selected"] ." / ".
$_POST["CheckBox19 = CheckBox19.selected"] ." / ".
$_POST["CheckBox20 = CheckBox20.selected"] ." / ".
$_POST["CheckBox21 = CheckBox21.selected"];
mail($sendTo, $subject, $message, $headers);
?>
I really hate to bother someone for their time, but I am trully stumped here...
Be advised...This site is not complete and I am reading now how to make preloader and optimize to make the site lighter. Any suggestions are welcome if you see something that I could improve...Thanks in advance for your time and efforts. TDR
http://www.reeldealcr.com

Checkbox Php
I have created a form in flash with input fields and checkbox's. I'm using php script to send and receive email. I'm receiving the information from the input fields ok but cannot seem to get any info from the checkbox reply.

Can anyone help?

Copyright © 2005-08 www.BigResource.com, All rights reserved