ADC Home > Reference Library > Reference > User Experience > Accessibility > Accessibility (ApplicationServices/HIServices) Reference
|
AXActionConstants.h |
Many UIElements have a set of actions that they can perform. Actions are designed to be simple. Actions roughly correspond to things you could do with a single click of the mouse on the UIElement. Buttons and menu items, for example, have a single action: push or pick, respectively. A scroll bar has several actions: page up, page down, up one line, down one line.
Actions
- kAXRaiseAction
- kAXShowMenuAction
Actions
- kAXPickAction
Actions
- kAXCancelAction
- kAXConfirmAction
- kAXDecrementAction
- kAXIncrementAction
- kAXPressAction
kAXCancelAction |
#define kAXCancelAction CFSTR("AXCancel")
Simulate a Cancel action, such as hitting the Cancel button.
kAXConfirmAction |
#define kAXConfirmAction CFSTR("AXConfirm")
Simulate pressing Return in the UIElement, such as a text field.
kAXDecrementAction |
#define kAXDecrementAction CFSTR("AXDecrement")
Decrement the value of the UIElement.
kAXIncrementAction |
#define kAXIncrementAction CFSTR("AXIncrement")
Increment the value of the UIElement.
kAXPickAction |
#define kAXPickAction CFSTR("AXPick")
Select the UIElement, such as a menu item.
kAXPressAction |
#define kAXPressAction CFSTR("AXPress")
Simulate clicking the UIElement, such as a button.
kAXRaiseAction |
#define kAXRaiseAction CFSTR("AXRaise")
kAXShowMenuAction |
#define kAXShowMenuAction CFSTR("AXShowMenu")
|
Last Updated: 2008-08-07