Re: [Flashcoders] Determining when the Stage *stops* resizing

2006-07-01 Thread Matt Bennett
Works an absolute treat. Thanks EKA! On 6/29/06, eka [EMAIL PROTECTED] wrote: Hello :) You can use a setInterval to test the stop of the resizing :) example : // o Singleton StageResizer = {} ; // o Init Broadcaster AsBroadcaster.initialize(StageResizer) ; // inject broadcast

Re: [Flashcoders] Determining when the Stage *stops* resizing

2006-06-29 Thread eka
Hello :) You can use a setInterval to test the stop of the resizing :) example : // o Singleton StageResizer = {} ; // o Init Broadcaster AsBroadcaster.initialize(StageResizer) ; // inject broadcast methods // o Listen Stage onResize event ! Stage.addListener(StageResizer) ;

[Flashcoders] Determining when the Stage *stops* resizing

2006-06-28 Thread Matt Bennett
Hello all, I've got a perplexing problem and I've run out of ideas to solve it - I hope you can help! I have an application that runs fullscreen in the browser - so the object is set to 100%x100% and the Stage.scaleMode is noScale. The application realigns itself via a Stage.onResize listener.