Difference between revisions of "SetWindowTitle"

From The Official Visionaire Studio: Adventure Game Engine Wiki
(Created page with "<div class="toccolours mw-collapsible mw-collapsed" style="background: #f0f0f0; border: 1px dashed darkgrey" width="100%"> <b>Command History</b> <div class="mw-collapsible-co...")
 
(Redirected page to Global Command: setWindowTitle)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<div class="toccolours mw-collapsible mw-collapsed" style="background: #f0f0f0; border: 1px dashed darkgrey" width="100%">
+
#REDIRECT [[Global Command: setWindowTitle]]
<b>Command History</b>
 
<div class="mw-collapsible-content">
 
<div style="background:#ebebeb" width="100%">Available since <span style="color:orange">v3.8</span></div>
 
</div></div>
 
 
 
 
 
Allows you to set a custom title in the game application title bar! (window mode only)
 
 
 
 
 
Syntax:
 
<syntaxhighlight>
 
setWindowTitle("title")
 
</syntaxhighlight>
 
 
 
 
 
Example 1: basic set window title command!
 
<syntaxhighlight>
 
setWindowTitle("my new game title")
 
</syntaxhighlight>
 
 
 
Example 2: set window title based on current users system language!
 
<syntaxhighlight>
 
-- let's get the current users os language & store it in a variable!
 
sysLang = getProperty("system_language")
 
 
 
-- let's set the window title based on users language!
 
if sysLang == "English" then
 
setWindowTitle("my new game in english")
 
elseif sysLang == "German" then
 
setWindowTitle("mein neues spiel auf deutsch")
 
end
 
</syntaxhighlight>
 
 
 
 
 
 
 
<b><u>Arguments</u></b>
 
 
 
title: "string" <br/>
 
This should include the text you want to be displayed in the application title bar! (window mode)
 
 
 
Flags: none
 
 
 
Return: none
 
{{i18n|SetWindowTitle}}
 

Latest revision as of 13:32, 19 May 2023