Call JavaScript or be called by JavaScript
1. Calling Flex methods in JavaScript
In Flex, you can use ExternalInterface to call Flex methods by adding specified public methods to the list of callable methods in the Flex application. A method can be added to this list by calling addCallback() in a Flex application. addCallback registers an ActionScript method as a method that JavaScript and VBScript can call. The definition of the
addCallback() function is as follows:
addCallback(function_name:String, closure:Function):void The
function_name parameter is the method name called by the script in the Html page. The closure parameter is the local method to be called. This parameter can be a method or an object instance.
For example:
import flash.external.*;
public function myFunc():Number {
return 42;
}
public function initApp():void {
ExternalInterface.addCallback ( "myFlexFunction",myFunc);
}
Then in the Html page, first get the reference to the SWF object, that is, the Id attribute of the Swf declared with For example, it is MyFlexApp. Then you can call methods in Flex in the following way.
< ;button onclick="callApp()">Call App
2. Call JavaScript in Flex AI-powered app for creating realistic nude photos Online AI tool for removing clothes from photos. Undress images for free AI clothes remover Swap faces in any video effortlessly with our completely free AI face swap tool! Easy-to-use and free code editor Chinese version, very easy to use Powerful PHP integrated development environment Visual web development tools God-level code editing software (SublimeText3)
You can call JavaScript in the Html page. By interacting with JavaScript, you can change the Style and call remote method. You can also pass the data to the Html page, and then return it to Flex after processing. There are two main methods to complete such a function: ExternalInterface() and navigateToUrl().
The easiest way to call JavaScript in Flex is to use ExternalInterface(). You can use this API to call any JavaScript, pass parameters, and get the return value. If the call fails, Flex throws an exception.
ExternalInterface encapsulates checking of browser support, which can be viewed using the available attribute.
ExternalInterface is very simple to use, the syntax is as follows:
flash.external.ExternalInterface.call(function_name: String[, arg1, ...]):Object;
The parameter function_name is the name of the JavaScript function to be called, and the following parameters are Parameters required by JavaScript.
An example of how to call a JavaScript function
In the Flex application, add the following method:
< mx: Application var f:String = "changeDocumentTitle"; var m:String = ExternalInterface.call(f,"New Title");
trace(m); ="Change Document Title" click="callWrapper()"/>
Html page has the following function definition:
Hot AI Tools
Undresser.AI Undress
AI Clothes Remover
Undress AI Tool
Clothoff.io
Video Face Swap
Hot Article
Hot Tools
Notepad++7.3.1
SublimeText3 Chinese version
Zend Studio 13.0.1
Dreamweaver CS6
SublimeText3 Mac version
Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...
