Wednesday, February 13, 2013

I created great and very helpful gradient tool.
Here is the link.

http://faynzilberg.com/chartGradient/index.html

Tuesday, March 20, 2012

Web Technologies: Flex and HTML5

Web Technologies: Flex and HTML5: After a lot of questions and emails in regards of the possibility of HTML 5 replacing Flex, I decided to write half a page to compare all po...

Flex and HTML5

After a lot of questions and emails in regards of the possibility of HTML 5 replacing Flex, I decided to write half a page to compare all positive and negative aspects around the subject.

After working with Flex for past 6 years and coming from C#-Java backend community I can definitely can say that we all going to move from any RIA apps to HTML5 if and only if HTML5 will evolve into something bigger and better.

What I am saying is: any script or computer language have to have necessary surroundings to be able to grow, attract new developers and make our job a “little bit” faster, better and if you want to use the standard phrase – MORE OFFICIAL and MORE PRODUCTIVE.

With our processors and memory cost, I think the next important key is the human resource performance. The company hiring the developer will spend his/her week of pay for the hardware, another week of pay for software.

After that employees will have to become profitable for the employer. To achieve this employer must be sure that he created work environment and bought all necessary tools for the developer.

Now, you reader understand where I am going to? Flex Builder or plug-in for the eclipse is one click away, adding 2-3 free plug-ins 20 min. job, adding flash debugger 10 minutes. Installing FB 20 min. and you have complete developer environment in 1.5-2 hours with debugger and log and SVN.

Now trying to do the same thing for HTML5 you don’t know where to start. Does anyone know good IDE for HTML5?



To be continued


Monday, January 30, 2012

Code Formatting in Flash Builder 4.5

How to Install Code Formatting in Flash Builder 4.5

First of all  make sure you open Flash Builder with Administrator privileges.

  • In Windows Vista and Windows 7, go to the Flash Builder installation location, right-click the Adobe Flash Builder executable and select Run as Administrator. If prompted, authenticate, and then install the Eclipse plug-ins.
  • In Mac OS X and Windows XP, log in to a user account that has Administrator privileges, and then install the Eclipse plug-ins.

http://flexformatter.googlecode.com/svn/trunk/FlexFormatter/FlexPrettyPrintCommandUpdateSite/

1. Help>Install New Software
2. Use the URL and click add Note – use the name Flex Formatter
3. Select Flex Formatter
4. Next, Next
6. Accept the term of use
7. Click Finish
8. Click okay if you get a message about installing unsigned software
9. Restart flash builder.

Wednesday, June 22, 2011

Web Technologies: Fast Flex Array Search

Web Technologies: Fast Flex Array Search: "private function findInCollection ( c : ArrayCollection , findFunction : Function ): Array { var matches : Array = c . source . f..."

Fast Flex Array Search

private function findInCollection(c:ArrayCollection, findFunction:Function):Array
{
 var matches : Array = c.source.filter( findFunction );
 return matches;
}
private function findFunction(propertyName:String,propertyValue:*):Function
{
   return function( element : *, index : int, array : Array ) : Boolean
   {
    return element[propertyName] == propertyValue;
   }
}


Call the function: var searchedElements:Array=findInCollection(ac,findFunction('recordId',2));