WaitCursor: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
m (Ghenne moved page Waitcursor to WaitCursor)
No edit summary
Line 3: Line 3:
== Description ==
== Description ==


Set WaitCursor to true to display a wait cursor. The design of the cursor depends on the device. Set it to false to turn the waitcursor off again.
Set WaitCursor to true to display a wait cursor. The design of the cursor depends on the browser. Set it to false to turn the waitcursor off again. This command does not do anything on mobile devices, since they do not have a cursor.


== Example ==
== Example ==
Line 9: Line 9:
<pre>
<pre>
Rem WaitCursor Example
Rem WaitCursor Example
WaitCursor TRUE
WaitCursor True
Sleep 5000
Sleep 5000
WaitCursor FALSE
WaitCursor False
</pre>
</pre>



Revision as of 15:50, 9 April 2013

WaitCursor true|false

Description

Set WaitCursor to true to display a wait cursor. The design of the cursor depends on the browser. Set it to false to turn the waitcursor off again. This command does not do anything on mobile devices, since they do not have a cursor.

Example

Rem WaitCursor Example
WaitCursor True
Sleep 5000
WaitCursor False

Output