[flexcoders] Tilelist itemrender component access

2008-09-16 Thread David Gironella
I have a tilelist with a itemrenderer, each itemrender component is a canvas, inside canvas I have a public function. How can I execute this public function for each component on tilelist? Thk. Giro.

RE: [flexcoders] Tilelist itemrender component access

2008-09-16 Thread David Gironella
to call those methods from outside of the tileList I suggest you to look at TileBase/ListBase function indexToItemRenderer(index). On Tue, Sep 16, 2008 at 3:33 AM, David Gironella [EMAIL PROTECTED] wrote: I have a tilelist with a itemrenderer, each itemrender component is a canvas, inside canvas I

[flexcoders] Load Complete on tilelist

2008-07-31 Thread David Gironella
I have a tilelist with a dataprovider from an httpservice. I each item render I load an image. Exists some method to know when all images are complete loaded? I can use some events on tilelist to know this. Thanks. Giro.

[flexcoders] Canvas event

2008-07-30 Thread David Gironella
I have this piece of code. mx:Canvas width=500 height=200 mouseOver={trace('over')} mouseOut={trace('out')} backgroundColor=0x342453 mx:Canvas width=200 height=100 x=50 y=50 backgroundColor=0x213424 /mx:Canvas /mx:Canvas When I mouseOver second

[flexcoders] Resource file

2008-07-30 Thread David Gironella
I know I can create string tags easy in resource file. MESSAGE=we are alone. But I can use this tag to complete other tags. Possible example: MESSAGE=we are alone. MESSAGE2= {MESSAGE} and you Giro.

RE: [flexcoders] PopUpManager

2008-07-21 Thread David Gironella
Here can find information: http://blog.flexexamples.com/2007/08/14/changing-a-modal-alert-controls-blur -transparency-and-transparency-color/ Google is your friend!!! Giro. -Mensaje original- De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En nombre de tchredeemed Enviado el:

[flexcoders] Image flip horizontal

2008-07-16 Thread David Gironella
Hi, Any parameter for image component to flip horizontal? I know to do this in AS3 but want to now if I can do this easier. Giro.

[flexcoders] Pass parameters to module

2008-07-11 Thread David Gironella
I use a moduleloader and need to pass parameters to module. How can I do it? Thanks Giro.

[flexcoders] Embedded XML

2008-07-10 Thread David Gironella
Anybody have an example how to embed an XML, and read it on XML object? Thanks. Giro

[flexcoders] ModuleLoader

2008-07-09 Thread David Gironella
How can I pas parameters to a module loaded with ModuleLoader? Can I access to parentApplication from module? Thank, Giro.

[flexcoders] Tag Cloud

2007-10-27 Thread David Gironella
Anybody know where i can find an example of a tag cloud made with Flex? Thk. Giro.

[flexcoders] Prevent color picker open

2007-10-03 Thread David Gironella
I want to place a color picker, but i want to open my own color select panel, how can i prevent color picker to open when click? thk. giro.

[flexcoders] Image control to bitmapdata

2007-10-03 Thread David Gironella
I have this function: public function image_complete(evt:Event):void { bm = myColorWheel.content as Bitmap; bmd = new BitmapData(myColorWheel.contentWidth, myColorWheel.contentHeight); bmd.draw(bm);