Core Function GUIWindow
From Sputnik Wiki
(Difference between revisions)
(→Example) |
(→Functions) |
||
Line 14: | Line 14: | ||
=== Functions === | === Functions === | ||
+ | |||
+ | ==== Activate ==== | ||
+ | |||
+ | <syntaxhighlight lang="sputnik"> | ||
+ | GUIWindow($GUI, "Activate"); | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | ==== Focus ==== | ||
+ | |||
+ | <syntaxhighlight lang="sputnik"> | ||
+ | GUIWindow($GUI, "Focus"); | ||
+ | </syntaxhighlight> | ||
==== SetIcon ==== | ==== SetIcon ==== |
Revision as of 14:06, 7 October 2013
GUIWindow( <window> )
Contents |
Description
Properties & Functions specifically for Window
Parameters
window
The GUI Window object to use.
Functions
Activate
GUIWindow($GUI, "Activate");
Focus
GUIWindow($GUI, "Focus");
SetIcon
Set the window icon
Set from File:
GUIWindow($GUI, "SetIcon", "FoX.ico");
Example
See above