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 installation's window handle.
handle = Application.GetWndHandle();

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

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

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

Gets the numeric window handle for the installation 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