FS Command
|
![]() |
|
|
|
|
|
![]() |
<SCRIPT LANGUAGE="JavaScript">
|
<!--
|
// Detect Browser
|
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
|
// FSCommand handler for Netscape
|
function Movie1_DoFSCommand(command, args) {
|
var Movie1Obj = InternetExplorer ? Movie1 : document.Movie1;
|
if (command=="TestFunction") {
|
// ADD YOUR CODE HERE
|
}
|
}
|
//-->
|
</SCRIPT>
|
<SCRIPT LANGUAGE="VBScript">
|
<!--
|
// FSCommand handler for VBScript and ActiveX
|
Sub Movie1_FSCommand(ByVal command, ByVal args)
|
call Movie1_DoFSCommand(command, args)
|
end sub
|
//-->
|
</SCRIPT>
|