Page 1 of 1

Launching Apps with a Press of a Button?

Posted: 04 Mar 2020 05:52
by Member
I'm trying to create a button where pressing down would run multiple applications all at once.

I have added the commands below, but all I am getting is a drop down menu to click on them to run.

run """<xydrive>\Apps\App1\App1.exe""";
run """<xydrive>\Apps\App2\App2.exe""";
run """<xydrive>\Apps\App3\App3.exe""";
run """<xydrive>\Apps\App4\App4.exe""";

What am I missing?

Re: Launching Apps with a Press of a Button?

Posted: 04 Mar 2020 07:37
by jaywalker32
In a multi-line script all lines apart from the first line have to be indented by at least one space.

Code: Select all

help("idh_scripting.htm#idh_scripting_multi");

Re: Launching Apps with a Press of a Button?

Posted: 04 Mar 2020 13:51
by Member
Thanks jaywalker32.