I have one frame, in that frame I have a movie “logo” it is 19 frames long, looping.
What I want it to do is, that when you mouse over it
(and it is at || gets to frame 15)
it stops.
The code I am trying will just stop the movie where it is at, even if it is not (on || at ) frame 15
[AS]
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, false)) {
if (this._currentframe = 15) {
this.stop();}
}
}
[/AS]
any ideas please ?