Hi,
Any answer to this problem?
I have an application with a button and on the click handler I have
var s:String;
if (ExternalInterface.available) {
var wrapperFunction:String = "getString";
s = ExternalInterface.call(wrapperFunction);
} else {
s = "Wrapper not available";
}
trace(s);
If I run the application from Flash Builder I get the string from "getString"
java script function.
If I change the string and I run the application outside of IDE the string is
not changed, remain the same with the one from run of the IDE.
Best Regards,
Mihai