Hi there,
I've got a real noobie question here, my background as an AS2 programmer is without using the Flash IDE, every so often I have to mix the two in the work that I do and it confuses me somewhat.
I think what I want to do is quite simple.
I have a MovieClip on stage, it's instance name has been set to home_copy_mc and it's linkage id has been set to home_copy_mc, I want to be able to use this MovieClip from my classes I have created.
I've tried using _root.home_copy_mc from inside my classes, but it seems that home_copy_mc isn't a direct child of _root.
My classes are organised in a MVC design pattern, and the main app class is created (which in turn creates all the sub classes that will work with my MovieClips on stage) in the first frame of my entire movie using...
var microsite : Microsite = new Microsite(_root);
This basically works fine, up until I need to work with home_copy_mc. it's basically problematic because home_copy_mc is already on the stage and I can't remove it and place it there using AS as I normally would.
TIA
Blaise.