Re: [flexcoders] genie effect, i need help

2008-10-18 Thread Carlo Gulliani
ok, no problems, but can you help me to solve question? - Original Message From: Carlos Rovira <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Cc: Raul Diaz Torres <[EMAIL PROTECTED]> Sent: Saturday, October 18, 2008 7:49:47 PM Subject: Re: [flexcoders] genie effect, i need help Hi

Re: [flexcoders] what is a String? (default encoding question)

2008-10-18 Thread Pan Troglodytes
Do you mind asking around? I'd hate to base my conclusions on timing tests rather than just being told by the people who write the code. Thanks! On Fri, Oct 17, 2008 at 7:08 PM, Gordon Smith <[EMAIL PROTECTED]> wrote: >I think AS3 uses UTF-16 internally, but I'm not sure about that, and it

[flexcoders] Re: Will Papervision 3D be available for use in Flex Builder 3 ???

2008-10-18 Thread gwangdesign
So now I see that mx.core.UIComponent has a property "z" and I am curious if this is something that relates to 3D. I was trying to set this z for the same Button in Flex but it doesn't make any difference at FP 10. Also anyone can give and hints as to how to use z (if possible) in effect (I was tr

Re: [flexcoders] Modules: taking the plunge

2008-10-18 Thread Maciek Sakrejda
Another, more specific question here: If my main application defines a set of AMF endpoints in the services-config.xml file, but it can load arbitrary modules which can specify their *own* AMF endpoints, is there a sensible way to manage that? It seems like I need a single services-config.xml file

[flexcoders] Re: Crazy DataGrid display of XMLListCollection

2008-10-18 Thread Tim Hoff
Hi, If the dataProvider is [Bindable], the DataGrid should reflect the changes to the dataProvider; when the dataProvider is changed. For the itemRenderer question, here's one way to update the display list: override public function set data(value:Object):void { if (value != null) {

[flexcoders] Crazy DataGrid display of XMLListCollection

2008-10-18 Thread edlueze
I am trying to update the display of an XMLListCollection in a 2-column DataGrid but I am getting crazy results. The XMLListCollection contains following data: 1AAA 2BBB 3CCC 4DDD I am providing the user with two buttons to raise or lower the content within the XMLListCollection. For example, if

Re: [flexcoders] genie effect, i need help

2008-10-18 Thread Carlos Rovira
Hi Carlos This effect was developed by Raul Diaz, a team member of Made In Flex, the Spanish Flex/AIR Community. You can get the code here: http://www.madeinflex.com/2008/01/29/efecto-aladino-genie-effect/ other related links: http://www.madeinflex.com/team/#toc-raul-diazhttp://www.madeinflex.c

Re: [flexcoders] Syntax of using a variable to make an object

2008-10-18 Thread John Fisher
Thanks Paul. Paul Andrews wrote: > > > The curly bracket syntax is for compile time declaration only where the > compiler knows all of the values at the time of compilation. In your example > variables are involved so the compiler gives you an error. > "AHA" he said. > Generally speaking the

[flexcoders] Crazy Memory Leak with backgroundImage on Canvas ?

2008-10-18 Thread Stephane Guyot
Hi list, I've spent many hours tracking memory leaks in an application that I don't write myself. The application may load a lot of Images, Bitmaps but I finally discover that most of the memory was eat by backgoundImage on Canvas !!! I remove all the background images ( o

Re: [flexcoders] Syntax of using a variable to make an object

2008-10-18 Thread Paul Andrews
- Original Message - From: "john fisher" <[EMAIL PROTECTED]> To: Sent: Saturday, October 18, 2008 1:40 AM Subject: [flexcoders] Syntax of using a variable to make an object >I am stuck on some basic AS syntax. > > Here is some Adobe sample code: > > [Bindable] >public var dpac:

[flexcoders] Modules: taking the plunge

2008-10-18 Thread Maciek Sakrejda
I'm trying to refactor some parts of our existing app into Flex Modules, and, more importantly, simplify further extensions through supporting Modules. I've been reading up the Adobe docs on this, and it seems reasonably straightforward, but I wanted to ask if there are any gotchas and such to watc