Re: [Flashcoders] Panning and Sliding, using Tweens possible?

2006-06-27 Thread Weyert de Boer
Yes, I have looked a bit at the Tween-classes, but I have some bad days in Flash at the moment. Looks like nothing want to work, and the IDE ain't helping either. Going nuts here. Things like when you press space the IDE give focus to the Output palette, or windows who disappear, weird

Re: [Flashcoders] Panning and Sliding, using Tweens possible?

2006-06-27 Thread Mick G
MC Tween has a panTo command which does what you need (along with all the other standard tweens)... http://hosted.zeh.com.br/mctween/doc_panto.html On 6/27/06, Weyert de Boer [EMAIL PROTECTED] wrote: Yes, I have looked a bit at the Tween-classes, but I have some bad days in Flash at the

Re: [Flashcoders] Panning and Sliding, using Tweens possible?

2006-06-27 Thread Mick G
Sorry - wrong one ;) One of the tween classes has a pan feature... will post if I find it. On 6/27/06, Mick G [EMAIL PROTECTED] wrote: MC Tween has a panTo command which does what you need (along with all the other standard tweens)... http://hosted.zeh.com.br/mctween/doc_panto.html On

Re: [Flashcoders] Panning and Sliding, using Tweens possible?

2006-06-27 Thread Weyert de Boer
I will try it out :) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and

Re: [Flashcoders] Panning and Sliding, using Tweens possible?

2006-06-27 Thread Bart Wttewaall
Here's an old testclass of mine. It uses those custom easing equations from mx.transitions.easing.*; import mx.transitions.easing.*; import mx.utils.Delegate; class TweenTest { public static var fps:Number = 31; private var intervalID:Number; private

Re: [Flashcoders] Panning and Sliding, using Tweens possible?

2006-06-27 Thread Digital Rust
definitely possible. i'm pretty new to actionscript so don't laugh, but this is what i've been using recently. mcButton.onRelease = function(){ new mx.transitions.Tween(mcTarget, _x, mx.transitions.easing.Strong.easeOut, 0, 600, 2, true); new mx.transitions.Tween(mcTarget, _y,

[Flashcoders] Panning and Sliding, using Tweens possible?

2006-06-26 Thread Weyert de Boer
I am curious if it's possible to use the Tween or TweenExtended class to make pan/slide animation. I mean something like you move a picture from the left bottom corner to the right top corner within the dimensions of the container movieclip. Yours, Weyert de Boer

Re: [Flashcoders] Panning and Sliding, using Tweens possible?

2006-06-26 Thread Digital Rust
definitely possible. i'm pretty new to actionscript so don't laugh, but this is what i've been using recently. mcButton.onRelease = function(){ new mx.transitions.Tween(mcTarget, _x, mx.transitions.easing.Strong.easeOut, 0, 600, 2, true); new mx.transitions.Tween(mcTarget, _y,