Posts

Showing posts with the label Tweenlite

Customizable XML based Flash image scroller

I missed this blog for more than  2-3 months. It's been a long time since i have wrote something usefull . So i created a image scroller using XML .This scroller uses TweenLite for tweening and it's simple to customise. You can add image with any size and can customize the number of images shown. I have shared the source code here. Requirements 1. Flash CS5 http://www.adobe.com/products/flash/ 2. TweenLite AS3.0 http://blog.greensock.com/tweenlite/ It's possible to change the attributes through xml if you wanted . Read the params from xml and add to the local variable inside the function onXmlLoadComplete . //Total number of images : private var total:Number = 0; //Current item to be displayed; private var currentId:Number = 0; //The number of items to be shown ata a time: private var itemsToShow:Number = 4;

Dynamic XML/PHP driven rotating scroller using Tweenlite

Oh My god , i had a blog here. I really forgot about this. :( Now it's time to update my blog with a new thing . It's not so good one. Just tried to develop one simple scroller with rotating thumbs. You can change it to a XML/PHP driven scroller. Till now am using Adobe default tween and Tweener class . Then i found another famous one , Tweenlite .It's fast and reliable for me. I never tried it. So decide to try it and develpoed a simple scroller. You can have the source here . Requirements 1. Flash CS4 http://www.adobe.com/products/flash/ 2. TweenLite AS2.0 http://blog.greensock.com/tweenlite/ It's just another example . You can change to dynamic one by XML or PHP.