쿠키에 있는 값을 가져오는 API이다.
| Parameters | Type | Description |
|---|---|---|
| strCookieName | STRING | 가져오고 싶은 쿠키의 이름 |
| Type | Description |
|---|---|
| INSTANCE | 쿠키 값 |
function btn_on_mouseup(objInst)
{
var strName = "softbase";
factory.setcookie("userInfo", strName);
screen.alert(factory.getcookie("userInfo"));
}