Call JavaScript method and pass in parameters : JavaScript « Development « Flex






Call JavaScript method and pass in parameters

Call JavaScript method and pass in parameters
         



<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal">
  <mx:Script>
    
    private var myArray:Array = [ 'A', 'B', 'C' ];
    private function onDoubleClick( event:Event ) : void {
        ExternalInterface.call('itemSelected', theList.selectedIndex, myArray );
    }
    
  </mx:Script>
  <mx:List id="theList" width="300" doubleClick="onDoubleClick(event);" doubleClickEnabled="true"
    dataProvider="{myArray}">
  </mx:List>
</mx:Application>

   
    
    
    
    
    
    
    
    
  








Related examples in the same category

1. block calls the JavaScript changeDocumentTitle() function in the enclosing wrapper by using the call() method<fx:Script> block calls the JavaScript changeDocumentTitle() function in the enclosing wrapper by using the call() method
2.If you pass an object, you can access the properties of that deserialized object in the JavaScriptIf you pass an object, you can access the properties of that deserialized object in the JavaScript
3.Is JavaScript method call ready
4.Call from JavaScript
5.Send to JavaScript
6.Call JavaScript function to get the result
7.Call JavaScript with ExternalInterface