선택시 이미지를 지정하는 API이다.
| Parameters | Type | Description |
|---|---|---|
| strImageURL | STRING | 이미지 경로 |
| Type | Description |
|---|---|
| void | 없음 |
function setselectimage_on_mousedown(objInst)
{
var imageurl = ratingbar.getselectimage();
if (imageurl == "/star-red32.png") {
imageurl = "/heart_select40.png";
} else {
imageurl = "/star-red32.png";
}
ratingbar.setselectimage(imageurl);
}