버튼에서 마우스가 up 됐을 때 호출됨
| Parameters | Type | Description | 
|---|---|---|
| object | INSTANCE | 이벤트가 발생한 버튼 오브젝트 | 
| Type | Description | 
|---|---|
| void | 
/**
 * 버튼 마우스 업 이벤트
 * 
 * @param {Object} objInst 버튼 컴포넌트 인스턴스
 */
function btn_on_mouseup(objInst)
{
	var mouse_event_pos_info;
	
	factory.consoleprint("on_mouseup> Start");
	factory.consoleprint("on_mouseup> button Object Name = " + objInst.getname());
	
	// mouse_event_pos_info 정보에 대한 자세한 내용은 getmouseeventpos API 도움말 참조
	mouse_event_pos_info = factory.getmouseeventpos();
}