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!

pass parameters to external application 1

Status
Not open for further replies.

wangbar

Programmer
Jul 23, 2001
1,906
GB
Can Director pass Windows command line parameters to the application it launches via the Lingo "open" - the technotes say some people have had success with this but don't go into any details...
 
You should be able to pass the parameter using
Code:
open
:
Code:
open parameterToPass with applicationToOpen
... but this may not work (It didn't for me anyway)! Use Buddy API command
Code:
baShell
instead:
Code:
baShell(Operation, Filename, Args, WorkDir, State)
 
Didn't work for me either! I'll check out the BuddyAPI Xtra though, thanks...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top