Forum Moderators: open
I figure i can set each animation up on the timeline, but i'm not real sure if i can make the movie choose which animation to play.
I know this action below won't work, but it might better explain what i'm trying to do.
on load
gotoandplay ("animation1")
or
gotoandplay ("animation2")
or
gotoandplay ("animation3")
etc...
I hope i make sense here, thanks.
randomNum = Math.floor(Math.random() * (high - low)) + low;if(randomNum == 1){
gotoandplay ("animation1")
}
High is the number of animations you have and low would be 1. Then just create if statements to play the sections you want. I don't have flash out to test this right now but it should get you started.