简体   繁体   中英

AS2 (not AS3) button that triggers jquery click()

I'm really struggling with this. I have a flash demo built in AS2 (not AS3). I want to click on a button and execute a jQUERY click() event to hide/show a DIV that will be shown as "modal" on top of FLASH file.

But I cannot even get an ALERT box to work...

Actionscript

on(press) { import flash.external.*; ExternalInterface.call('function(){ alert("test"); }'); }

Any ideas on what am I doing wrong?

Nevermind... I fixed the issue myself. To make it work you have to make sure that access to script is ALWAYS allowed. The following line is inside the tag of the FLASH:

<param name="allowScriptAccess" value="always" />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM