Categories
Tags
-
Recent Posts
Tag Archives: javascript to actionscript
Calling a function from javascript to actionscript 3
Calling a function from Javascript to Flash / ActionScript 3. //Javascript———- function flashCom(flashIDName, stringVar){ var video = (isIE()) ? window[flashIDName] : document[flashIDName]; video.updateFlash(JSONString); } flashCom(“flash_object_id_name”, “string_to_be_passed”); //AS3—————- package com{ import flash.external.ExternalInterface; public class init extends MovieClip { public function init():void … Continue reading
Posted in ActionScript 3.0, Javascript
Tagged actionscript, actionscript 3, as3, javascript, javascript to actionscript
Leave a comment