seujan
11-10-2005, 10:38 PM
I need to launch an application from within flash that lives on the C Drive.
This code works:
on(release){
getURL("file:///C:\ WINDOWS\ system32\ mstsc.exe");
}
However, once the file opens, the user has to click through a couple of screens to get to the main page. An engineer here sent me this path that works fine in the RUN prompt.
mstsc.exe /v:ortrm02 /w:640 /h:480
However, when I add the last part of the path to the getURL script like this:
on(release){
getURL("file:///C:\ WINDOWS\ system32\ mstsc.exe /v:ortrm02 /w:640 /h:480");
}
I get a "cannot find file" error message.
I appreciate your insights on this!
Seujan
This code works:
on(release){
getURL("file:///C:\ WINDOWS\ system32\ mstsc.exe");
}
However, once the file opens, the user has to click through a couple of screens to get to the main page. An engineer here sent me this path that works fine in the RUN prompt.
mstsc.exe /v:ortrm02 /w:640 /h:480
However, when I add the last part of the path to the getURL script like this:
on(release){
getURL("file:///C:\ WINDOWS\ system32\ mstsc.exe /v:ortrm02 /w:640 /h:480");
}
I get a "cannot find file" error message.
I appreciate your insights on this!
Seujan