Skinnable canvas window: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
Line 6: Line 6:
'''size''' mandatory as [''width, height''] vector, the window dimension.<br />
'''size''' mandatory as [''width, height''] vector, the window dimension.<br />
'''title''' optional as string , the window title. Empty by default.<br />
'''title''' optional as string , the window title. Empty by default.<br />
: e.g.  <syntaxhighlight>var sk = canvas.skinnable.new([575,290]);</syntaxhighlight>
: e.g.  <pre style="color: green"> var sk = canvas.skinnable.new([575,290]);</pre>


== Methods ==
== Methods ==

Revision as of 20:22, 1 March 2018


skinnable.nas implements the skinnable class.

Constructor

new: func(size,title)

size mandatory as [width, height] vector, the window dimension.
title optional as string , the window title. Empty by default.

e.g.
 var sk = canvas.skinnable.new([575,290]);

Methods

Skinnable objects includes 2 methods:

addSkin: func(filename)

filename as the absolute file path. The file must be a .png or a .jpg image.

e.g.
 sk.addSkin("/foo/osc2.png"));