KeyboardAutomationAction.hx 375 B

12345678910
  1. package flash.automation;
  2. @:require(flash10_1) extern class KeyboardAutomationAction extends AutomationAction {
  3. @:flash.property var keyCode(get,set) : UInt;
  4. function new(type : String, keyCode : UInt = 0) : Void;
  5. private function get_keyCode() : UInt;
  6. private function set_keyCode(value : UInt) : UInt;
  7. static final KEY_DOWN : String;
  8. static final KEY_UP : String;
  9. }