You organize your applications in a package hierarchy. What I'd like is to organize them in a folder hierarchy like in the samples webapp. Rgds, Olivier
________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of sgrosven2 Sent: Monday, February 05, 2007 3:10 PM To: [email protected] Subject: [flexcoders] Re: Project structure The solution to that I've been using is to have a "skeletal" mx:application file in the root directory. that skeletal file does something like this: <mx:Application ... xmlns:view="com.mycompany.yadayada.*" <view:MyAppMain .... /> </mx:Application> the MyAppMain.mxml is a component living in the "com.mycompany.yadayada" path that contains the real application. Since its a component it can be bundled easily with other "main" screens if I wanted to do so. --------------------- An electronic message is not binding on its sender. Any message referring to a binding engagement must be confirmed in writing and duly signed. --------------------- --------------------- An electronic message is not binding on its sender. Any message referring to a binding engagement must be confirmed in writing and duly signed. ---------------------

