Panasonic HMWIN User Manual page 266

Touch
Hide thumbs Also See for HMWIN:
Table of Contents

Advertisement

number y
It gets or sets the Widget 'y' position in pixels.
function btnStd1_onMouseRelease(me) {
var wgt = page.getWidget("rect1");
wgt.y = 10;
}
width
number width
It gets or sets the Widget width in pixels.
function btnStd1_onMouseRelease(me) {
var wgt = page.getWidget("rect1");
wgt.width = 10;
}
height
number height
It gets or sets the Widget height in pixels.
function btnStd1_onMouseRelease(me) {
var wgt = page.getWidget("rect1");
wgt.height = 10;
}
visible
boolean visible
It gets or sets the Widget visible state.
function btnStd4_onMouseRelease(me) {
var wgt = page.getWidget("rect1");
wgt.visible = false;
}
function btnStd5_onMouseRelease(me) {
var wgt = page.getWidget("rect1");
wgt.visible = true;
}
value
number value
It gets or sets the Widget value.
function btnStd6_onMouseRelease(me) {
var wgt = page.getWidget("field1");
wgt.value = 100;
}
opacity
ACGM0195V1EN
HMWIN Studio User Manual
266

Advertisement

Table of Contents
loading

Table of Contents