Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
crisbosch #1
External Interface issue
HI, I'm trying to get an button in flash to open a pop-under window in the
browser using JavaScript. So far I have had no success. Both functions are
working fine independently but I can't get them to communicate with each other.
Please see attached code.
Thanks!
////// AS 2.0 /////
import flash.external.*;
allowScriptAccess="always";
function gaTracking() {
ExternalInterface.call("conversion");
trace("gaTracking Triggered");
}
////// JavaScript //////
<script language="JavaScript">
function conversion(){
window.open('http://www.solowresidential.com/thank-you.html','','width=500,heig
ht=350,left=200,top=200').blur();
window.focus();
}
</script>
crisbosch Guest
-
Flash Forms/External Interface API?
Has anyone been able to get this to work? I am trying to send data from a Flash Form to Javascript (actually to an fckeditor overlaid on the... -
External Interface problem in Internet Explorer
Hello I am having a problem with the External Interface when using Internet Explorer. I am trying to get Flash to send and recieve a variable... -
Director MX to External Application Interface
I am using Director MX to creating a training video. The training video will be displayed to a maximum of 256 students at a time. Each student will... -
External Editor Issue~ Please help! Thanks!
Freehand MX PC PS 7 Thanks much... -
Does Interface Size Matter? Is my interface too complex?
Hi all, Does Interface Size Matter? Is my interface too complex? I volunteered to design a couple of web pages, but since we don't have a... -
Noelbaland #2
Re: External Interface issue
Hello,
Delete the allowScriptAccess in your AS2 script - it does nothing. After
you've published your Flash movie, you need to edit the HTML page and set the
allowScriptAccess to "always" in the <object> and <param> tags.
The default is allowScriptAccess="sameDomain".
Noelbaland Guest



Reply With Quote

