Package | com.transmote.utils.ui |
Class | public class EmbeddedLibrary |
Inheritance | EmbeddedLibrary flash.events.EventDispatcher |
Property | Defined By | ||
---|---|---|---|
inited : Boolean [read-only]
Returns true if the EmbeddedLibrary is fully loaded and initialized,
and the symbols within are prepared for access via Actionscript. | EmbeddedLibrary |
Property | Defined By | ||
---|---|---|---|
embeddedLibrary : Class | EmbeddedLibrary |
Method | Defined By | ||
---|---|---|---|
EmbeddedLibrary(embeddedLibrary:Class)
Constructor. | EmbeddedLibrary | ||
dispose():void
Free up the EmbeddedLibrary for garbage collection. | EmbeddedLibrary | ||
getSymbolDefinition(className:String):Class
Access the library symbol's Class,
which can be used to instantiate symbol instances. | EmbeddedLibrary | ||
getSymbolInstance(symbolClassName:String):*
Generate an instance of the library symbol. | EmbeddedLibrary |
embeddedLibrary | property |
protected var embeddedLibrary:Class
inited | property |
inited:Boolean
[read-only] Returns true if the EmbeddedLibrary is fully loaded and initialized, and the symbols within are prepared for access via Actionscript.
public function get inited():Boolean
EmbeddedLibrary | () | Constructor |
public function EmbeddedLibrary(embeddedLibrary:Class)
Constructor.
ParametersembeddedLibrary:Class — A Class instance that refers to a SWF embedded via the Embed meta tag.
|
dispose | () | method |
public function dispose():void
Free up the EmbeddedLibrary for garbage collection.
getSymbolDefinition | () | method |
public function getSymbolDefinition(className:String):Class
Access the library symbol's Class, which can be used to instantiate symbol instances.
Parameters
className:String — The symbol's Class name.
|
Class |
getSymbolInstance | () | method |
public function getSymbolInstance(symbolClassName:String):*
Generate an instance of the library symbol.
Parameters
symbolClassName:String — The symbol's Class name.
|
* |