Hello
For example, i have 3 scripts TOTO.AU3, TATA.EXE (script builded), TITI.EXE (script builded) :
TOTO.AU3
$var = 1
run("tata.exe")
run("titi.exe")
sleep(10000)
$var = 2
sleep(10000)
$var = 3
sleep(10000)
TATA.EXE while $var <> 2
Sleep(1000)
Wend
msgbox( 0, "essai1", "")
TITI.EXE while $var <> 3
Sleep(1000)
Wend
msgbox( 0, "essai1", "")
I would like TOTO/TATA/TITI could read/write the same variable $var ?
Have you any idea ?
Thank
PS : I think writing the variable/value in a file if i haven't a better idea.