팩토리 » Api
getpopupcount
Description
현재 모달/모달리스 팝업으로 띄워진 화면의 개수를 반환하는 API이다.
Return Value
Type |
Description |
short |
현재 모달/모달리스 팝업으로 띄워진 화면 개수 |
Example
function btnTest_on_mouseup()
{
factory.loadpopup("팝업화면", "/PopupTest", "test", false, XFD_BORDER_RAISED, 0, 0, true, false, screen);
factory.loadpopup("팝업화면2", "/PopupTest2", "test2", false, XFD_BORDER_RAISED, 0, 0, true, false, screen);
}
function btnTest2_on_mouseup()
{
screen.alert("팝업 개수 : " + factory.getpopupcount());
}
Viewer Ver.
9.1.1.1
Update Date
20200319