Posted by: joseph on: October 14, 2008
Just a quick note about two great articles which were recently published:
ActionScript Collections and Functional Programming by Bruce Eckel
In this article Bruce provides examples and insights into the functional pieces of ActionScript. He also covers some of the lesser known things about Collections. I learned quite a bit from this one!
InfoQ Case Study: NASDAQ Market [...]
Posted by: joseph on: October 14, 2008
<?xml version=”1.0″ encoding=”utf-8″?>
<!– You Tube Player in Flex –>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml”
width=”100%” height=”100%” layout=”vertical”>
<mx:Script>
<![CDATA[
private var youtubevideolink:String = 'http://youtube.com/watch/v/CE9yKXSBARU'
private var youtubeloader:Loader = new Loader;
private function init(youTubeVideoLink:Object):void
{
var req:URLRequest = new URLRequest (String(youTubeVideoLink));
youtubeloader.contentLoaderInfo.addEventListener(Event.INIT, handlerLoaderInit);
youtubeloader.load(req);
}
// Function to play yOU TUBE VIDEO
private function handlerLoaderInit (event:Event):void
{
var urlVars:URLVariables = new URLVariables ();
urlVars.decode (youtubeloader.contentLoaderInfo.url.split("?")[1]);
var flvURL:String = constructYouTubeFLVURL (urlVars.video_id, urlVars.t);
utubeplayer.source =flvURL;
utubeplayer.play();
}
// Function for constructing youtube video [...]
Posted by: joseph on: October 14, 2008
Below is a list of 21 360Flex sessions with links to the videos (UPDATE 9/12/2008 – now 25 videos). You can also view the same videos using Adobe Media Player (AMP). If you use the install badge below, it will automatically add these videos to your favorites list. AMP has the advantage of allowing [...]
Posted by: joseph on: October 14, 2008
21 Flex Videos from 360Flex San Jose 2008
Below is a list of 21 360Flex sessions with links to the
Posted at 7pm on 29/09/08 | Comments Off | Filed Under: Uncategorized read on
SILVERLIGHT 2 RC0 IS AVAILABLE
Microsoft just released Silverlight 2 RC0, which is a development release to help developers prepare their apps for Silverlight 2. They’ve [...]
Posted by: joseph on: October 14, 2008
Faisal Abid :: Developing Flex 2 Applications with ColdFusion and XML Without Needing FDS or Mystic
Tariq Ahmed :: Introduction Articles to Flex and Coldfusion
Posted by: joseph on: October 14, 2008
Judah Frangipane :: Flex quick start guide for PHP developers
Matt Wright :: Everybody Likes CakePHP
Michael Ramirez :: Using AMFPHP 1.9 with the Flex 2 SDK
Renaun Erickson :: Flex AMFPHP and VO’s (RemoteObjectAMF0 update)
Renaun Erickson :: Getting WebORB for PHP Working
Renaun Erickson :: How to use Flex 2 RemoteObjects and PHP with SabreAMF
Renaun Erickson :: Using Flex 2 RemoteObject and SabreAMF
Tibor Ballai :: AMFPHP: [...]
Posted by: joseph on: October 14, 2008
Articles
James O’Reilly :: Flex Primer for the C# Dot Net Developer
Blogs
Graeme Harker’s Flex.NET Blog
Vic On Flex
Tools
Flourine :: “an open source .Net Flash Remoting Gateway”
FluorineFx — theSilentGroup
FluorineFx provides an implementation of Flex/Flash Remoting, Flex Data Services and real-time messaging functionality for the .NET framework.
WebORB for .NET
Posted by: joseph on: October 14, 2008
Primary Resources
BlazeDS API
BlazeDS on Adobe Open Source
BlazeDS Bug Database
BlazeDS Developer Guide :: LiveDocs :: PDF
BlazeDS Forums
BlazeDS Source Code
Guidelines and tutorials for using BlazeDS with Flex Builder 3
BlazeDS in General
Anatole Tartakovsky :: A Quick Analysis of BlazeDS Offering
Brian Deitte :: What’s In Blaze DS?
Bruce Phillips :: Using BlazeDS to Connect Flex to A Java Class That Returns Data From A Database
Cahlan :: Easy [...]
Posted by: joseph on: October 14, 2008
Adobe :: LiveCycle Data Services ES — in depth
Christophe Coenraets :: Building Collaborative Applications with Flex Data Services and Flash Media Server
Christophe Coenraets :: Building database-driven Flex applications without writing (Client- or server-side) code
Christophe Coenraets :: Flex Data Management Services Tutorial
Christophe Coenraets :: InSync: Automatic Offline Data Synchronization in AIR using LCDS 2.6
Christophe Coenraets :: Offline Synchronization using AIR and LiveCycle [...]
Posted by: joseph on: October 14, 2008
Christophe Coenraets :: AIR-to-Desktop Drag-and-Drop: Two Simple Utility Classes
Christophe Coenraets :: Real Time Market Data using Apollo and Flex Data Services
Christophe Coenraets :: SalesBuilder on AIR: Local Database, Data Sync, and Native Drag-and-Drop
Christophe Coenraets :: SQLite Admin Application for AIR
Christophe Coenraets :: SQLQueue: Chaining Asynchronous SQL statements using the AIR database access API
Daniel Dura :: Apollo Multi-Window Support using Flex
Mike Chambers [...]