In flash I had this code:
import flash.external.ExternalInterface;
function abc(){
txtNotice.text = "abc";
}
ExternalInterface.addCallback("abc",null,abc);
In javascript:
var x = document.getElementById('myFlashID');
x.abc();
Assume that in the flash movie, I had a dynamic textbox which will display the text “abc”;
So I want to call the flash’ function from javascript using the ExternalInterface.
The problem is, once I load the flash, and call up the function in JS, I get abc is not a function.
Meaning function not defined.
But the strange things is, when I do this in javascript:
var x = document.getElementById('myFlashID');
alert(x);
x.abc();
The abc displayed!!! The alert make the script work. What is the problem! I tried out my whole
day for it. I can’t figure out what could happened.
In flash object, i had put the value “allowScriptAccess” to “always”. When I alert ‘x’, it return
the HTML object element. Meaning should not be a problem. Is only that I can’t call the function
without alert(x);
I aslo noticed, even if I alert(‘something else’), the flash also ABLE to display the text ‘abc’
in the dynamic box.
Help me out! Thanks in advanced!!!