[flexcoders] Re: Position custom Tooltip

2008-04-29 Thread ezderman
] On Behalf Of ezderman Sent: Monday, April 28, 2008 3:01 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Position custom Tooltip I created a custom Tooltip that extends Panel. I am attaching the tooltip like this but I can not position the tooltip where I want it. I can rotate

[flexcoders] Custom Tooltip flicker on Rollover

2008-04-29 Thread ezderman
I am creating a custom tooltip that is a Canvas base. I am skining the Canvas background with a flash symbol. When I roll over the button the tooltip flicker like it stuck between over and out state. Any Help?? Here are the two functions that call the tooltip private function

[flexcoders] Re: Custom Tooltip flicker on Rollover

2008-04-29 Thread ezderman
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ezderman Sent: Tuesday, April 29, 2008 12:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Custom Tooltip flicker on Rollover I am creating a custom tooltip that is a Canvas base. I am skining the Canvas background with a flash

[flexcoders] Position custom Tooltip

2008-04-28 Thread ezderman
I created a custom Tooltip that extends Panel. I am attaching the tooltip like this but I can not position the tooltip where I want it. I can rotate it. any idea??? here is my code. Thanks ?xml version=1.0? !-- tooltips/MainCustomApp.mxml -- mx:Application

[flexcoders] combobox reset itsfelf after resize component.

2008-02-13 Thread ezderman
Hi, I have a TileList that has combobox as item_renderer. When I am setting the tilelist.rowCount() only the the first rendered combobox reset itself( slectedIndex=0). If I am changing the width of the Tilelist container( canvas) all the comboboxes are reset to selectedIndex=0. how an i force the

[flexcoders] Control the color of disabled component

2008-02-11 Thread ezderman
Hi, How can I control the color of disabled component. when I do component.enabled=false the component turn to white with some alpha value. I tries to set the disableColor property but it doesnt work Thanks - Mo

[flexcoders] Re: Control the color of disabled component

2008-02-11 Thread moshe ezderman
Thanks Vadim. It works. I cant believe I didnt see it - Never miss a thing. Make Yahoo your homepage.

[flexcoders] changing the color of enabled UI Component

2008-02-10 Thread ezderman
Hi, When I am disabling my UI COmponent for example myViewStack.enabled = false, the component change color to white with some alpha. How can I control the appearance of that. I dont want any indication when the component is enabled. I tried disableColor style attribute but it didnt do anything.

[flexcoders] issues with multiple module and HTTPService

2008-02-08 Thread ezderman
Hi, I am loading the same 5 modules in my app. Each module is using HTTPService to get an xml file. Each module is waiting on ResultEvent however only the first module get the result event. Actually the first module get 5 ResultEvent from all the other module. anyone came accross this

[flexcoders] Re: issues with multiple module and HTTPService

2008-02-08 Thread ezderman
to use a shared set of destinations and channels defined in your root swf currently. Best, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ezderman Sent: Friday, February 08, 2008 2:44 PM To: flexcoders@yahoogroups.com Subject

[flexcoders] flex profiling

2008-01-20 Thread ezderman
Hi, Does anyone has tips or links of how to analyze flex profiling. I have problem with my application. every time I am adding a component or Module to my page, the memory usage in the profile indicates increase. The memory usage does not go down. Even when when I am not interacting with the

[flexcoders] get list of my item renderer

2008-01-18 Thread ezderman
I have a TileList and I am trying to get reference to each item renderer. I read about of a protected property called listItems that return an array of the itemRenderer but I am not sure how to implement it. I am extending the TileList class but how do I implement the property to return the

[flexcoders] Re: Copy an Array collection in AS

2008-01-14 Thread ezderman
http://flexed.wordpress.com/2006/12/21/copy-2-arraycollections/ --- In flexcoders@yahoogroups.com, jovialrandor [EMAIL PROTECTED] wrote: I want to copy a certain property (companyInfo2.RELATED_ASSET_ID) of one arraycollection to another arraycollection (asset_id). how do I go about

[flexcoders] Re: Copy an Array collection in AS

2008-01-14 Thread ezderman
ArrayCollection( ac1.source.concat () ); On 1/14/08, ezderman [EMAIL PROTECTED] wrote: http://flexed.wordpress.com/2006/12/21/copy-2-arraycollections/ --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, jovialrandor jovialrandor@ wrote: I want to copy a certain property

[flexcoders] Skinning VScrollBar - how to control the size of the thumb

2008-01-13 Thread ezderman
I am skinning a VScrollBar and I am trying set the thumb to a fixed size. currently the thumb is stretches depend on the size of the content. how can I set the thumb that it wont change its size?