Original Author Paul Laughton, 2011
Page 134
De Re BASIC!
Timer.clear
Clears the repeating timer. No further timer interrupts will occur.
Sample Code
n=0
TIMER.SET 2000
DO
UNTIL n=4
TIMER.CLEAR
PRINT "Timer cleared. No further interrupts."
DO
UNTIL 0
ONTIMER:
n = n + 1
PRINT n*2; " seconds"
TIMER.RESUME
Clipboard
Clipboard.get <svar>
Copies the current contents of the clipboard into <svar>
Clipboard.put <sexp>
Places <sexp> into the clipboard.
Encryption
Encrypts and decrypts a string using a supplied password. The encryption algorithm used is
"PBEWithMD5AndDES".
Encrypt {<pw_sexp>}, <source_sexp>, <encrypted_svar>
Encrypts the string <source_sexp> using the password <pw_sexp>. The result is placed into the variable
<encrypted_svar>.
The password parameter is optional, but its comma is required. Omitting the password is the same as
using an empty string, "".
If the source string cannot be encrypted, the result is an empty string (""). You can call the GETERROR$()
function to get an error message.
This command is the same as ENCODE$("ENCRYPT", <pw_sexp>, <source_sexp>).