Hi, i need help o as3 hidden buttons.
for example in as2 if i have a movie symbol and Movie Animation “MyMovie” and Runs on _root of file. i have hidden button on it saying following command line.
on (rollOver) {
MyMovie.gotoAndPlay(2);
}
on (rollOut) {
MyMovie.gotoAndPlay(7);
}
on (release) {
_root.MyMovie.gotoAndPlay(7);
}
How can i do this in as3. Please explain in full actionScript.
Thanks in advance for your time.