System Function: Unterschied zwischen den Versionen
Aus EEP Handbuch
(Die Seite wurde neu angelegt: „ <table width="90%" align="center" border="1" style="border: 1px solid black; border-collapse: collapse;"> <tr> <th colspan="2">clearlog(…“) |
(kein Unterschied)
|
Aktuelle Version vom 7. September 2018, 12:43 Uhr
clearlog() | clearlog() | |
---|---|---|
type: | function |
clearlog() |
caller: | script | |
defined in: | EEP | |
parameters: | none | |
return: | none | |
requires: | EEP 10.2 plug-in 2 | |
purpose: | Clears the Lua event window. |
print() | print( "Text1", "Text2", ..., TextN ) | |
---|---|---|
type: | function |
print("The time now is: ",EEPTimeH,":",EEPTimeM) |
caller: | script | |
defined in: | EEP | |
parameters: | multiple | |
return: | one | |
requires: | EEP 10.2 plug-in 2 | |
purpose: | Writes arguments to Lua event window (activate window in EEP properties) | |
notes: |
|
EEPMain() | EEPMain() | |
---|---|---|
type: | function |
function EEPMain() return 1 end |
caller: | EEP | |
defined in: | script | |
parameters: | none | |
returns: | one | |
requires: | EEP 10.2 plug-in 2 | |
purpose: | This function is called by EEP 5 times per second (i.e. every 200 milliseconds); useful for all actions that require constant repeats. | |
notes: |
|
EEPPause() | EEPPause( Status ) | |
---|---|---|
type: | function |
Pause = EEPPause( 1 ) |
caller: | script | |
defined in: | EEP | |
parameters: | one | |
returns: | one | |
requires: | EEP 14 plug-in 1 | |
purpose: | Activates and deactivates the break-satus of EEP. | |
notes: |
|
EEPSetTime() | EEPSetTime(Hour,Minute,Second) | |
---|---|---|
type: | function |
EEPSetTime( 14, 35, 2 ) |
caller: | script | |
defined in: | EEP | |
parameters: | three | |
returns: | one | |
requires: | EEP 14.2 Plug-In 2 | |
purpose: | Changes the EEP-time. | |
notes: |
|