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: 22174)

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.



Access the loader's content

(2008-01-22 - views: 18020)
Q: Can I access directly the content within the Loader component ?
A: The loader component has a property called content. This will give you a reference the loaded content. This means that you can get access to the elements found in the content (like variables, functions, movie clips) and you can event start or stop playing an animation.

Start an animation: myLoader.content.play();
Stop an animation: myLoader.content.stop();
Call a function defined in the content clip: myLoader.content.myFunction();

The attached example uses the loader to load an animation that has a function defined in it.
Files: LoaderAccessContent.zip 


Back