Thank for your answer, i already that but when you fast rollOver/rollOut on several intance you can see a problem on tween's.
example :

i have a button on my scene with  2 clip on this, "bullet" and "texte".

button.onRollOver = function(){
   this.bullet.stopTween();
   this.texte.stopTween();
   this.bullet.tween("_x",50,0.4,"easeOutCubic",0);
   this.texte.tween("_x",60,0.4,"easeOutCubic",0.2);
}
button.onRollOut = function(){
   this.bullet.stopTween();
   this.texte.stopTween();
   this.bullet.tween("_x",0,0.4,"easeOutCubic",0.2);
   this.texte.tween("_x",10,0.4,"easeOutCubic",0);
}
with this code, I noticed a problem with position of "bullet" or "texte"...

maybe thas my syntax or my tween's utilisation isn't correctly ??but i don't think....

Mike Boutin a écrit :

I delayed a clip on stage. Using a button to stop the tween & delay before it happens: If you leave it, it will play after the delay, if you click the button before the delay, the tween never happens. Hope this helps.

#include "lmc_tween.as"
clip.tween("_x", clip._x+100,2,"easeout",3);


myButton.onRelease = function(){     clip.stopTween();
}


Cinetryx wrote:

yes, i want.

Mike Boutin a écrit :

So you are calling the tween, but you want to delete it before the delay happens?

Cinetryx wrote:

When you write this :

my_mc.tween(property, pEnd, seconds, animType, delay, callback, extra1, extra2)

you can set delay before the start tween function .

But my problem is how to delete this delay.....

Mike Boutin a écrit :

How exactly are you "delaying" the tween? the tween class doesnt have a "delay" in it as far as I know

Cinetryx wrote:

stopAllTween delete the tween event but not the delay before the tween....

Mike Boutin a écrit :

movieclip.stopAllTweens() will stop all tweening on all the instances that are currently tween. Not sure if this helps.


[EMAIL PROTECTED] wrote:

Hello everybody,

i use tween of laco [laco.wz.cz] with delay on some instances. i want to delete a delay and the tween to on previous instance when i use a tween on other instance, but i don't manage it. can anybody help me ? thank

Ps : i'm French, so sorry for my english

_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to