i'm trying to call a function in UnrealScript through ActionScript using ExternalInterface.call but for some reason it wont work when i test it.
the actionscript:
this.onRollOver = function()
{
gotoAndPlay(50);
ExternalInterface.call("Test");
}
(i'm importing "flash.external.ExternalInterface" on the stage/root/whatever you like to call it)
my UnrealScript function:
function Test()
{
`log("Externally Interfaced");
}
when i roll over my movieclip the log message never shows up. Am i doing this right?
any help would be greatly appreciated! thanks in advance