[flexcoders] Can ComboBox display an Image as its LabelField

2008-08-21 Thread kroghadam
Hi, I am trying to create a combo box that displays only images. I can get images being displayed in the drop down list. But when I select one of the images the selected label of the combo box is always text. labelField and labelFunction only display Strings. Is there anyway to display the

[flexcoders] Change TileList ItemRenderer Programatically

2008-08-04 Thread kroghadam
Hi everybody, My current problem involves the need to change how items in my tilelist are being rendered. When a button is clicked I want to switch from one item view to the other. Doesn't seem to hard, my button handler somehow has to reassign the itemRenderer property. Nothing I try succeeds

[flexcoders] Re: Custom Context Menu in flex app

2008-07-29 Thread kroghadam
I think the problem here is that you are using the same name for your menu item as one of the built in menu items. These include forwardAndBack, loop, play, print, quality, rewind, save and zoom. Set the label of your menu item to anything but these and it should work. -Adam --- In

[flexcoders] Re: Custom Context Menu in flex app

2008-07-29 Thread kroghadam
I think the problem here is that you are using the same name for your menu item as one of the built in menu items. These include forwardAndBack, loop, play, print, quality, rewind, save and zoom. Set the label of your menu item to anything but these and it should work. -Adam --- In

[flexcoders] Re: Custom Context Menu in flex app

2008-07-29 Thread kroghadam
I think the problem here is that you are using the same name for your menu item as one of the built in menu items. These include forwardAndBack, loop, play, print, quality, rewind, save and zoom. Set the label of your menu items to anything but these and it should work. -Adam --- In

[flexcoders] Stop execution till Popup is closed

2008-07-20 Thread kroghadam
Hi, I am trying to create a button that when clicked shows a popup, the user then enters information into this popup and clicks create. My main application then takes this information creates an object and uses it as a data provider to show a node on a graph. The problem I am having is that

[flexcoders] Re: Newbie Nested Remote Object Question

2008-07-09 Thread kroghadam
as I'v been stuck on it for some time now. Thanks again, -Adam --Flex Newbie --- In flexcoders@yahoogroups.com, kroghadam [EMAIL PROTECTED] wrote: Hi everybody, I am really enjoying my first look into flex! Unfortunately I have ran into a problem with remote objects to java classes

[flexcoders] Re: Newbie Nested Remote Object Question

2008-07-09 Thread kroghadam
this straight, you have a value object with a property that contains another value object, right? Try... (project.summary as Summary).budget or Summary(project.summary).budget --- In flexcoders@yahoogroups.com, kroghadam akrogh@ wrote: Perhaps I should provide a little more

[flexcoders] Re: Newbie Nested Remote Object Question

2008-07-09 Thread kroghadam
? -Adam --- In flexcoders@yahoogroups.com, kroghadam [EMAIL PROTECTED] wrote: Sorry I am really new to flex, I'm not sure what you mean by value objects. The three classes I gave are Java Classes that are essentially a facade to further backend persistence code. I remote directly

[flexcoders] Newbie Nested Remote Object Question

2008-07-08 Thread kroghadam
Hi everybody, I am really enjoying my first look into flex! Unfortunately I have ran into a problem with remote objects to java classes that have compositions of objects in them. In other words my class has an instance variable that is another object whose data i also want to access, preferably