Re: [Flashcoders] Tween Class with Set Interval deletion

2006-09-08 Thread Helmut Granda
Cool Thanks! I think the Tween class works great I just didnt know the docs were in the Help Menu. Now that I have all the info it seems to be working properly. On 9/8/06, marlus <[EMAIL PROTECTED]> wrote: You can use the mc_tween: http://hosted.zeh.com.br/mctween/index.html 2006/9/7, Telmo D

Re: [Flashcoders] Tween Class with Set Interval deletion

2006-09-08 Thread marlus
You can use the mc_tween: http://hosted.zeh.com.br/mctween/index.html 2006/9/7, Telmo Dias <[EMAIL PROTECTED]>: Try: myTimeTween .stop(); ;-) Telmo Helmut Granda wrote: > I have a small piece of script that was passed down to me and I cant > figure > out how to stop it from executing: > > va

Re: [Flashcoders] Tween Class with Set Interval deletion

2006-09-07 Thread Telmo Dias
Try: myTimeTween .stop(); ;-) Telmo Helmut Granda wrote: I have a small piece of script that was passed down to me and I cant figure out how to stop it from executing: var interval:Number = 60; myTimeTween = new mx.transitions.Tween(pBar, "_height", mx.transitions.easing.None.easeNone,0,162,

RE: [Flashcoders] Tween Class with Set Interval deletion

2006-09-07 Thread Keith Reinfeld
On Behalf Of Helmut Granda Sent: Thursday, September 07, 2006 10:56 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Tween Class with Set Interval deletion I can be sure I tried that and didnt work when I tried. but yet again I have been looking at the same code for hours so I might h

Re: [Flashcoders] Tween Class with Set Interval deletion

2006-09-07 Thread Helmut Granda
h http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Thursday, September 07, 2006 9:54 AM To: Flashcoders mailing list Subject: [Flashcoders] Tween Class with Set Interval deletion I have a small piece of script th

RE: [Flashcoders] Tween Class with Set Interval deletion

2006-09-07 Thread Keith Reinfeld
myTimeTween.stop(); -Keith http://home.mn.rr.com/keithreinfeld -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Thursday, September 07, 2006 9:54 AM To: Flashcoders mailing list Subject: [Flashcoders] Tween Class with Set Interval

[Flashcoders] Tween Class with Set Interval deletion

2006-09-07 Thread Helmut Granda
I have a small piece of script that was passed down to me and I cant figure out how to stop it from executing: var interval:Number = 60; myTimeTween = new mx.transitions.Tween(pBar, "_height", mx.transitions.easing.None.easeNone,0,162,interval,true); I have tried different methods: delete myTim