Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to control other programs from director MX environment?

Status
Not open for further replies.

tekeste

Programmer
Dec 13, 2003
1
ET
Hallo guys:
Is there somebody to tell me how to control launching and controlling other programs from director mx environment like opening Ms word and control the user's activity on the word.
 
Director can launch an external application (lingo
Code:
open
), but this is usually useless as you need to specify the full path to the application.

Better way is to use BuddyAPI
Code:
baRunProgram
, which you won’t need to specify the full path and you can add command line parameter to let the application to perform certain task (e.g. print a file).

But the best way to control the external application is to use MasterApp. With MasterApp you can launch Word and type texts automatically, for example. Expect to write 100 lines of Lingo to do this, but definitely doable.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top