Video and Image Capture Using Flex

Leave a comment

Simple Webcam Capture Demo for Flex

http://www.davidortinau.com/blog/simple_webcam_capture_demo_for_flex/

Build Your Own Video Recorder Using Flex

http://tdotblog.info/?q=node/

 

http://nehuln.blogspot.com/2009/12/adobe-flex-video-and-webcam-combo.html

Performance of Large Data in DataGrid

Leave a comment

http://cookbooks.adobe.com/post_How_can_we_speed_up_the_performance_of_DataGrid_wh-12211.html

http://www.adobe.com/devnet/flex/articles/itemrenderers_pt5.html

http://www.jamesward.com/census/

Flex 3 vs Flex 4

Leave a comment

http://www.adobe.com/devnet/flex/articles/flex3and4_differences.html

Setting the properties of an itemRenderer

Leave a comment

http://cookbooks.adobe.com/post_Setting_the_properties_of_an_itemRenderer_from_MXM-5762.html

Flex Application Debug

Leave a comment

http://www.oreillynet.com/pub/a/oreilly/digitalmedia/helpcenter/programmingflex3/chapter18.html

Install Eclipse WTP

Leave a comment

http://confluence.sakaiproject.org/display/BOOT/Install+Eclipse+WTP

Creating a combined Flex/Java project in Flex Builder w/o LCDS/BlazeDS

Leave a comment

http://corlan.org/2008/06/05/creating-a-combined-flexjava-project-in-flex-builder-wo-lcdsblazeds/

Adobe Dashboard

Leave a comment

http://examples.adobe.com/flex3/devnet/dashboard/main.html

Communication between Flex and Javascript

Leave a comment

From Enterprise Development with Flex by Yakov Fain, Anatole Tartakovsky, Victor Rasputnis

The ExternalInterface Class

Flex can communicate with JavaScript using an ActionScript class called ExternalInterface. This class allows you to map ActionScript and JavaScript functions and invoke these functions either from ActionScript or from JavaScript. The use of the class ExternalInterface requires coding in both languages.

For example, to allow JavaScript’s function jsIsCalling() to invoke a function asToCall(), you write in ActionScript:

ExternalInterface.addCallback("jsIsCalling", asToCall);

Then, you use the ID of the embedded .swf (e.g., mySwfId set in the HTML object) followed by a JavaScript call like this:

if(navigator.appName.indexOf("Microsoft") != -1){
    window["mySwfId"].asToCall();
} else {
document.getElementById("mySwfId").asToCall();
}

Click and Double Click in Flex

Leave a comment

http://raghuonflex.wordpress.com/2007/08/10/assigning-different-behaviors-on-click-doubleclick/

Older Entries

Follow

Get every new post delivered to your Inbox.