My air app has no chrome and no main window, it's like a widget. In some case I'd like to show specific message like alert. But nothing appear, do you know, how I can't solve that?
var initialBounds:Rectangle = new Rectangle((Screen.mainScreen.bounds.width / 2 - (this.width/2)), (Screen.mainScreen.bounds.height / 2 - (this.height/2)), this.width, this.height);
Alert.show("Souhaitez-vous quitter MonAppli?", "Quitter l'application", Alert.OK | Alert.
CANCEL, initialBounds as Sprite);
Thanks for you help
initialBounds as Spritewill always benullsince Rectangle is not a Sprite. BTW: you should edit your original question, rather than posting an example as an answer. – RIAstar Aug 29 '11 at 14:54