jason12776
Technical User
Does anybody know of any good Websites for learning ActionScripting. In paticular, using Flash MX, I created a text box and if the contents of the text box contain a certain word, to go to a certain fram. But it just sits there.
on (release)
{
if (vendor_name = "Burrows"
{
gotoAndStop(1);
}
}
Vendor_Name is the name I gave to the text box and set it to input text. I also tried it like:
on (release)
{
if (vendor_name.text = "Burrows"
{
gotoAndStop(1);
}
}
This way just set the text box = "Burrows" when the button was clicked on. Any suggestions? I have a lot more scripting to go, so any websites would be great.
Cheers,
Jason
on (release)
{
if (vendor_name = "Burrows"
{
gotoAndStop(1);
}
}
Vendor_Name is the name I gave to the text box and set it to input text. I also tried it like:
on (release)
{
if (vendor_name.text = "Burrows"
{
gotoAndStop(1);
}
}
This way just set the text box = "Burrows" when the button was clicked on. Any suggestions? I have a lot more scripting to go, so any websites would be great.
Cheers,
Jason