SKIN
Root element for the skin. This element is mandatory for the skin to be valid. It describes the skin meta data and main window properties. It inherits properties from CELL element: it is the root cell of the window.
The SKIN element should also be a root element for the contents of KUIML_WIDGET (it's like loading a skin inside a skin). However some SKIN attributes when used inside KUIML_WIDGET may have to effect or be inherited from the parent SKIN.
That's why some of the attributes may not "work" when you're using them in your .kuiml file, because it is loaded inside the main skin via KUIML_WIDGET. The main skin has an .xml extension and is usually called "default.xml", you can find it in plugin's data directory or in user's documents.
Attributes brief detailed show all inherited
Examples
Empty skin with black background (minimum size of a skin is 20x20 pixels, so that the user can click on the background to change the skin)
- <?xml version="1.0" encoding="utf-8" ?>
- <SKIN background_color="#000000" author="Blue Cat Audio" language_version="1.0"/>

Empty skin with 'bg.bmp' image as background:
- <?xml version="1.0" encoding="utf-8" ?>
- <SKIN background_image="bg.bmp" author="Blue Cat Audio" language_version="1.0">
- </SKIN>

Skin with 'bg.bmp' image as background (repeated), with 5 images (black square) shown in a row, spaced by 5 pixels:
- <?xml version="1.0" encoding="utf-8" ?>
- <SKIN author="Blue Cat Audio" name="Skin with Bg" language_version="1.0" background_image="bg.bmp"
- repeat="true" layout_type="row" h_margin="5" v_margin="10" spacing="5">
- <IMAGE image="black_square.bmp" />
- <IMAGE image="black_square.bmp" />
- <IMAGE image="black_square.bmp" />
- <IMAGE image="black_square.bmp" />
- <IMAGE image="black_square.bmp" />
- <IMAGE image="black_square.bmp" />
- </SKIN>
