Wednesday, October 6, 2010
Flint Particle System - Cool Flex Effects
Monday, September 27, 2010
Flare - Flex Data Visualization and Interaction
Today, I read the The Flare Visualization Toolkit from Thomas Burleson. This kit is more organize-chart like and has a few more features I need. It's open source as well(Important!! ^_^).
Don't have time to read all code today, but I think it could be a resource of my project.
Thursday, July 15, 2010
Flex DataGridColumn Percentage By Decimals
Percentage of column width setting is just sit there but undocumented.
It is very simple to use ".25" instead of "25%" in the property of Width value.
But if you set columns to resizable, then it may resize wider when you resize a column.
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:
Flex Examples - numerous Flex examples
flexreport - a discussion of the less intuitive aspects of Flex components and applications
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)
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
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 4My 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
much ado about something - Flex/AIR/Flash Catalyst
Catalyst team:
Sunday, March 22, 2009
draw background for DataGrid columns
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
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.
- Flex 3 Pleloading Explained is new and has upcoming post(not posted yet) to explain the preloading in Flex;
- Custom Flex 3 Lightweight Preloader gives a very good example to build an preloader;
- Implementing A Flex 2 Custom Preloader has one Class from basic implementation of IPreloaderDisplay which is simple and detail explained.
Friday, March 6, 2009
Flex memory leaks and garbage collection
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
Thursday, February 19, 2009
Quick Note: Custom Binding in Flex
It also support 2-way binding, which Adobe Flex should support for binding.
Wednesday, January 14, 2009
Input with PopUp or PopUpInput
- 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.
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.
Wednesday, June 18, 2008
Degrafa : Declarative Graphics Framework
Home: http://www.degrafa.com
The focus behind the Declarative Graphics Framework (Degrafa) is to bring the graphics classes up a level to provide a common ground between developer and designer within Flex, and enable the graphics classes to become first class citizens within the Flex framework.
Code: http://code.google.com/p/degrafa/
Group: http://groups.google.com/group/degrafa/
Open Source: Resize & Move Container
User resizeable container for flex components.
Official website at: http://www.rogue-development.com/objectHandles.xml
A very common UI element found in many applications are those little square handles around an on-screen object that allow you to move & resize it. I haven't been able to find anything like that pre-built in flex, so I've started a project to develop one. It behaves as a container object so you can put any other flex component inside it and get the resizeable functionality right away.
Monday, June 9, 2008
Link: the list of helpful Flex or Flash debug tools
Debugging AS3 with "firebug’s console" combined with "FlashTracer" will take efficiency's advantage.
the list of helpful Flex or Flash debug tools
from: Ntt.cc (http://ntt.cc/)
Link: 36 New, Cool Flex and AS3 Tools, Libraries and Components
36 New, Cool Flex and AS3 Tools, Libraries and Components
By: Sean Moore (http://www.seantheflexguy.com/)
Thought by Bruce (Author of Thinking in Java)
The author is Bruce Eckel who wrote "Think in Java"
ActionScript Collections and Functional Programming
Summary
Not only are basic collections (arrays and associative arrays) tightly integrated into the core language, but arrays provide some sophisticated functional programming support. This article also introduces the creation and use of shared libraries and the basics of prototypes.