It should be quite straight-forward . . .

1) Import the component's class. For example:

import com.myOrg.folderName.WidgetClass;


2) Instantiate the component:

protected var aWidget:WidgetClass = new WidgetClass();


3) Access its properties and invoke its methods:

aWidget.name = 'foo';
aWidget.moveLeft(55);




Reply via email to