Difference between revisions of "TargCurs"

From Wiki
Jump to: navigation, search
Line 1: Line 1:
__NOTOC__
+
{{header|Extended|rw|The #targCurs system variable determines if cursor is a target cursor. It can also be written to, to get a target cursor.}}
== #targCurs ==
+
'''Extended System Variables'''
+
=== Description ===
+
{{rw}}
+
  
The [[Var targCurs|#targCurs]] system variable determines if cursor is a target cursor. It can also be written to, to get a target cursor.
 
 
'''Table 33. [[Var targCurs|#targCurs]] values.'''
 
  
 
{| border="1" cellpadding="2"
 
{| border="1" cellpadding="2"
|-
+
|+#targCurs Values
 
| width=60px style="background:#ffdead;" | Value || width=200px style="background:#ffdead;" | Description
 
| width=60px style="background:#ffdead;" | Value || width=200px style="background:#ffdead;" | Description
 
|-
 
|-
Line 17: Line 10:
 
|1 || Cursor is a target cursor.
 
|1 || Cursor is a target cursor.
 
|}
 
|}
 
 
  
 
==== Example ====
 
==== Example ====
Line 34: Line 25:
  
 
</pre>
 
</pre>
==== See Also ====
+
 
{|
+
{{footer}}
| Width=200px | [[target]]
+
|}
+
----
+
{|
+
| Width=200px | [[Main_Page]] || Width=200px | [[Documentation]] || Width=200px | [[Documentation#Extended|Extended System Variables]]
+
|}
+

Revision as of 09:04, 27 August 2005

The #targCurs system variable determines if cursor is a target cursor. It can also be written to, to get a target cursor.


#targCurs Values
Value Description
0 Cursor is a normal cursor.
1 Cursor is a target cursor.

Example

event SysMessage Target something!

set #targCurs 1
targLoop:
if #targCurs = 1
  goto targLoop

event SysMessage The ID of the target is #lTargetID
halt


See also

Main Page Documentation