0

In ActionScript 3, by default, the Alert box has an OK button. How can I display an Alert box without any buttons (not even the OK button)?

In my application, the Alert box would close on its own when a row is on blur. My client does not want the OK button to be there.

Monte Chan
  • 1,193
  • 4
  • 20
  • 42

1 Answers1

1

You may just have to make your own alert class. It shouldn't be hard though, since those things' graphics are so primitive and bare.

Panzercrisis
  • 4,590
  • 6
  • 46
  • 85
  • Thank you very much. I ended up doing it in TitleWindow and then use PopUpManager to display this TitleWindow. – Monte Chan Aug 20 '13 at 18:35