Window.Hide

Window.Hide ( 

number WndHandle )

Example 1

Window.Hide(app_handle);

Hides the window of a program whose window handle is stored in the variable "app_handle."

Example 2

-- Get the patch's window handle.
handle = Application.GetWndHandle();

-- Hide the patch window.
Window.Hide(handle);

-- Sleep for 3 seconds.
Application.Sleep(3000);

-- Show the patch window.
Window.Show(handle);

Gets the numeric window handle for the patch window and stores it in the variable "handle." The window handle is then used to hide the window for 3 seconds.

See also:  Related Actions