Re: [flexcoders] Icons are not displayed in menuItem

2008-09-15 Thread Rajan Jain
gt; To: "flexcoders@yahoogroups.com" Sent: Monday, September 15, 2008 8:03:38 PM Subject: RE: [flexcoders] Icons are not displayed in menuItem I’m surprised it picked up the icon in systemManager. getDefinitionByN ame.  It should have picked it up from document[icon] , which is what I me

RE: [flexcoders] Icons are not displayed in menuItem

2008-09-15 Thread Alex Harui
g the menu's document to your TestComponent instance. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajan Jain Sent: Monday, September 15, 2008 1:49 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Icons are not displayed in menuItem I looked int

Re: [flexcoders] Icons are not displayed in menuItem

2008-09-15 Thread Rajan Jain
roups. com] On Behalf Of Haykel BEN JEMIA Sent: Monday, September 15, 2008 2:06 AM To: [EMAIL PROTECTED] ups.com Subject: Re: [flexcoders] Icons are not displayed in menuItem   I think the problem is else where, because when I use an array of objects to define the menu, the icons get displayed. I al

RE: [flexcoders] Icons are not displayed in menuItem

2008-09-15 Thread Alex Harui
: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Icons are not displayed in menuItem I think the problem is else where, because when I use an array of objects to define the menu, the icons get displayed. I also displayed both menus at the same time and only the one defined from the array of

Re: [flexcoders] Icons are not displayed in menuItem

2008-09-15 Thread Haykel BEN JEMIA
gt; > *if*(myMenu == *null*) > > { > > myMenu=Menu.createMenu(*this*, myMenuData,*false*); > > myMenu.iconField=*"@icon"*; > > myMenu.labelField=*"@eventName"*; > > myMenu.show(200,200); > > } > > } > > } > > } > > > >

RE: [flexcoders] Icons are not displayed in menuItem

2008-09-14 Thread Alex Harui
false); myMenu.iconField="@icon"; myMenu.labelField="@eventName"; myMenu.show(200,200); } } } } - Original Message From: Alex Harui <[EMAIL PROTECTED]> To: "flexcoders@yahoogroups.com" Sent: Sunday, Septe

Re: [flexcoders] Icons are not displayed in menuItem

2008-09-14 Thread Rajan Jain
lexcoders@yahoogroups.com" Sent: Sunday, September 14, 2008 1:09:59 AM Subject: RE: [flexcoders] Icons are not displayed in menuItem I think it should just be ( no curlys ):                       From:[EMAIL PROTECTED] ups.com [mailto:flexcod

RE: [flexcoders] Icons are not displayed in menuItem

2008-09-13 Thread Alex Harui
I think it should just be ( no curlys ): From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajan Jain Sent: Saturday, September 13, 2008 8:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Icons are not

[flexcoders] Icons are not displayed in menuItem

2008-09-13 Thread Rajan Jain
Hi All I am trying to display icon in the menu. I am using example from livedocs language reference. I have added icon attribute to dataprovider myMenu.iconField="@icon" but icons are not displayed. Any pointers are highly appreciated. Thanks Rajan --