Sunday, December 13, 2009

Monday, November 23, 2009

Flex Component: Simple Resizable TitleWindow

There's a post on Thunderhead Explorer for simple implementation of re-sizable TitleWindow popup.
The link is Yet Another Resizable TitleWindow.

Thursday, July 23, 2009

A list resources from Flex team's blog:

Blogs from the source

Here's a fairly comprehensive list of blogs maintained by engineers on the Flex, Flash Builder, and Catalyst teams. You'll find plenty of examples, tutorials, tips and tricks, and discussion on new features available in our betas.

(in no particular order :) they're all awesome)

Flex team:

Matt Chotin's Blog

Flex Examples - numerous Flex examples

Flexophile

flexreport - a discussion of the less intuitive aspects of Flex components and applications

Pete's Blog

Daniel Koestler - AIR, Flex, Flash, and other Adobe technology

Peter deHaan - Confessions of a Flex QA

Hans Muller's Flex Blog - a technical blog about the Flex 4 (Gumbo) API (stay tuned for posts about new Flex support for scrolling and layout virtualization)

Flex Butterflies and Bugs - Flex news, workarounds for bugs and solutions for common problems, from a quality perspective

Codependent - graphics and animation with Flex and the Flash platform

Frish's blog - Flex 4 (Gumbo)

iamdeepa on flex

Flexponential - DataGroup, List, virtualization, Flex Component Kit, and more

Quietly Scheming - examples and custom components

Evtimmy - custom layouts

Alex's Flex Closet - examples and discussion of common problems, especially around memory management and item renderers

Tips and Tools of Flex - tools in the Flex SDK

Flex Spaghetti - code samples, tips, and a couple ramblings about the Flex bug database

Just Suppose - UI, Flex, and Flash


Flash Builder team:

Getting and Setting - Builder coding features like refactoring and code generation

mikemo - Builder debugger

Tim Buntel's Web Log - Flex particularly relating to the ColdFusion

Flex Thoughts - Flex charts, general IDE features and DCD (Data Centric Development) features of Builder

Marking Occurrences - Flash Builder language intelligence features such as Find References

Radhakrishna's blog

Flex Automation - Automation of Flex apps

A Flex Enthusiast!

Flex Guard
- Builder DCD for LCDS and BlazeDS servers, using Profiler and Network Monitor features of Builder 4

My Take On Tech - DMV Charts and more to come on PHP workflow (DCRAD)

Exploring Flex - DCD workflow of Builder - details of the wizards that form DCD

Sujit Reddy G – The Evangelist - DCD features in Builder

The GLog (Geek bLOG) - Flash Builder, Eclipse and Java


Catalyst team:

much ado about something - Flex/AIR/Flash Catalyst

Sunday, March 22, 2009

draw background for DataGrid columns

When I read Peter Ent's post about "Coloring the Background of Cells", I need to fill the column in my project, which is programmatically generated, with gradient background fill.
I didn't finish my job at the first try. After I read the post again, I found each column has to be assign a backgroundColor style before DataGrid drawColumnBackground function taking effect.
This function "drawColumnBackground" is called by drawLinesAndColumnBackgrounds function, which is called in updateDisplayList function. So I think I can update each column background by override the updateDisplayList function. I probabely need to update datagrid data as well as column background based on user action.

Friday, March 13, 2009

Reading for Custom Flex Preloader

I've read Ted's Flex 2 Preloader before I implemented a preloader class in my project.
However this class seems not working as I expected. Loading is quite glitch. I found in the code there is time interval to check status and display preloader, which slow down the process of loading animation.
After a couple of months, I retrieve this problem and found some new entries explained in detail how the preloading proceed and which class is not good to be used in preloader class.
I hope I can try to redo this preloader next week for my project.

Friday, March 6, 2009

Flex memory leaks and garbage collection

I read a series of blogs talking about memory leak and garbage collection in Flex.
It's very good resource to gain the knowledge about garbage collection in Flex.
Here is the post and following the other 4 posts from We are the heroes of Web 2.0

Tuesday, February 24, 2009

Good ItemRederer Article

I was used to use itemRenderer to render Datagrid and List, but most case I have to set function or event happened in Renderer and goes to it's owner to get actual action. After I saw this article, it is very good to dynamic load itemRenderer at run time. It also set function as renderer's property then. I can write function directly in the class rather than in renderer to do the job without getting the data from the owner or parent level.

The blog "Example of Feature Rich Dynamic Item Renderers in Flex 3" is from Themorphic Group.

There are also a series of articles from Peter Ent's Blog talking about itemRenderer.

Thursday, February 19, 2009

Quick Note: Custom Binding in Flex

Read this Custom Binding Released! from http://www.xtyler.com/, which claims light and simple.
It also support 2-way binding, which Adobe Flex should support for binding.

Quick Note: FlowContainer

I found a couple of customized flow container in Flex. I can invest them later when my projects need.

Wednesday, January 14, 2009

Auto Complete Input Resources

There are a couple of customized components available, such as
The last one from Hillel Coren seems very nice and suitable for my project.

Input with PopUp or PopUpInput

I recently has to use a pop-up input, which behavior similar to PopUpButton. But PopUpButton name is not editable. ComboBox has the simliar thing but popup do not support UIComponent. So I create a new custom component called PopUpInput. It has the following features:
  • popup can be any UIComponent;
  • because of TextInput, name is editable;
  • customized drop-down arrow icon;
  • can extend the function to save the input text to list.
Click here for demo and source file.
However, this an alpha version of this component, some filters such as drop shadow applied on popup do not transform smoothly as same as popup itself. Also, popup does not do drop down effect when the first time is opened. Let's call it version 0.1. I will update it later as I finish my Java study.