[flexcoders] add/remove element for spark list

2010-07-26 Thread breizo
HI All, I am trying to add an effect when an element of a spark List is added or deleted. It was quite a breeze with Flex 3, but I am pulling my hair with Flex 4... See example below of what I am trying to do: http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7fa8.html

[flexcoders] How to attach a local file to an email with URLRequest from AIR

2010-03-26 Thread breizo
I am trying to send an email through the default local email system with URLRequest. Tried the example below with no success. Also tried to add " around s with no more success... Has anybody done it before? Thanks var file:File = File.documentsDirectory("myfile.txt"); var s:String = file.url;

[flexcoders] XMLList += operator

2009-12-02 Thread Breizo
Hi, I am a bit puzzled by the XMLList operator +=. I created the following small test code: var xmll:XMLList = new XMLList(); xmll+=; trace(xmll.toXMLString()); addX(xmll); trace(xmll.toXMLString()); private function addX(x:XMLList):void{ x+=; trace(x.toXMLString()); } and I was expecting

RE: [flexcoders] Sandboxed Modules in AIR

2009-10-29 Thread Breizo
y the above framework. A clear message from Adobe on the topic would help not waste all the programmer's time on this. If this doesn't work , at least we know. Thanks Breizo PS: Alex, your posts are usually great, but this topic is getting on my nerves... Alex Harui wrote: > >

[flexcoders] Re: Adobe-like logo maker

2009-10-28 Thread breizo
an Air app. Thanks for the link! Breizo --- In flexcoders@yahoogroups.com, "Wally Kolcz" wrote: > > I thought Degrafa had a logo maker like that. > http://www.degrafa.org/source/CS4IconPreviewer/CS4IconPreviewer.html > > > F

[flexcoders] Adobe-like logo maker

2009-10-27 Thread breizo
Can anybody point me to the Flex example that creates and customizes these nice Fx, Fl, Ai, PS... logos that Adobe has? I played with the application a while back, but I can't find it anymore. Thanks! Breizo

RE: [flexcoders] XMLLIst += operator problem

2009-09-27 Thread Breizo
Thanks Tracy, But complex objects are passed by reference. Right after the assignment in the function, the address of the variable is modified, i.e. += actually creates a new variable... - Breizo Tracy Spratt-2 wrote: > > Hmm, it is acting like the XMLList variable is being passed as a

[flexcoders] XMLLIst += operator problem

2009-09-25 Thread Breizo
Hi, Trying to do a simple element add to a XMLList but running into basic problems. Has anyone already fixed this? When I run the example, I get: when I would expect Any idea? Thanks http://www.adobe.com/2006/mxml"; layout="absolute" applicationComplete="init();"> -- View this