Re: [flexcoders] Event before preinitialize

2010-06-10 Thread dorkie dork from dorktown
Thanks guys. I went with the preloader approach as that had the fastest startup time. I'll provide numbers in the next message. On Fri, Jun 4, 2010 at 10:43 AM, Anatole Tartakovsky anatole.tartakov...@gmail.com wrote: This is an old article of what you are trying to do :

Re: [flexcoders] Event before preinitialize

2010-06-10 Thread dorkie dork from dorktown
early enough? - Gordon *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *dorkie dork from dorktown *Sent:* Thursday, June 03, 2010 12:59 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Event before preinitialize Is there an event before

Re: [flexcoders] Event before preinitialize

2010-06-10 Thread Alex Harui
: [flexcoders] Event before preinitialize Is there an event before application preinitialize that I can listen for in the application? JP -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui

Re: [flexcoders] Event before preinitialize

2010-06-04 Thread Anatole Tartakovsky
This is an old article of what you are trying to do : http://flexblog.faratasystems.com/2006/09/20/flex-developers-and-the-need-to-understand-flash There should be also article by Ted Patrick on the topic dated around the same time. Thank you Anatole On Fri, Jun 4, 2010 at 12:16 AM, Andriy

[flexcoders] Event before preinitialize

2010-06-03 Thread dorkie dork from dorktown
Is there an event before application preinitialize that I can listen for in the application? JP

RE: [flexcoders] Event before preinitialize

2010-06-03 Thread Gordon Smith
] Event before preinitialize Is there an event before application preinitialize that I can listen for in the application? JP

Re: [flexcoders] Event before preinitialize

2010-06-03 Thread dorkie dork from dorktown
[mailto:flexcod...@yahoogroups.com] *On Behalf Of *dorkie dork from dorktown *Sent:* Thursday, June 03, 2010 12:59 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Event before preinitialize Is there an event before application preinitialize that I can listen for in the application

Re: [flexcoders] Event before preinitialize

2010-06-03 Thread Kerry Thompson
it's taking a couple of seconds to reach the preinitialize event. according to this slideshow http://www.slideshare.net/michael.labriola/dense-and-hot-360-flex slide 24, 25 etc there are a couple things going on that i don't need early on. so i'd like to check the contents of a shared

Re: [flexcoders] Event before preinitialize

2010-06-03 Thread dorkie dork from dorktown
That's what I'd like to do. So I added an event listener to the application preinitialized event like so: s:Application preinitialize=myHandler() / the problem is, in my application it takes a while to get to that event. so that's why I'm trying to find another event that happens sooner than

Re: [flexcoders] Event before preinitialize

2010-06-03 Thread Andriy Panas
Hi Judah, AFAIK, you have 2 approaches to execute the code before preinitialize event is fired. 1) Mark you class with metadata [Mixin] and put the code in need into method public static function init(systemManager:ISystemManager): See HowTo create your developer ToolBox with Mixins blog