Packagenet.user1.reactor.ui
Classpublic class TextInputWindowEvent
InheritanceTextInputWindowEvent Inheritance flash.events.Event

TextInputWindowEvent is a simple data class used to pass information from a TextInputWindow object to registered event-listeners when a TextInputWindow event occurs. The TextInputWindowEvent class also defines constants representing the available TextInputWindow events. Since ReactorGUI 1.0.0



Public Methods
 MethodDefined By
  
TextInputWindowEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, input:String = null)
TextInputWindowEvent
  
clone():Event
[override]
TextInputWindowEvent
  
getInput():String
Returns the input that was submitted via the TextInputWindow's text input field.
TextInputWindowEvent
  
toString():String
[override]
TextInputWindowEvent
Public Constants
 ConstantDefined By
  SUBMIT : String = SUBMIT
[static] Triggered when input in a TextInputWindow is submitted via the OK button or the Enter key.
TextInputWindowEvent
Constructor Description
TextInputWindowEvent()Constructor
public function TextInputWindowEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, input:String = null)



Parameters
type:String
 
bubbles:Boolean (default = false)
 
cancelable:Boolean (default = false)
 
input:String (default = null)
Method Descriptions
clone()method
override public function clone():Event

Returns
Event
getInput()method 
public function getInput():String

Since : ReactorGUI 1.0.0

Returns the input that was submitted via the TextInputWindow's text input field.

Returns
String
toString()method 
override public function toString():String

Returns
String
Constant Descriptions
SUBMITConstant
public static const SUBMIT:String = SUBMIT

Since : ReactorGUI 1.0.0

Triggered when input in a TextInputWindow is submitted via the OK button or the Enter key.