버튼의 tooltip_showtype 속성값을 가져오는 API이다.
Type | Description |
---|---|
short | tooltip_showtype 속성값 |
function btn_on_mouseup()
{
var tooltip_showtype;
tooltip_showtype = btnTest.gettooltipshowtype();
factory.consoleprint("tooltip_showtype = " + tooltip_showtype);
if (tooltip_showtype == 1) {
btnTest.settooltipshowtype(2);
}
else {
btnTest.settooltipshowtype(1);
}
tooltip_showtype = btnTest.gettooltipshowtype();
factory.consoleprint("tooltip_showtype = " + tooltip_showtype);
}