Difference between revisions of "Window msg"
From Unofficial QEdit Wiki Guide
LunarFuror (Talk | contribs) (→Syntax) |
|||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | ''Syntax:'' <span style='font-size:12px;font-family:courier'><span style='color:green'>window_msg </span> | + | ==Syntax== |
+ | ''Syntax:'' <span style='font-size:12px;font-family:courier'><span style='color:green'>window_msg </span>string</span> | ||
− | + | * string = Message to display | |
− | * | + | * See list of [[Special characters]] |
==Use== | ==Use== | ||
Line 9: | Line 10: | ||
==Example== | ==Example== | ||
<span style='font-size:12px;font-family:courier'> | <span style='font-size:12px;font-family:courier'> | ||
− | <span style='color:blue'>300: </span><span style='color:green'>window_msg </span> 'Hello world!' <span style='color:orange'> | + | <span style='color:blue'>300: </span><span style='color:green'>window_msg </span> 'Hello world!' <span style='color:orange'>//When function is called display window message</span> |
− | <span style='color:green'> add_msg </span> 'Bye world!' <span style='color:orange'> | + | <span style='color:green'> add_msg </span> 'Bye world!' <span style='color:orange'>//Add to message</span> |
− | <span style='color:green'> winend</span> <span style='color:orange'> | + | <span style='color:green'> winend</span> <span style='color:orange'>//Close window message</span> |
<span style='color:green'> ret</span> | <span style='color:green'> ret</span> | ||
</span> | </span> | ||
− | == | + | ==Also see== |
[[add_msg]], [[message]], [[ret]], [[winend]] | [[add_msg]], [[message]], [[ret]], [[winend]] |
Latest revision as of 14:03, 9 April 2021
Contents
Syntax
Syntax: window_msg string
- string = Message to display
- See list of Special characters
Use
Used to display a message on screen.
Example
300: window_msg 'Hello world!' //When function is called display window message
add_msg 'Bye world!' //Add to message
winend //Close window message
ret