dnk wrote:
> Hi there i have written a very simple class in AS that has ben added  
> to a personal library (SWC).
>
> Now in mxml I can reference the classes and components easily by  
> putting a:
>
> xmlns:mycomps="*"
>
>
> Now what I would like to know is how would I reference a class that is  
> in a SWC from action script?
>
> So i have class called "Tracer" in my swc.
In my ActionScript project build options I add a SWC.
In any class I then type

var something:

and up pops the autocomplete with the names of my objects in the list.

var something:Tracer = new Tracer;

Reply via email to