메뉴박스를 화면에 보이게 하거나 숨기는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| is_show | BOOL | 보일지 여부(true, false) | 
| Type | Description | 
|---|---|
| void | 
function menubtn_on_mouseup(objInst)
{
	if(menubtn.isshowmenubox() == false){
		menubtn.showmenubox(true);
	}
	else{
		menubtn.showmenubox(false);
	}
}