Specifying Your Own Callback for Windows
You cannot set the hiHelpAction property on windows. If you want to specify your own help callback for windows, you can override the default Help button with a pulldown menu and add your own callback as a menu item.
To specify your own callback for windows,
- Write your callback function.
-
Create a menu item with
hiCreateMenuItem()and specify your callback function as the?callbackargument. -
Create a menu with
hiCreateMenu()and specify"Help"as the menu title. -
Insert the menu in the window banner with
hiInsertBannerMenu().
Specify99as the value of the x_menuPosition argument to ensure that the Help menu is displayed at the right end of the banner.
Related Topics
Properties Required for Task Assistant
Return to top