Flash Builder and Flash Catalyst betas now on Labs

Posted on 05. Jun, 2009 by admin.

54

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.builder-catalyst

“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.

37

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 remind hospitals Omni International, the efforts that a settlement like this would be more feasible if applied as a last effort after a series of communications that full humanitarian approach has been clogged. But that happens, as we know, is the degree of power that is not in the position of equilibrium.

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.

30

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.

12
Now I want to make use the Show Pop-Up Image. In fact it is simple. To sourcenya I create as below:

<?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.

7
Now this is to remove Duplicate in the array.Eg in the data array B: a,a,b,c,d,c,b.If we want to eliminate data that is the same with function forEach(). This function for example in part removed :

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(”);
}

we just continue to call aja  this function removeDuplicatesViaArray(B);
Thanks

Continue Reading