tags:

views:

1217

answers:

1

Hello. I'm trying to skin a button with images.

i added the following css code:

.muteVolumeButton {
    upSkin: Embed(source='images/sound-mute.gif');
    overSkin:Embed(source='images/sound-hover.gif');
    downSkin: Embed(source='images/sound-on.gif');
    disabledSkin: Embed(source='images/sound-mute.gif');

}

when the button is clicked i can't see any images. any ideas ?

+1  A: 

Which version you are using? In Flex 4 you have to use up, over and down. No need to specify upSkin, overSkin etc...for a gumbo package components.

Gopi
i use adobe flash builder 4, thanks i'll try that
ufk
awesome! works, thanks!!!!!
ufk