Difference between revisions of "ISKernel:console (Data Type)"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 15: Line 15:
  
 
== Examples ==
 
== Examples ==
<math>function Conjunction()
+
function main()
 
{
 
{
if !'''${Console.Open}'''
+
if !${Console.Open}
 
press 0
 
press 0
 
wait 20
 
wait 20
call SomeOtherFunction
+
call main
}</math>
+
}
 
 
  
 
''Italic text''This would bascially pause your script if you open the console window''Italic text''
 
''Italic text''This would bascially pause your script if you open the console window''Italic text''

Revision as of 18:23, 4 April 2005

Description

Members

  • bool Open: TRUE if the console is currently visible
  • bool Echo: TRUE if console "echo" is enabled (i.e. not squelched, and 'echo off' has not been used)

Methods

(these methods require Inner Space 0.74)

  • Toggle: Toggles the console visibility
  • Open: Opens the console
  • Close: Closes the console

Returns

(none)

Examples

function main() { if !${Console.Open} press 0 wait 20 call main }

Italic textThis would bascially pause your script if you open the console windowItalic text

See Also