◆HTML 소스

[스크랩] 무비클립에 붙어넣을 스크립트 소스(요일시계)

꿀꿀단지 2017. 11. 26. 11:43

무비클립에 붙어넣을 스크립트 소스

onFrame (1) {weekName = ["", "", "", "", "", "", " "];
var today = new Date();
var thisY = today.getFullYear() + " ";
var thisM = today.getMonth() + 1 + " ";
var thisD = today.getDate() + "";
var thisW = weekName[today.getDay()] + "요일";
date.text = thisY + thisM + thisD + thisW;
}
function setDigit(getTime) {
  var rtnTime;
  if (getTime <10) {
  rtnTime = "0"+getTime;
    } else {
        rtnTime = getTime;
    }
    return rtnTime;
}
onSelfEvent (enterFrame) {
    cntTime = new Date();
    thisHour = setDigit(cntTime.getHours());
    thisMin = setDigit(cntTime.getMinutes());
    thisSec = setDigit(cntTime.getSeconds());
    time.text = thisHour + ":" + thisMin + ":" + thisSec;
}


출처 : 실버님들 사랑방~~☆★☆
글쓴이 : 들국화 원글보기
메모 :