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 displa

Re: [flexcoders] icons

2007-03-24 Thread Troy Gilbert
http://famfamfam.com/ On 24 Mar 2007 13:54:27 -0700, Steve Hagenlock <[EMAIL PROTECTED]> wrote: http://www.iconbase.com/ There are many others... you can purchase icon libraries from places like this. -Steve Kevin wrote: > Where do people go to get small icons for use in Flex apps? I need

Re: [flexcoders] icons

2007-03-24 Thread Steve Hagenlock
http://www.iconbase.com/ There are many others... you can purchase icon libraries from places like this. -Steve Kevin wrote: > Where do people go to get small icons for use in Flex apps? I need > the little things like arrows & check marks. For example I would > like to display a "check m

RE: [flexcoders] Icons disappear from Menu at Compile Time

2007-03-22 Thread Alex Harui
It's not a bug. It has to do with variable scoping. I'll assume you have data like { label: "foo", icon : "myTopIcon" } The icon property is a string, not a class. The menu renderer wants a class. You could set up your data like: { label: "foo", icon: myTopIcon } Then icon is a

RE: [flexcoders] Icons on TabBar or ToggleButton Bar

2007-03-20 Thread Phil Chung
You should use the "icon" property of the containers in your ViewStack (in your example, Canvas). That should do the trick. If you wanted, you can also set the iconField property of your ToggleButtonBar or TabBar to use a custom property value (instead of "icon"). Phil -Original Message--

RE: [flexcoders] Icons formerly included in Flex SDK (Beta)

2006-10-09 Thread Matt Chotin
I think the icons were only in 1.5, I’m not sure of any icons we included in Flex 2 unless it was by mistake.   If you have the icons you are probably welcome to use them though, I don’t remember there being restrictions.   Matt   From: flexcoders@yahoogroups.com [mailto:f

Re: [flexcoders] Icons in menu - not working

2006-08-25 Thread Doug Arthur
k to static embedded images.  I use them very successfully for button icons.   - Kelly From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Deepa SubramaniamSent: Wednesday, June 28, 2006 4:46 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Icons in

Re: [flexcoders] Icons in Datagrid

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 23:37, Josh Johnson wrote: > In re-creating the application, one of the issues I'm stumped on is > how to get icons in a data grid cell. Ideally, I want to key off an You'll need to create what is known as an itemRenderer: http://livedocs.macromedia.com/flex/2/docs/0

RE: [flexcoders] Icons in menu - not working

2006-06-28 Thread Deepa Subramaniam
[mailto:[EMAIL PROTECTED] On Behalf Of Kelly Birr Sent: Wednesday, June 28, 2006 4:48 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Icons in menu - not working   I found my problem.  It appears that the menu cannot bind to static vars for images.  I solved the problem by specifying

RE: [flexcoders] Icons in menu - not working

2006-06-28 Thread Deepa Subramaniam
] On Behalf Of Kelly Birr Sent: Wednesday, June 28, 2006 4:48 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Icons in menu - not working   I found my problem.  It appears that the menu cannot bind to static vars for images.  I solved the problem by specifying { public const

RE: [flexcoders] Icons in menu - not working

2006-06-28 Thread Kelly Birr
I found my problem.  It appears that the menu cannot bind to static vars for images.  I solved the problem by specifying { public const myMenuIcon:Class = GlobalIcons.MyCoolIcon; }  where GlobalIcons.MyCoolIcon is declared exactly as below. Then pout the local name "myMenuIcon" in the @ic

RE: [flexcoders] Icons in menu - not working

2006-06-28 Thread Deepa Subramaniam
Hmmm – well our Embed expert says that you can make the variable for the embedded asset static, but that seems to be your problem. I’ll file a bug on your behalf, but for now, don’t make exitOn static and the icon should show up.   Let me know if it doesn’t –   Deepa Flex SDK    

Re: [flexcoders] Icons Buttons

2006-05-12 Thread Michael Schmalle
Not to mention, This is a perfect example of where an MXML component is perfect. Peace, MikeOn 5/12/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: Hi, You just need to create a Skin class that has no graphics for the upSkin style. Set labelPlacement to 'bottom' Adjust padding and you are s

Re: [flexcoders] Icons Buttons

2006-05-12 Thread Michael Schmalle
Hi, You just need to create a Skin class that has no graphics for the upSkin style. Set labelPlacement to 'bottom' Adjust padding and you are set. See the docs Skinning programatically section for more info on how to create the ButtonSkin class. Peace, MikeOn 5/12/06, s_hernandez01 <[EMAIL