Tag Archives: AS3

Slotmachine effect 2

UPDATE I’ve uploaded an example with an working FLA (click the swf to replay it) Slotmachine FLA Dependencies – TweenLite Example: ?View Code AS3var sm:SlotMachine = new SlotMachine(’€15533′, font, 35, ’0123456789€’); addChild(sm); sm.addEventListener(Event.COMPLETE, _complete); sm.render();   function _complete(aEvent:Event):void { trace("SlotMachine COMPLETE"); }

Ordered Lists in TextField.htmlText 2

One thing thats kept bugging me with TextField.htmlText was the lack of support for ordered list (<ol><li></li></ol>) in a textfield with htmlText applied to it. I decided to write a simple class that strips a html string from the (<ol><li></li></ol>) and arrange the list(s) in numerical order with tabs instead. I know this isn’t the [...]

Simple ScrollBar Class 0

Basic and simple ScrollBar class based on com.jeroenwijering.utils.Scrollbar