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");
}
Categories: AS3, Feature, Flash, Labs
Tagged: AS3, Effect, One Armed Bandit, Slotmachine
- Published:
- 10 July, 2009 – 11:31
- Author:
- By Joakim Roos
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 [...]
Categories: AS3, Feature, Labs
Tagged: AS3, htmltext, li, ul
- Published:
- 21 April, 2009 – 13:21
- Author:
- By Joakim Roos
Basic and simple ScrollBar class based on com.jeroenwijering.utils.Scrollbar
Categories: AS3, Feature, Labs
Tagged: AS3, ScrollBar
- Published:
- 24 January, 2009 – 12:58
- Author:
- By Joakim Roos
I was asked to create a countdown to a specific date and time for a project, with no time at all to do it, I went looking across the web to find a good class that i could use.
Jim Isaacs has written a really nice class that does a fine job indeed, but it doesn’t [...]
Categories: AS3, Feature, Flash, Labs
Tagged: AS3
- Published:
- 12 December, 2008 – 9:53
- Author:
- By Joakim Roos