I have got an animation in a movieclip (βeβ) and I need it, when rolled over, to go to and play at frame two of βeβ. Could anybody help me out?
LOTSA CHEERS AND A MERRY CHRISTMAS ! :ogre:
I have got an animation in a movieclip (βeβ) and I need it, when rolled over, to go to and play at frame two of βeβ. Could anybody help me out?
LOTSA CHEERS AND A MERRY CHRISTMAS ! :ogre:
on (rollOver){
_root.e.gotoAndPlay(2);
}
is just one way to do itβ¦
Rev
iβm not sure exactly what you mean, but lets say you have an outer movieclip called mc1, and one inside of that called mc2, then your actions on the button would beβ¦
[AS]
on(rollOver) {
_root.mc1.mc2.gotoAndPlay(2);
}
[/AS]
if its just one mc you need to play on rollOver then it would be
[AS]
on(rollOver) {
this.gotoAndPlay(2);
}
[/AS]
or
[AS]
on(rollOver) {
_root.mc1.gotoAndPlay(2);
}
[/AS]
:: Copyright KIRUPA 2024 //--