Difference between revisions of "ActivateClient"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <func>procedure ActivateClient;</func> ==Availability== SCAR Divi 3.00 > Current ==Description== This function brings the currently selected client to the foregr...")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Definition==
 
==Definition==
<func>procedure ActivateClient;</func>
+
<source lang="scar" lines="false">
 +
procedure ActivateClient;
 +
</source>
  
 
==Availability==
 
==Availability==
SCAR Divi 3.00 > Current
+
SCAR Divi 3.00 > 3.34
  
 
==Description==
 
==Description==
Line 17: Line 19:
 
</source>
 
</source>
  
[[Category:Functions]]
+
[[Category:Deprecated Functions]]
[[Category:Client Functions]]
 

Latest revision as of 12:08, 25 July 2012

Definition

procedure ActivateClient;

Availability

SCAR Divi 3.00 > 3.34

Description

This function brings the currently selected client to the foreground and makes it take focus.

Example

// Before running, select a window as client and hide it behind another window
begin
  Wait(5000);
  ActivateClient;
end.