Well, it's always a learning experience transitioning to a new language. With AS2.0, it was the onLoad function for me.
With AS3.0, it's the document class.
I used it as my main actionscript file, controlling initialization, the main game loop and controller class for all of the other classes.
Now, after trying in vain to get a preloader to work properly, I see the problem in that the Document class is loading before my preloader.
My simple fix was to remove the document class entirely, and on the first frame of my game to just create an instance of my main class on that frame, and then run the init function.
At that point, none of my references to any stage objects would work properly even after attempting adding stage or parent before the clips in question.
Are there any simple ways to repair this situation that you guys have run across?