Posted: Fri Dec 31, 2004 8:18 am Post subject: is it possible?
to use turing to conrtol other programs ie internet explorer or mb even a game?
Sponsor Sponsor
Cervantes
Posted: Fri Dec 31, 2004 8:38 am Post subject: (No subject)
It depends on how you mean "control". You can launch programs with Turing, such as internet explorer. Use the Sys.Exec command. Also, you can open a URL.
To open Internet Explorerer:
code:
if Sys.Exec("iexplore.exe") then
end if
To open compsci.ca:
code:
if Sys.Exec("www.compsci.ca") then
end if
nirt
Posted: Fri Dec 31, 2004 8:44 am Post subject: (No subject)
well now that i no it's possible i was j/w if u could use turing to lets say
run a game login pick char and then quit
could you do that?
Cervantes
Posted: Fri Dec 31, 2004 8:56 am Post subject: (No subject)