ActionControl()

Previous Next

Changes the mouse pointer to a specified shape until the user clicks on a control, at which point a specified action or list of actions is performed.

This action can be used to call context-sensitive help using the HelpRunWinhelp() action.

Syntax

ActionControl( cursor-shapeclassaction, ... )

 

cursor-shape  := { arrow | ibeam | wait | cross | uparrow | size | sizenwse | sizenesw | sizens | sizeewe | TCHelp } 

 

 

Cursor-shape is required. TCHelp is the pointer shape for context-sensitive help.

The required class is a filter that determines which object (if any) is the target of the action. For example, if you specify Column here, the action is executed on the nearest Column ancestor of the current object.

The required action is the action you want to perform. You can perform multiple actions separated by commas.

IMPORTANT: Actions must be specified by using deprecated action names.

Example

ActionControl( 'TCHelp', 'Core', help-run-winhelp() )