Cairngorm is available for both Flex 1.5 and Flex 2/3. All future efforts will be focused on the version for Flex 3 and all references to Cairngorm in this article refer to Cairngorm for Flex 2/3, unless otherwise stated.
Cairngorm and Cairngorm Enterprise
At the time of the release of Flex 2, portions [...]
Continue Reading
Video Tutorial created by Neil Webb showing how to write the Hello World example using PHP.
Continue Reading
RUSLI ZAINAL lahir di desa Bolak, Kecamatan Mandah, Kabupaten Inhil, 3 Desember 1957. Semasa kecil, Rusli menjalani hidup seperti anak kebanyakan. Seperti dituturkan abang kandungnya, kepada tabloid PONDASI, Rusli kecil juga sedikit manja dan bandel. ?Sewaktu masih anak-anak, ia termasuk anak yang bandel tetapi manja. Ya… karena mungkin ia anak bungsu, jadi seperti itulah,? ujarnya. [...]
Continue Reading
Simply … I would like to participate in the seminars and workshops. Please see the flyer below so:
( Opportunity to meet directly with Flex Community Manager [ Fathi ], [ Mas Anggie ] and Mas Angga )
and also the opportunity to direct the Team BelajarBareng.net
Continue Reading
Now this would effect a simple resize. The results do like this:
Continue Reading
Flash Builder and Flash Catalyst betas now on Labs
Posted on 05. Jun, 2009 by admin.
Today, we announced that the first public beta releases of Flash Catalyst and Flash Builder (previously known as Flex Builder) are available on Adobe Labs.
“Design in Mind” was one of the core themes for this release, and these tools, together with the updated Flex 4 SDK, deliver on that to make it easier than ever create high fidelity, rich Internet applications that target the Flash Platform.
We’ve published a lot of information to help you get started with these beta releases and hope that you’ll have an opportunity to give us your feedback in the forums, so that the final releases of Flash Builder and Flex 4 SDK, due later this year, are ready for prime time.
For information on what’s new, check out the following articles:
For more articles, tutorials and videos head to the Adobe Developer Connection site.
And the original site on here
Continue Reading
Because the e-mail enter prison
Posted on 03. Jun, 2009 by admin.
In the limit of its ability, a mother calls keluhannya through sharing experiences with the facilities that he understood and kuasai. He sent e-mail to some friends. A common form of communication between the citizens of modern society. Then e-mail that spread.
The issue will not be extended if the parties referred to in the complaint that take the bull by the wise, with a humane approach, and then announced that the problem has been solved together.
But that happens is criminalization. Mother of two children under five, the name Prita Mulyasari, by the parties that he keluhkan, ie, Omni International Hospital, Alam Sutera, Tangerang, faced criticism over civil and criminal. During the trial, the mother be in jail in Tangerang Women’s correctional facility, separated from their families, from their children.
One mother, who is also the consumers, faced with a corporate that has all the advantages through the power of the approach. But in a healthy business practices more polite, such a complaint should be resolved through communication. There are explanations, there is the process of mutual listening, there is an effort to sit through the issues together.
Please read the story you see in the link. Our issue now is the high-handedness so that together we must defend freedom of thought
We percussion of the law enforcement world. We remind that the sense of justice inherent in the law that all slaves bernurani. It is better to free a person (not necessarily) rather than punish those guilty of not guilty.
We support this and perjuangkan to all internet users through the banners and message broadcasting
Today is Mother Prita. If left, the next you are. But as consumers for products and services of any kind, you have the right voice
Continue Reading
Create Custom Preloader
Posted on 02. Jun, 2009 by admin.
This is now how to make a simple preloader of the Flash to enter in Flex. First, open your Flash Document and then create a kind of preloader. I create simple and the result as below :
Continue Reading
Show Image as Pop Up (Simple)
Posted on 29. May, 2009 by admin.
<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml”
layout=”absolute”
verticalAlign=”middle”
backgroundColor=”white” >
Continue Reading
How to remove Duplicates from an Array
Posted on 27. May, 2009 by admin.
private function removeDuplicatesViaArray(string:String):String
{
var arr:Array = string.split(”);
var currentValue:String = “”;
var tempArray:Array = new Array();
arr.sort(Array.CASEINSENSITIVE);
arr.forEach(
function(item:*,index:uint,array:Array):void
{
if (currentValue != item)
{
tempArray.push(item);
currentValue = item;
}
}
);
return tempArray.sort(Array.CASEINSENSITIVE).join(”);
}











