dudeman
September 9th, 2002, 12:38 AM
What is with this? Is it just me or is it getting really hard to communicate variables between movieclips and textbox variables?
For example : Inside a movie clip I made an animated textbox. When the submit button is pressed it should send whatever textboxA is to textboxB outside the movie clip.
Why does it always ignore it?
Also, I'm having trouble using a movieclip as a button, if you would like to help.. go right ahead.
This is a simple task done on release, if it was a button it would work.. but its inside the MC (so I can animate it) and it acts funny :
onClipEvent (mouseDown) {
if (txtname == null) {
txtname = "ERROR! Name required";
action = "";
} else {
Name2 = txtname;
}
}
Should'nt onClipEvent (mouseDown) act like on (release)?
I have a few other minor problems with what I'm working on, but if I don't figure them out sooner or later I'm gonna have to bug you again.. thanks for the help :)
For example : Inside a movie clip I made an animated textbox. When the submit button is pressed it should send whatever textboxA is to textboxB outside the movie clip.
Why does it always ignore it?
Also, I'm having trouble using a movieclip as a button, if you would like to help.. go right ahead.
This is a simple task done on release, if it was a button it would work.. but its inside the MC (so I can animate it) and it acts funny :
onClipEvent (mouseDown) {
if (txtname == null) {
txtname = "ERROR! Name required";
action = "";
} else {
Name2 = txtname;
}
}
Should'nt onClipEvent (mouseDown) act like on (release)?
I have a few other minor problems with what I'm working on, but if I don't figure them out sooner or later I'm gonna have to bug you again.. thanks for the help :)