[flexcoders] flash.* packages not found on linux FlexBuilder

2009-05-15 Thread Thierry V.
Hello !! I'm on Ubuntu Intrepid ibex. I installed Java, Eclipse and the FlexBuilder plugin. First I have many problems when I compile, with out of memory errors... Even I change the vmargs with Xmx=1024M the result is the same... But it's not the main problem... I have some problems with the

[flexcoders] lcds references to same item

2008-06-11 Thread Thierry V.
Hello all ! I use LCDS to retrieve data from my database and display it on a tree. I have the following tables : model, model_media and media. I have made an hibernate model mapping with a Set from model to model_media, to get for each model their medias, like this : set name=children

[flexcoders] resourceManager and actionScript updates

2008-05-19 Thread Thierry V.
Hello list, I have a project with the resourceManager to have internationalisation on the application. All works fine when I do my stuff into mxml files, but if I add some actionScript code into AS code-behind classes, the update seems work only if the component has not been viewed. Example

Re: [flexcoders] resourceManager and actionScript updates

2008-05-19 Thread Thierry V.
it extends UIComponent. Gordon Smith Adobe Flex SDK Team *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Thierry V. *Sent:* Monday, May 19, 2008 10:56 AM *To:* flexcoders

Re: [flexcoders] [lcds] create custom assembler to get XML data

2008-05-09 Thread Thierry V.
Hello Robert, This is the case, my destination is linked to the custom assembler. In fact, the way to do that is to create a value object (ie RoomVO) and set 2 variables : id and xmlDoc (as org.w3c.dom.Document). In my custom assembler, I use an arrayCollection and add into a RoomVO instance,

[flexcoders] dataGrid cellRenderer and PropertyChangeEvent

2007-11-20 Thread Thierry V.
Hello, I have added a combobox cellRenderer to an editable datagrid like in this example. I use the propertyChangeEvent of the ObjectProxies array passed as dataprovider to update the data change, but for the combobox, the event seems not triggered. I think it's because the value of the

Re: [flexcoders] extends mx.core.Application with AS2 class in AS3

2005-11-16 Thread Thierry V.
Hi !! Thanks for your answer. It's the only solution ? I do link each control from my mxml to my AS3 class ?? for info : to link twice, I have used following code : myComponent = this['myComponent1']; Thierry Manish Jethani a écrit : On 11/15/05, rastaresidencia [EMAIL PROTECTED]

[flexcoders] how to addChild from as3 class into mxml component

2005-11-16 Thread Thierry V.
Hi list ! I'm from Flash, and like to develop in Form based mode. I try Flex Builder since 2 days, and try to have the same behaviour with Flex application, but have some problems to implement basic interface. I (want to) use AS3 class to make my code, and MXML to display. In my Application