getURL("javascript:command('listen',2)","_self");
Nope. getURL won't work.


ExternalInterface.call("listen(2)");

as long as you have a JS function called listen which takes a number, like 2, as parameter.

gparis