현재 화면에 Attribute 맵 ID에 해당하는 Attribute 맵의 존재 여부를 반환한다.
| Parameters | Type | Description | 
|---|---|---|
| strAttrMapId | STRING | Attribute 맵 ID | 
| Type | Description | 
|---|---|
| BOOL | Attribute 맵이 존재하는지 여부 | 
function btn_gettranmapid_on_mouseup()
{
	var bFind = screen.findattrmapid("ROLE_A");
	if (bFind) { 
        screen.alert("속성맵 존재");
    }
    else {
        screen.alert("속성맵 없음");
    }
}