Everyone,
Thanks so much for your help in the past. I have a spinner that works great but now I need the spinner to open alternate URLs based on where it lands. Below is a link to my .fla file as well as the action script.
SWF File:
http://employmetampa.com/test/spin2.swf
FLA File:
http://employmetampa.com/test/spin2.fla
Script:
on (release) {
_level0.turn = 0;
_level0.turn = (Math.ceil(Math.random()*4));
tellTarget ("_level0.spinner") {
gotoAndPlay(2);
}
}
I am pretty new to Flash and any assistance you could give would be great. An example of desired functionality is if the spinner lands on “verb” it should open verb.htm and if it lands on noun it should open noun.htm.
Thanks in advance.