I have a Shockwave piece, as illustrated by this code:
--------------------------
----------
---
<object classid="clsid:166B1BCA-3F
9C-11CF-80
75-4445535
40000"
codebase="
http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=10,0,0,0" width=550 height=500>
<PARAM NAME="src" value="/programs/shockwave
/mac_test.
dcr">
<PARAM NAME="swRemote" value="swSaveEnabled='true
' swVolume='true' swRestart='false' swPausePlay='false' swFastForward='false' swContextMenu='false' ">
<PARAM NAME="swStretchStyle" value="none">
<PARAM NAME="userguid" VALUE="Mac">
<PARAM NAME="bgColor" VALUE="#FFFFFF">
<PARAM NAME="logo" VALUE="FALSE">
<embed src="/programs/shockwave/m
ac_test.dc
r" bgColor="#FFFFFF" logo="FALSE" width="550" height="500" userguid="MacLean" swRemote="swSaveEnabled='t
rue' swVolume='true' swRestart='false' swPausePlay='false' swFastForward='false' swContextMenu='false' " swStretchStyle=none
type="application/x-direct
or" pluginspage="
http://www.macromedia.com/shockwave/download/"></embe
d>
</object>
--------------------------
----------
----
Now, Im trying to pass a parameter from HTML to the shockwave piece. Based on the above code I can get it to work in Firefox, but not IE. Any suggestions? Below is the script I have running in the .dcr file.
--------------------------
----------
----
function exitFrame(me) {
_global.gRedirect = "
http://myserver.com/programs/brainspeed_next.php?score=20"
var pamam = _player.externalParamValue
("userguid
");
if (typeof pamam != "undefined") {
member("param").text = pamam.toString();
}
}
Start Free Trial