Calling ActionScript Functions from JavaScript


Calling ActionScript functions from JavaScript is necessary to make integrated hybrid applications using Flash and HTML. Often, an existing application will exist in HTML/JavaScript, and you'll want to integrate some Flash-enabled functionality such as video or animation. In such cases it's frequently necessary that the HTML page be able to communicate to Flash.

There are two things you must configure properly before you can call an ActionScript function from JavaScript. Let's look at each of them in the following two sections.

Registering an ActionScript Function

To call an ActionScript function from JavaScript, you must first register the function using the ExternalInterface.addCallback() method. The method requires three parameters:

  • methodName: A string specifying the name of the function as it is to be callable from JavaScript

  • instance: The ActionScript object to which the function is scoped when called via JavaScript

  • method: The reference to the function/method that you want to register

The following example defines a function called increment() that increments a variable called count. It then registers the function so that it can be called from JavaScript with the name incrementCount.

    function increment():Void {       count++;     }     ExternalInterface.addCallback("incrementCount", this, increment);


Getting a Flash Object Reference

In the HTML page that embeds the SWF file, you must have a reference to the Flash object to be able to call the registered function(s). To retrieve a reference to the Flash object, you must make sure that you specify a name parameter for the <object> tag and a name attribute for the <embed> tag. If you published the HTML from Flash, the name parameter and attribute values are the same as the SWF filename by default. For example, if the filename is example.swf, then the name parameter and attribute will have the value example.

After you determine that the name parameter and attribute have valid values, the next step is to retrieve a reference to the Flash object using that value. However, you can retrieve the reference only after the Flash object exists. One way to ensure that the object exists before trying to reference it is to use the onLoad handler for the <body> tag. The onLoad handler will get called only after the HTML content, including the Flash object, has loaded. You can tell the browser to call a custom JavaScript function when the onLoad handler is called. For example, the following code calls a function called initialize() when the HTML content has loaded:

    <body onLoad="initialize();">


You can then define the function (initialize()) so it retrieves a reference to the Flash object. How you can reference the Flash object differs between browsers. Every supported browser references the Flash object in the same way, with the exception of Internet Explorer on Windows. Most browsers reference the Flash object in the following way:

    window.document.FlashObjectName


Internet Explorer references the object as follows:

    document.FlashObjectName


It's relatively simple to write a function that detects the browser so that it can retrieve the correct Flash object reference. The following code declares a variable called flashObject. The initialize() function (which you can assume is called by the onLoad handler) checks which browser is being used and it then assigns the correct reference to the variable. In the following code, assume that the name parameter and attribute for the <object> and <embed> tags is example.

   <script language="JavaScript">    var flashObject;    function initialize() {      if(navigator.appName.indexOf("Microsoft") != -1) {        flashObject = document.example;      }      else {        flashObject = window.document.example;      }     }     </script>


After you retrieve a reference to the Flash object, you can call any registered functions directly from that object. For example, if the Flash object has a function registered as incrementCount, you can call the function in the following way.

   flashObject.incrementCount();


Note that you can pass parameters to the function as you would any function. The following passes two parametersa number and a Boolean valueto a function registered as testFunction().

   flashObject.testFunction(5, true);





Macromedia Flash 8 ActionScript Training from the Source
Macromedia Flash 8 ActionScript: Training from the Source
ISBN: 0321336194
EAN: 2147483647
Year: 2007
Pages: 221

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net