The Kiwi Project: There are lots of great resources out there on how to skin your Flex applications. Quick recap: Flex supports two approaches to skinning: graphical and programmatic. Graphical skinning involves creating graphical assets in Flash, Photoshop, Fireworks, etc. and embedding them in your Flex application. Programmatic skinning involves creating [...]
Archive for July, 2006
Loading Flex Skins at Runtime
Posted in Flex, GUI on July 29, 2006 | 1 Comment »
Conditional Row Coloring
Posted in ActionScript, Flex, Scriptlet on July 27, 2006 | Leave a Comment »
Tim Hoff has created a grid component which allows the user to set colors conditionally through a style sheet. I can think of many good uses to this feature .
[ Original Link ][ Demo ]
Another Flex Sample
Posted in Uncategorized on July 27, 2006 | 1 Comment »
Check out this application @ http://kss.korax.ru/index.html … Its a very good Flex example. I liked the effective use of table, charts and calendars.
Dual Slider Component
Posted in ActionScript, Adobe, Demo, Flex, Scriptlet on July 26, 2006 | 9 Comments »
By Brendan Meutzner -
Adds a “scrollbar” below the span between a dual-thumb slider which is draggable. When the drag action takes place, both thumbs are moved updating the values of each thumb equally based on the span. If desireable, you can also enable dataTips for each thumb as you’re dragging the scrollbar
[ Read more... ] [...]
QuickDateFormatter
Posted in ActionScript, Flex, Scriptlet on July 26, 2006 | Leave a Comment »
I was looking around for a good date formatter script, when I stumbled across this.
[ Read more... ]
kuwamoto.org » Flex tags and AS classes (the simple version)
Posted in ActionScript, Flex, Scriptlet on July 19, 2006 | Leave a Comment »
One of the most powerful aspects of Flex is that it creates a simple mapping between tags and ActionScript classes. It’s a simple concept, but time and time again, I find that people who don’t know Flex have trouble understanding how this works, or why it would be useful.For those of you who are new [...]
[Mails] $.25 to $0.25
Posted in ActionScript, Flex, Mails on July 19, 2006 | Leave a Comment »
To formnat a long from “.xx” to “0.xx”, this formatter method can be used.
function format2 ( str ):String{
var currencyFormattedString = str;
var a = currencyFormattedString.split(“.”);
currencyFormattedString = currencyFormattedString[0] + “0.” +currencyFormattedString[1];
}
my_lbl.text = format2 ( “$.25″ );
Courtesy: JesterXL
[Mails] Hot Keys
Posted in ActionScript, Flex, Mails on July 19, 2006 | 6 Comments »
Q
We have a requirement wherein the users need to have the ability to have hotkeys /shortcuts to perform certain operations, like (triggering a particular link, submiting a form ).Does Flex platform have a built macro / shortcut support to do something like this?
W
There’s no built-in support in the framework as of now. It’s been on [...]
Peter Ent: Writing Flex 2 Components
Posted in ActionScript, Adobe, Flex on July 17, 2006 | Leave a Comment »
A really good article on creating components.
[ Read more... ]
Faces of Flex
Posted in Adobe, Flex on July 15, 2006 | Leave a Comment »
You see the names almost daily; from blog postings to emails in the forums. I thought it would be fun to put some faces to these names. This is only a small sampling of the many heros of the community, many of the Adobe crew were on vacation so I got what I could and [...]


