[flexcoders] Using timer with Popups

2007-09-27 Thread candysmate
I need to popup a message for the user. It requires no interaction from the user, it's just a visual cue. I guess that it would ential the use the timer for this in conjunction with either an Alert (not sure at the time of writing if Alert's can be button-free), or a titleWindow as a popup. Unsu

Re: [flexcoders] Using timer with Popups

2007-09-27 Thread Roman Protsiuk
It's really easy. Just check out Timer documentation on livedocs. E.g. in your pop-up class (or in class which will handle your pop-up): public class PopUpClass extends TitleWindow { private var timer : Timer; public function PopUpClass() { timer = new Timer(, 1); timer.addEventListener(TimerE