RE: [flexcoders] Converting app to use modules

2007-11-14 Thread Alex Harui
Scott, I'm not seeing any code that waits for the shared code module to finish loading before the other modules load. First-in wins so you should wait for Ready on sharedCode before continuing. Similarly, I don't see that you're waiting for modules to load before applying history to them. ___

Re: [flexcoders] Converting app to use modules

2007-11-14 Thread Tony Alves
Scott, I may get corrected on this one, but take it for what it is worth. I thought you had to create an instance of manager classes in the main application even if you did not use them there. So you would put something like the following into your MainView.mxml : private var dragManager:DragMan