RE: [Flashcoders] Problem with delay tween on some instance...

2005-12-15 Thread Martin Klasson
To: Flashcoders mailing list Subject: Re: [Flashcoders] Problem with delay tween on some instance... Martin - by the way - I've been trying to email you for several days now, but your server's spamcop is bouncing me. Maybe you can write me from an alternative address (webmail?) or get your server

RE: [Flashcoders] Problem with delay tween on some instance...

2005-12-14 Thread Jim Tann
You really should use the FUSE http://www.mosessupposes.com/Fuse/ kit. I just helped Moses get it working with MTASC and in my opinion it is a lot better that the old http://laco.wz.cz/tween/ ones. Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [Flashcoders] Problem with delay tween on some instance...

2005-12-14 Thread Martin Klasson
certainly helps you out with the testing-phase ;) / martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jim Tann Sent: den 14 december 2005 11:17 To: Flashcoders mailing list Subject: RE: [Flashcoders] Problem with delay tween on some instance... You

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-14 Thread Moses Gunesch
On Dec 14, 2005, at 5:38 AM, Martin Klasson wrote: So I can not recommend this engine as the 1.1 version has some problems, which DID work in the 1.0 release. I have emailed Moses about this, but he might not be up yet. Christ almighty Martin! It's called a private beta and you are

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-14 Thread Cinetryx
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();

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-14 Thread Moses Gunesch
Martin - by the way - I've been trying to email you for several days now, but your server's spamcop is bouncing me. Maybe you can write me from an alternative address (webmail?) or get your server admin to whitelist my IP. Sorry to ping the list with this folks but, I have no other way to

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
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

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Cinetryx
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

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
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

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Cinetryx
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

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
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

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Cinetryx
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 .

Re: [Flashcoders] Problem with delay tween on some instance...

2005-12-13 Thread Mike Boutin
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);