WMP 11 Drop Down Skin

wmpDropDown

A user on the Flex Components Yahoo Group asked about how to skin a pop up box to have an arrow at the bottom of the box. More specifically how to make it look like a pop up button in Windows Media Player 11. I made a quick sample by skinning a combo box using CSS and Flash. You can view it here and download the source here.

I’m getting close to finishing up the iTunes 7 theme, so maybe I’ll make a Windows Media Player 11 Theme to expand upon this drop down skin. I work on a Mac, so I’ll have to go by screenshots available online.

5 Responses to “WMP 11 Drop Down Skin”

  1. Max0n Says:

    Thanks for this nice example i was just looking for some like this. I downloaded the source but there are no mxml nor as files included.. !?

    Cheers, Max0n

  2. juan Says:

    This was done with skinning a ComboBox. To get it to work just drop the style.swf and style.css file into your project. Then reference the style.css file in a mx:Style tag and drop a ComboBox into your Flex project. There’s no AS file.

    This ComboBox is also used in the WMP11 theme I created, which you can get the full source here:

    http://scalenine.com/themes/wmp11/wmp11.html

  3. Max0n Says:

    Awesome! THX 4 the answer. I thought there is AS involved because of the rounded Corners of that Drop down. I didn’t know that i can modify that in CSS. Do u know where exactly the mask for that dropDown is created. I would like to give it rounded corners so that it really looks like the dropDown is coming from behind the comboBox.

  4. Juan Says:

    I was able to get rounded corners on the drop down by doing the following in CSS:

    ComboBox {
    dropDownStyleName: “dropDown”;
    }

    .dropDown {
    cornerRadius:6;
    }

    As far as changing the mask you’d probably have to open the ComboBox.as file and tweak it to do what you want. What that will take, I’m not sure.

  5. kailas Says:

    Good Example Of Skinning

Leave a Reply