admin wrote:Not in this century.

Actually, it can be this century just not quite how it was initially proposed. Now that you've implemented this:
Code: Select all
v7.70.0004 - 2008-10-21 14:41
+ Scripting got a new function.
Name: WriteFile
Action: Write data to file.
Syntax: writefile(filename, data, [on_exist], [mode])
filename: file full path/name;
will be created if does not exist yet
data: string data to write
on_exist:
o: [default] create new file/if existing: overwrite
a: create new file/if existing: append
n: create new file/if existing: do nothing
mode:
t: [default] text ASCII (1 byte per char);
wide chars (upper Unicode) are represented by "?"
u: utf16: 2 bytes per char; with LE BOM at file beginning
LE BOM = Little Endian Byte Order Mark: 0xFFFE
b: binary: raw bytes (also 2 bytes per char, but no BOM)
return: 1 on success, 0 on failure
Examples:
::$a = writefile("C:\Temp\test_A.txt", "text");
Creates a 4 byte file.
::$a = writefile("C:\Temp\test_A2.txt", "text ".chr(20000));
Creates a 6 byte file.
::$a = writefile("C:\Temp\test-U.txt", "text ".chr(20000), ,"u");
Creates a 14 byte file (2 bytes BOM + 2 * 6).
Note: WriteFile() is implemented as a function (instead of a
statement) because the return value will be useful once If/Then
blocks are implemented. You may, however, call functions without
using a dummy variable. See here below.
All I need to know is how to dump the list of functions to clipboard and then I can use this:
Code: Select all
writefile ("D:\ListOfFunctions.txt", <clipboard>, o, t)
The question is, however, how to get the contents for LoF?