News by Enrico Foschi

Flex Tree Search control released

30 Mar 05:18
[ENGLISH] flexcoders has released an interesting tree search control component, with sample and open source. Link: - Sample - Blog Post  [ITALIANO] flexcoders ha rilasciato un componente che consente di effettuare ricerche in un Tree Control, con tanto di esempi e sorgenti.

CS3 - Adobe Suite Pool & Preview

26 Mar 16:18
[ENGLISH] In the last days was born a new blog regarding previews about the new Adobe Suite (CS3)! It’s impressive :)… http://cs3pool.wordpress.com [ITALIANO] E’ nato negli ultimi giorni un nuovo blog relativo a preview della nuovissima suite di Adobe (CS3). E’ impressionante :)… http://cs3pool.wordpress.

Flex Scheduling FrameWork

28 Feb 16:58
[ENGLISH] Soon i will write a tutorial (that actionscript.it will publish too) about Flex Scheduling Framework: Flex components for using calendars, timelines, etc… Please wait… coder @ work [ITALIANO]  Presto scriverò un tutorial (che verrà pubblicato anche su actionscript.it) relativo all’utilizzo del Flex Scheduling Framework: componenti Flex utilissimi per la gestione di calendari, timeline (ed altro ancora…) [...

Left label align with FormItem component (when textAlign attribute isnt working) - Allineamento a sinistra delletichetta del componente FormItem (quando lattributo textAlign non funziona)

15 Feb 15:59
[ENGLISH] Today i was working on a simple, stupid stylesheet setup: I wanted my FormItem instance labels to align to the left side. Unluckely, writing this code: <mx:FormItem textAlign="left" label="looooooooongLabel"> <mx:TextInput id="my_txt1" /> </mx:FormItem> <mx:FormItem textAlign="left" label="shortLabel"> <mx:TextInput id="my_txt2" /> </mx:FormItem> the output was this (the label was always right aligned even if I used textAlign [...

Disabling tree nodes in Flex 2

8 Feb 21:11
[ENGLISH] Well, today i had to disable some tree nodes in my tree view, but i didn’t find how to. In Flex 1 I could directly use the row property in this way: my_tree.rows[node]._alpha = 20; my_tree.rows[node].enabled = false; my_tree.rows[node].onPress = null; In Flex 2, the best way is to work with XMLListCollection object properties. So, I have created an enabled [...

How to include an XML into a DataGrid using custom columns - come includere un XML allinterno di un DataGrid utilizzando colonne personalizzate

2 Feb 17:45
[ENGLISH] Today I am working about registered user views in DataGrid and I have to view all of them in a DataGrid. I can get them by an XML generated by a back-end script. The code i have used is this: <?xml version="1.0" encoding="utf-8"?> <mx:Canvas implements="RMGConnect.Services.RMGIService" xmlns:mx="http://www.adobe.com/2006/mxml" backgroundColor="#009900" width="100%" height="100%"> <mx:Script> <![CDATA[ import RMGConnect.Core.

getDefinitionByName & AS3 reflection

30 Jan 21:36
[ENGLISH] Today i solved an AS3 reflection problem: I wanted to create dynamically a class instance, using a string as class name. So, why have I to make my life so hard? Obviously, for giving more elegance to RMGConnecter, the RIA we are currently developing. It is intended to be a platform that will include many services. We [...