hi there! I have a small problem.
I have a button. on rollover, I want a mc in another location to animate, not a problem, but when I roll out, I want the mc to animate bacwards. can someone help rewrite this code, I found on flashkit, so it will work with what i am trying to do?:
[AS]on (rollOver) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.mc.nextFrame();
} else {
_root.mc.prevFrame();
}
}
[/AS]
but it did’nt work out right…
any help will be much appreciated!
thx!
thx for replying! but that is not the prob though… What happens when I use this code, is that the mc animates one frame, and one frame only, everytime I rollover my button an nothing happens when I roll out… Have no idear why…I:-)