
-----------------------------------
trees are uber
Thu May 18, 2006 10:47 am

how to open programs
-----------------------------------
im trying to open mozilla firefox from turing.. how must i do this

-----------------------------------
neufelni
Thu May 18, 2006 11:00 am


-----------------------------------
You open a program with Turing by using Sys.Exec. This example opens Internet Explorer, but to open a different program like Mozilla Firefox, you just change what is in the brackets.

if not Sys.Exec("IEXPLORE.exe") then
    put "Error opening Internet Explorer."
end if


-----------------------------------
trees are uber
Thu May 18, 2006 11:10 am


-----------------------------------
that rocks thanks
