There is a button on a flash drive, I really want that when you click on a button, a modal window written in jquery opens. can it be done somehow?
- very necessary) - oleg_ismaylov
|
1 answer
We smoke flash.external.externalinterface . Briefly: we create functions in JS and AS and through this thing we call from our files.
An example from my site:
HTML
<script type="text/javascript"> function setTitle(str) { document.title = '[ '+str+' ]'; return false; } </script>
FLASH
flash.external.ExternalInterface.call("setTitle", t);
|