source: ComponentRegistry/branches/ComponentRegistry-1.13.0-olha/ComponentBrowserGui/src/main/flex/clarin/cmdi/componentregistry/common/components/DownIconButton.as @ 2320

Last change on this file since 2320 was 2320, checked in by olhsha, 12 years ago

aking caption in context menu dynamic, refactoring rssButton

File size: 384 bytes
Line 
1package clarin.cmdi.componentregistry.common.components {
2        import clarin.cmdi.componentregistry.common.StyleConstants;
3
4        import mx.controls.Button;
5
6        public class DownIconButton extends Button {
7                public function DownIconButton() {
8                        super();
9                        setStyle("icon", StyleConstants.downIcon);
10                        setStyle("paddingTop", 18);
11                        width = 5;
12                        height = 0;
13                        toolTip = "move down";
14                }
15        }
16}
Note: See TracBrowser for help on using the repository browser.