Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to Communicate with JavaScript?

Answer Posted / satyendra dewangan

Using getURL method in AS 2.0..we can possibly call
javascript function..

Syntax:-

getURL("javascript:weightMIN('"+argument+"');");


If you want to call javascript function:-

function weightMIN(val){

alert(val);
}


OR

You can use also ExternalInterface class in flash AS 2.0..
import flash.external.*;

var methodName:String = "goHome";
var instance:Object = null;
var method:Function = goToAdobe;
var wasSuccessful:Boolean =
ExternalInterface.addCallback(methodName, instance, method);

var txtField:TextField = this.createTextField("txtField",
this.getNextHighestDepth(), 0, 0, 200, 50);
txtField.border = true;
txtField.text = wasSuccessful.toString();

function goToAdobe() {
txtField.text = "http://www.adobe.com";
getURL("http://www.adobe.com", "_self");
}

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a function for a button.

837


Which is the quickest way to make the stroke around an oval shape into a dotted line? : Adobe flash

829


which code should be added to create a second blue square to the right of the first? : Adobe flash

856


How to add an effect to the movie clip?

861


Tell me what are the different ways in which the variables can be assigned?

908


explain the correct way to create an alert box using geturl and javascript? : Adobe flash

807


which items cannot be hidden from screen readers? : Adobe flash

862


what methods are used to pass variables out of flash to a server side solution? : Adobe flash

976


How to play a movie clip?

856


How to write a program use a text field and display it using the actionscript?

848


what is not a benefit of using macromedias pre-built ui components? : Adobe flash

850


What is meant by vector graphic animation? What is the use of pre-loader?

907


you have a rectangle shape with rounded corners. You want to ensure that the corners do not distort when the rectangle is scaled. What should you do? : Adobe flash

911


Explain what are the differences between javascript and actionscript?

981


you want to create a rectangle shape with a defined corner radius. Which tool should you use? : Adobe flash

946