How do I reference MovieClips or Sprites created in the Document class from a custom class?
I know I can do this
//Sprite I want to reference
var orange:Sprite = new Sprite()
//Custom class
var customClass:CustomClass = new CustomClass(orange);
But I have a lot objects I want to reference so using the above method would take to long.
I know I can do this to reference a MovieClip on the main stage from a custom class
MovieClip(parent).orange;
Would referencing the sprite created in the document class be similar?
Thanks
vxd