[flexcoders] Making the background of a spark list transparent

2010-08-06 Thread dorkie dork from dorktown
I can't seem to find it anywhere. Is there a property that I can set to set the white background of the transparent? JP

[flexcoders] Flex 4.1 , automation_spark.swc and OSMF 1.o issues

2010-08-06 Thread superabe superabe
Hi , There seems to an issue when trying to compile in the automation libraries into a Flex 4.1 app that also includes the OSMF1.0 swc. I get the compiler error: "Description Resource Path Location Type 1046: Type was not found or was not a compile-time constant: DimensionEvent. Test Unknown Fle

Re: [flexcoders] DataProvider in AdvancedDataGrid itemRenderer

2010-08-06 Thread Tim Statler
Try {outerDocument.list} or {parentDocument.list} ? http://flextips.corank.com/tech/framed/using-parentdocument-or-outerdocument- Tim On Aug 6, 2010, at 10:44 AM, Davis Ford wrote: Can someone tell me what's wrong with this code? It generates the error: 1120: Access of undefined property li

Re: [flexcoders] How to display a LARGE dataset of images

2010-08-06 Thread Karim Beyrouti
how about an image pool - so you cache a number of images - better if you have thumbnails available to load otherwise, i would recommend resizing the bitmap data ... 2 at once is a lot - if it's a list type thing you want, I found Spark lists with a custom item-renderer worked well with po

Re: [flexcoders] How to display a LARGE dataset of images

2010-08-06 Thread Oleg Sivokon
Just have one Loader and one Bitmap (or probably 16 or about that number in the second case). When you handle the load complete you get the loader's content and draw it to the bitmapdata, remember where it was the last time, load next image, draw again and so on... However it will work, I would ima

Re: [flexcoders] How to display a LARGE dataset of images

2010-08-06 Thread wkolcz
One of those 'community' photo wall type apps. Do you know of an example of your solution or what I should google. Thanks! Sent via BlackBerry by AT&T -Original Message- From: Oleg Sivokon Sender: flexcoders@yahoogroups.com Date: Fri, 6 Aug 2010 23:27:54 To: Reply-To: flexcoders@yahoo

Re: [flexcoders] How to display a LARGE dataset of images

2010-08-06 Thread Oleg Sivokon
Load them and draw to a single bitmapdata and then unload? Anyways, just out of curiosity, what kind of application would need to display that many images at once?

[flexcoders] How to display a LARGE dataset of images

2010-08-06 Thread Wally Kolcz
I have a request to create an application that allows up to 20,000 images to be uploaded and displayed on a component using a DataGroup using a TileLayout. It starts out displaying the images 10px x 10px, then, as you mouse over it, it explands to 50px x 50px. The application starts by displayi

[flexcoders] DataProvider in AdvancedDataGrid itemRenderer

2010-08-06 Thread Davis Ford
Can someone tell me what's wrong with this code? It generates the error: 1120: Access of undefined property list List exists, but it seems like the scope of the DropDownList can't see it? I've seen other example like this...how can I bind to the dataProvider on the list if the property/var live

[flexcoders] Dynamic Validation

2010-08-06 Thread Stephen
Take a dropDownList dynamically created and added to a dynamically created HGroup and placed in a static VGroup. See bellow.. -- protected var cohab_hgroup:Array = new Array(); protected var cohab_gender:Array = new Array(); cohab_gender.pu

[flexcoders] Re: Interface Over Public/Dispatch

2010-08-06 Thread Stephen
Thanks for that, all sorted out now.

Re: [flexcoders] Air loading Swf loading image

2010-08-06 Thread Oleg Sivokon
Julian. That's really not so relevant... if you embed an image, the image goes inside SWF, when you load it, it remains outside of the SWF, just lives somewhere on the HD. When loading, the way you load a SWF may affect the how the player will resolve relative URLs. I believe, that if the SWF is lo

Re: [flexcoders] Air loading Swf loading image

2010-08-06 Thread Oleg Sivokon
When you embed an image, the path is resolved relative to the file, where you put the Embed meta. If you load it, the path is resolved relatively to the file that loads an image.

Re: [flexcoders] Air App loads swf loads image

2010-08-06 Thread Oleg Sivokon
If I can guess, then, probably you've loaded the SWF into the same domain, and if the URLs were relative to the loaded SWF they become relative to the loading SWF. Does it make sense?