Re: [flexcoders] Re: Anyone have issue with AIR updater on Mac OSX

2009-04-30 Thread Buck DeFore
Ugh.. beware also what stalled me for a while tonight... Using the 1.5.1 sdk I figured I'd need to update the line: update xmlns=http://ns.adobe.com/air/framework/update/description/1.0; to update xmlns=http://ns.adobe.com/air/framework/update/description/1.5.1; in my update.xml ... turns out

Re: [flexcoders] Re: Anyone have issue with AIR updater on Mac OSX

2009-03-04 Thread Rick Schmitty
Just for completeness, Raul Hudea from Adobe suggested moving the event to onApplicationComplete and that has fixed the issue for me w/o needing the setTimeout delay I guess my mac is faster than my pc and needed that few ms delay before calling the updater :) On Tue, Feb 24, 2009 at 8:58 PM,

[flexcoders] Re: Anyone have issue with AIR updater on Mac OSX

2009-02-24 Thread Marcello Teodori
Same here, on Leopard we've solved waiting a little timeout before dispatching the initialiazed event... I guess it's a bug... // Once initialized, wait timeout (workaround for late event) then run onUpdate appUpdater.addEventListener(UpdateEvent.INITIALIZED,

Re: [flexcoders] Re: Anyone have issue with AIR updater on Mac OSX

2009-02-24 Thread Rick Schmitty
Thanks Marcello, that definitely wouldn't have been something I would thought to try :) On Tue, Feb 24, 2009 at 5:33 PM, Marcello Teodori marcello.teod...@gmail.com wrote: Same here, on Leopard we've solved waiting a little timeout before dispatching the initialiazed event... I guess it's a