theocraticmind
Programmer
All I need to do is import one variable into flash(5) from asp (mySQL database). if frame one
loadVariablesNum ("marquee-bar.asp", 0);
gotoAndPlay (2);
in frame 3:
if (marquee == ""
{
gotoAndPlay (2);
}else{
gotoAndPlay (4);
}
and in frame 4:
if (marquee != ""
{
_root.marquee.value = marquee
}
stop()
note: I name an MC with the instance name "marquee" and a dynamic text field in it named value
Ok, my database system is a little complicated, but it biols down to this:
marquee = "No information today."
response.write "&marquee=" & Server.URLEncode(marquee) & "&done=true"
in the flash file _root.marquee.value gets set to "
I've scowered the net, and this seems to be a reasonable method... what an I doing wrong?
loadVariablesNum ("marquee-bar.asp", 0);
gotoAndPlay (2);
in frame 3:
if (marquee == ""
gotoAndPlay (2);
}else{
gotoAndPlay (4);
}
and in frame 4:
if (marquee != ""
_root.marquee.value = marquee
}
stop()
note: I name an MC with the instance name "marquee" and a dynamic text field in it named value
Ok, my database system is a little complicated, but it biols down to this:
marquee = "No information today."
response.write "&marquee=" & Server.URLEncode(marquee) & "&done=true"
in the flash file _root.marquee.value gets set to "
I've scowered the net, and this seems to be a reasonable method... what an I doing wrong?