General scripting question
Hi I am creating a circular interface that rotates around to specific points for the menu options. i have the circle key framed out to one complete rotation. when an option is selected i want the cirlce to rotate to that frame the stop. I dont want it to jump to the frame i want it to play the movie then stop on the frame. I have been trying scripts using the "if action" but i still can not get it to stop on the frame i want.
is there such an action like...
play
if (framenumber = 9) {
stop ();
}
Please let me know if anyone has any ideas i have been stuck on this for two weeks.
woking but stopping on every frame with the script
the rotation is working now but on the the variables are set the are causeing the movie to stop on every frame where the variables were set. i think that we need to rest them back to nothing after the frame is exited. but im not sure what i can set them to .
If I set them like this
on(press){
whereToGo2="gallery2";
play();
}
Can I unset them like this with a frame action?
{whereToGo2="null";
play();
}
Is there a sucf script as "on exit frame"? Let me know what you think.
alan