Hi Kenneth,

That's interesting.
How can I tween an Array.
Do you perhaps  have a little example code?

TIA
Cor

-----Oorspronkelijk bericht-----
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Namens Kenneth Kawamoto
Verzonden: woensdag 26 maart 2008 14:45
Aan: Flash Coders List
Onderwerp: Re: [Flashcoders] Tweening Engines for AS3

Then I'll tell you TweenLite can tween anything. It can even tween Array (of
numbers).

The last time I checked Tweener did not have filter tweens, that's why I
picked TweenLite/TweenFilterLite. But things may have changed.

Jack has even fixed a little (albeit non-critical) buggish TweenLite
behaviour for me earlier this year in a few days. Big respect!

Kenneth Kawamoto
http://www.materiaprima.co.uk/

Allandt Bik-Elliott (Receptacle) wrote:
> i've never used tweenlite but i have used tweener and one of the 
> things that blew me away was the ability to tween properties and 
> variables rather than just clips/sprites
> 
> example from current project:
> 
> [CODE]
> // read/write percentage value relates directly to the slider public 
> function get percent():Number { return slider.percent; } public 
> function set percent( p:Number ):void { slider.percent = p; }
> 
>  public function arrowPressed( e:MouseEvent ):void  {
>         var dir:int = (e.target.name == "left_arrow") ? -1 : 1;
>     var total:Number = slider.percent + (dir * scrollSpeed);
>     Tweener.addTween(slider,{percent:total, time: .5, 
> transition:"easeInOutQuad"}); // Tweens set() method } [/CODE]
> 
> you may be able to do this with tweenlite, i don't know
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


--
No virus found in this incoming message.
Checked by AVG. 
Version: 7.5.519 / Virus Database: 269.22.0/1343 - Release Date: 25-3-2008
19:17


No virus found in this incoming message.
Checked by AVG. 
Version: 7.5.519 / Virus Database: 269.22.0/1343 - Release Date: 25-3-2008
19:17
 

No virus found in this outgoing message.
Checked by AVG. 
Version: 7.5.519 / Virus Database: 269.22.0/1343 - Release Date: 25-3-2008
19:17
 

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

Reply via email to