Desmond
10-03-2003, 11:59 AM
<HTML> <HEAD> <TITLE>AutoPlay Media Studio 5.0 Knowledge Base</TITLE> </HEAD> <BODY> <h3>Determining what Version of Internet Explorer is Installed</h3> <b>Document ID: IR10073</b> <hr> The information in this article applies to: <ul> <li>AutoPlay Media Studio 5.0 Professional Edition</li> </ul> <hr> <h3>SUMMARY</h3> <p>This article describes how to determine what version of Internet Explorer is installed.</p> <h3>DISCUSSION</h3> <ol> <li>To detect the version of Internet Explorer that is installed on the user's system, enable the Internet Explorer dependency.<br> <br> If you want to detect the version of Internet Explorer, but not require your user to have it installed, set the required version to 0.0.0.0<br> <br> </li> <li>Insert the following script to the On Show event of your first page:<pre><code>if _InternetExplorerVer == "0.0.0.0" then
<br /> Dialog.Message("Internet Explorer", "Internet Explorer is not installed");
<br />else
<br /> Dialog.Message("Internet Explorer", "Internet Explorer version " .. _InternetExplorerVer .. " is installed on this system");
<br />end</code></pre> The above script will pop up a dialog box at runtime displaying the version of internet explorer that the user's computer currently has installed. </li> </ol> <h3>MORE INFORMATION</h3> <p>For more information please see the following topics in the AutoPlay Media Studio 5.0 help file:</p> <ul> <li><b>Program Reference | Projects | Dependencies | Applications</b></li> </ul> <p>KEYWORDS: AutoPlay Media Studio 5.0, Required, Dependency, Application, Internet Explorer </p> <hr> <FONT SIZE=1> Last reviewed: October 3, 2003<br> Copyright © 2003 <A HREF="http://www.indigorose.com" target="blank">Indigo Rose Corporation</a>. All rights reserved.<br> </FONT> </BODY> </HTML>
<br /> Dialog.Message("Internet Explorer", "Internet Explorer is not installed");
<br />else
<br /> Dialog.Message("Internet Explorer", "Internet Explorer version " .. _InternetExplorerVer .. " is installed on this system");
<br />end</code></pre> The above script will pop up a dialog box at runtime displaying the version of internet explorer that the user's computer currently has installed. </li> </ol> <h3>MORE INFORMATION</h3> <p>For more information please see the following topics in the AutoPlay Media Studio 5.0 help file:</p> <ul> <li><b>Program Reference | Projects | Dependencies | Applications</b></li> </ul> <p>KEYWORDS: AutoPlay Media Studio 5.0, Required, Dependency, Application, Internet Explorer </p> <hr> <FONT SIZE=1> Last reviewed: October 3, 2003<br> Copyright © 2003 <A HREF="http://www.indigorose.com" target="blank">Indigo Rose Corporation</a>. All rights reserved.<br> </FONT> </BODY> </HTML>