Package | net.user1.reactor.ui |
Class | public class TextInputWindow |
Inheritance | TextInputWindow ![]() |
Since : | ReactorGUI 1.0.0 |
Method | Defined By | ||
---|---|---|---|
Constructor
| TextInputWindow | ||
close():void
Closes this popup window by calling PopUpManager.removePopUp(this). | TextInputWindow |
TextInputWindow | () | Constructor |
public function TextInputWindow()
Constructor
close | () | method |
public function close():void
Since : | ReactorGUI 1.0.0 |
Closes this popup window by calling PopUpManager.removePopUp(this).
var popup:TextInputWindow = TextInputWindow( PopUpManager.createPopUp(this, TextInputWindow, true)); popup.title = "Set New Topic"; popup.addEventListener(TextInputWindowEvent.SUBMIT, submitListener); PopUpManager.centerPopUp(popup);