deInstallApp
deInstallApp(w_windowt_appName) => t / nil
Description
Switches the current application in w_window to t_appName. The enable trigger is called before switching, and if it returns nil, the switch is aborted. Otherwise, the application menus and bindkeys are installed as if the user had executed the corresponding customizer item.
The enable trigger is called with the standard trigger argument, unlike other situations in which the trigger is called. The trigger argument reflects the application which corresponds to t_appName, not the one currently installed in the window.
Arguments
|
Window in which the specified application is to be installed as the current application. Defaults to the current window. |
|
Value Returned
Examples
Switches to the application Timing Analysis in window(3).
deInstallApp( window(3) "Timing Analysis" )
Return to top