You are missing some Flash content that should appear here! Perhaps your browser cannot display it, or maybe it did not initialise correctly.

Recent Blog Post

Usage of FlashOnDesktop component in Flash CS4

In this article, we will show you the usage of FlashOnDesktop component.
Firstly, In order to make Flash CS4 find FlashOnDesktop component, take the same steps as in this AFS tutorial, then launch Adobe Flash CS4, create a new flash file, and add FlashOnDesktop component to the library.
You must first init FlashOnDesktop framework, which is done by following code:

import com.asyncria.FOD;

FOD.init();

Async Flash Studio Tutorial - Write a sample extension (Part 1)

Introduction

Async Flash Studio(AFS) offers interfaces to extend its functions. There are two kinds of extensions, synchronous and asynchronous. Since synchronous extension may block UI actions, asynchronous extension is the recommended kind of extension.

An AFS extension is a dynamic linked library file that implements pre-defined interfaces. The interface header files are located at "sdk" sub-directory in AFS installed directory.

Request and Response

Async Flash Studio Tutorial - Debug in Flex Builder

Flex Builder is a great actionscript 3 developing environment. It provides plenty of functions to help debug your actionscript code, including Call Stack,BreakPoint,Expression Watching,etc. To use the debug function of Flex Builder, A swf or html file must be launched, as show in the following dialog.

For AFS, The swf file is embeded into an execution file. which is not accepted for debugging in Flex Builder. In order to debug your actionscript code in the swf file, you need to launch your execution file by yourself. The steps to do is: