AS3/ActionScript
플래시에서 새로고침하기
닥서클(권오남)
2009. 9. 6. 22:15
startover.addEventListener(MouseEvent.CLICK, removeallFunction);
function removeallFunction (event:MouseEvent):void
{
if (ExternalInterface.available){
ExternalInterface.call("function startover(){document.location.reload()}");
}
}