vote up 0 vote down star

Hi, I have a WMP player object and I'm trying to add an event listener to intercept ScriptCommands that are sent to the player. Instead of being attached to the WMP object, my callback is being called right away, and then the ScriptCommands aren't being intercepted.

function init() {
      var WMPlayer = document.getElementById("WMPlayer");
      WMPlayer.addEventListener("ScriptCommand", MyScriptCommand(), false);
  alert('init');
  }

  function MyScriptCommand() {
      alert('script');
  }

When I run this, I get the script alert before the init alert.... Does anyone know why this might be happening?

flag

1 Answer

vote up 1 vote down
WMPlayer.addEventListener("ScriptCommand", MyScriptCommand(), false);

needs to be

WMPlayer.addEventListener("ScriptCommand", MyScriptCommand, false);

without the parantheses. With the paranthese, you are calling the function and passing its return value as the listener, rather than the reference to the actual function.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.