My account
Shopping cart
Knowledge base
Support

Knowledge Base

Important! All new questions are usually answered within the next business day.

Loader Pro V3

(views: 22199)

The Loader Pro V3 is a professional loader that features scale modes (scale, crop, scale-crop, resize), align modes, built in preloaders and customized transition tweens. Here are all known issues for Loader Pro V3. If you have any questions that you think we should discuss here please let us know.



How to create Loader Instance with AS3?

(2007-12-26 - views: 13774)
Q: How to use AS3 Code to create Loader Instance?
A: Since the new AS3 has an improved way of instantiating classes, you only need to use the new keyword to create an instance of the loader component:

// create a new LoaderProV3 instance
var myLoader:LoaderProV3AS3 = new LoaderProV3AS3();
// add the loader instance to the display list
addChild(myLoader);



Back