Browsing All Posts published on »June, 2009«

Building database driven forms FAST in Flash – Flash RAD Framework

June 4, 2009

1

For basic database-transactions (reading and storing data) in most cases, code is created manually for each new project and each new form. In the Flash RAD framework I strive to simplify that process as much as possible, so that building fully working data driven forms is a matter of minutes. The only things you need […]

Formatting numbers in Flash

June 1, 2009

1

This evening I created the following script to format numbers in Flash. I use the “# ### 00” structure to define the delimiters for thousands and to define the decimals separator. Code: function formatNumber(value:String,formatter:String) { /* VERSION: BETA 0.1, Juni 01, 2009 This is a simple method to format numbers Rounding is not included to […]