Skip to content

Commit

Permalink
avm2: Add AccessibilityImplementation.accDoDefaultAction
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-McSweeney committed Nov 12, 2023
1 parent de4d586 commit 576c7e1
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ package flash.accessibility {
this.stub = false;
}

public function accDoDefaultAction(childID:uint):void { }

public function accLocation(childID:uint):* {
return null;
}
Expand All @@ -29,15 +31,15 @@ package flash.accessibility {
}

public function get_accRole(childID:uint):uint {
throw new Error("Error #2143, AccessibilityImplementation.get_accRole() must be overridden from its default.", 2143);
throw new Error("Error #2143: AccessibilityImplementation.get_accRole() must be overridden from its default.", 2143);
}

public function get_accSelection():Array {
return null;
}

public function get_accState(childID:uint):uint {
throw new Error("Error #2144, AccessibilityImplementation.get_accState() must be overridden from its default.", 2144);
throw new Error("Error #2144: AccessibilityImplementation.get_accState() must be overridden from its default.", 2144);
}

public function get_accValue(childID:uint):String {
Expand Down

0 comments on commit 576c7e1

Please sign in to comment.