0
Run executable File from Coldfusion program

/t5/coldfusion-discussions/run-executable-file-from-coldfusion-program/td-p/554575
May 17, 2007
May 17, 2007
Copy link to clipboard
Copied
Anyone know how to code the statement to call excutable
program to run executable program via internet explorer
TOPICS
Advanced techniques
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

Guest
AUTHOR
/t5/coldfusion-discussions/run-executable-file-from-coldfusion-program/m-p/554576#M50906
May 17, 2007
May 17, 2007
Copy link to clipboard
Copied
you need to use <cfexcute> tag to run executable file.
Good Luck
Mamdoh
Good Luck
Mamdoh
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

Guest
AUTHOR
/t5/coldfusion-discussions/run-executable-file-from-coldfusion-program/m-p/554577#M50907
May 17, 2007
May 17, 2007
Copy link to clipboard
Copied
cfexecute tag will not work properly if i am using player.exe
file. it has fix coded path. it is trying to look at the pc instead
of server
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Advocate
,
/t5/coldfusion-discussions/run-executable-file-from-coldfusion-program/m-p/554578#M50908
May 17, 2007
May 17, 2007
Copy link to clipboard
Copied
Hi,
Use the <object> tag.. Below is one good example,
<OBJECT
ID="mediaPlayer"
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE=" http://activex.microsoft.com/activex/
controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="fileName"
VALUE="#your_media_file_name.extension#">
<PARAM NAME="animationatStart" VALUE="true">
<PARAM NAME="transparentatStart" VALUE="true">
<PARAM NAME="autoStart" VALUE="true">
<PARAM NAME="showControls" VALUE="true">
</OBJECT>
Use the <object> tag.. Below is one good example,
<OBJECT
ID="mediaPlayer"
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE=" http://activex.microsoft.com/activex/
controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="fileName"
VALUE="#your_media_file_name.extension#">
<PARAM NAME="animationatStart" VALUE="true">
<PARAM NAME="transparentatStart" VALUE="true">
<PARAM NAME="autoStart" VALUE="true">
<PARAM NAME="showControls" VALUE="true">
</OBJECT>
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

Guest
AUTHOR
/t5/coldfusion-discussions/run-executable-file-from-coldfusion-program/m-p/554579#M50909
May 17, 2007
May 17, 2007
Copy link to clipboard
Copied
since you are going to use media with a fix path then you
need to use <object> tag.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

