RE: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-11 Thread Alex Harui
: [flexcoders] Re: Trick button into rendering mouseover/mouseout states Do you mean the CSS from the framework? Because the only applicable css I've seen is: LinkButton { /*disabledIcon: null; */ disabledSkin: ClassReference(null); /*downIcon: null; */ downSkin: ClassReference

[flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-11 Thread Tim Hoff
Sent: Thursday, July 10, 2008 10:14 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Trick button into rendering mouseover/mouseout states Do you mean the CSS from the framework? Because the only applicable css I've seen is: LinkButton { /* disabledIcon: null

Re: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-11 Thread Dennis Falling
:[EMAIL PROTECTED] *On Behalf Of *Dennis Falling *Sent:* Thursday, July 10, 2008 10:14 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Re: Trick button into rendering mouseover/mouseout states Do you mean the CSS from the framework? Because the only applicable css I've seen

Re: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-10 Thread Dennis Falling
he wants or what you tried. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tim Hoff Sent: Monday, July 07, 2008 10:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

RE: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-10 Thread Alex Harui
To: [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com mailto:flexcoders%40yahoogroups.com Subject: [flexcoders] Re: Trick button into rendering mouseover/mouseout states Doesn't work if you want to keep the button

Re: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-10 Thread Dennis Falling
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dennis Falling Sent: Thursday, July 10, 2008 12:52 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Trick button into rendering mouseover/ mouseout states I don't know of a way to give a link button a transparent mouse over

RE: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-10 Thread Alex Harui
Subject: Re: [flexcoders] Re: Trick button into rendering mouseover/mouseout states I don't know of a way to give a link button a transparent mouse over background. On Jul 7, 2008, at 2:11 PM, nathanpdaniel [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote

Re: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-10 Thread Dennis Falling
: [flexcoders] Re: Trick button into rendering mouseover/mouseout states So no way that's purely CSS? Is there a reason for me to not use my current hack (invisible PNG skins)? Visually and functionally it's what I want. On Jul 10, 2008, at 5:30 PM, Alex Harui [EMAIL PROTECTED] wrote: Maybe

[flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-07 Thread Tim Hoff
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dennis Falling Sent: Sunday, July 06, 2008 12:43 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Trick button into rendering mouseover/mouseout states Over an alpha background though just setting their colors won't do it. I've done

RE: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-07 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Trick button into rendering mouseover/mouseout states Doesn't work if you want to keep the button icons visible. Wouldn't this also affect embedded fonts? -TH --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Alex

[flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-07 Thread nathanpdaniel
Of Tim Hoff Sent: Monday, July 07, 2008 10:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Trick button into rendering mouseover/mouseout states Doesn't work if you want to keep the button icons visible. Wouldn't this also affect embedded fonts? -TH

[flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-07 Thread Tim Hoff
Subject: Re: [flexcoders] Trick button into rendering mouseover/mouseout states Over an alpha background though just setting their colors won't do it. I've done skins, but when I want a skin with basically nothing visible, would that be any different from what I've made

[flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-06 Thread Tim Hoff
Using a transparent image as the skin is cleanest and easiest. The skins array in Button.as is private, so you'd have to subclass; in order to get to those display objects. You can partially trick the button with myButton.mx_internal::currentSkin.alpha = 0, but that's a real hack; not to

[flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-05 Thread Dennis Falling
I hacked this up by creating a small png that's entirely alpha. Much cleaner than all the CSS required to make an enhanced button skin look plain. It looks great, but are there are any better ways to do this? Thanks On Sat, Jul 5, 2008 at 7:19 PM, Dennis Falling [EMAIL PROTECTED] wrote: