지정한 순번의 상태바 아이템에 ticker 효과 설정여부를 확인하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nID | short | 아이템 ID | 
| Type | Description | 
|---|---|
| BOOL | 효과 진행 여부(true, false) | 
function btn_setstatusticker_on_mouseup()
{
	var bStatus = status.getstatusticker(0);
	if(bStatus == true)  {
		screen.alert("ticker 효과설정 true");
	}
	else  {
		screen.alert("ticker 효과설정 false");
	}
}