AccessibilityImplementation.hx 835 B

123456789101112131415161718192021
  1. package flash.accessibility;
  2. extern class AccessibilityImplementation {
  3. var errno : UInt;
  4. var stub : Bool;
  5. function new() : Void;
  6. function accDoDefaultAction(childID : UInt) : Void;
  7. function accLocation(childID : UInt) : Dynamic;
  8. function accSelect(operation : UInt, childID : UInt) : Void;
  9. function getChildIDArray() : Array<Dynamic>;
  10. function get_accDefaultAction(childID : UInt) : String;
  11. function get_accFocus() : UInt;
  12. function get_accName(childID : UInt) : String;
  13. function get_accRole(childID : UInt) : UInt;
  14. function get_accSelection() : Array<Dynamic>;
  15. function get_accState(childID : UInt) : UInt;
  16. function get_accValue(childID : UInt) : String;
  17. function get_selectionActiveIndex() : Dynamic;
  18. function get_selectionAnchorIndex() : Dynamic;
  19. function isLabeledBy(labelBounds : flash.geom.Rectangle) : Bool;
  20. }