I have a text sliding in a banner… I have made a long tween in the timeline, where the txt comes in from left to right.
I made another layer named it actions. In the action layer i have used this code:
tekst.onRollover (){
this.gotoAndStop(this._currentframe);
}
tekst.onRollout (){
this.gotoAndPlay(this._currentframe);
}
But it comes with erros… Now maybe i should use the tween class, but i dont know how to use it :moustache The effect is, as the text slids inm when the mosue pointer is over the txt, the txt should “freeze” or stop, and when you remove the mouse from the txt, it should continue where it left of… How do i make this…
hrbi