Hi Forum.
EDIT because of new needs...:
I want to read out the name of all functions and one variable in it into an array.
for example:
AutoIT:
func example1()
$description = "The first example"
endfunc
func example2()
$description = "The second example"
endfunc
$array[2][2]
$array[0][0] = "example1()"
$array[0][1] = "The first example"
$array[1][0] = "example2()"
$array[1][1] = "The second example"
1. There's a script with functions.
2. There's a script the GUI use to know what to do..
3. There's a GUI script.
.... and there are alot other scripts...
Someone writes a new function in the 1. script. (nothing more only in script 1.)
The script 3. is there to show all functions of script 1. to choose and let a choice run.
To show the existing functions it starts script 2. which returns all functions (and a describing variable) in an array to script 3. which shows them.
The function must only be written and is automatically announced.
clear? can someone help me?
thx
Spenhouet