[Tools][Expand/Collapse All]Note that automatic extraction of ActionScript 3 is still pretty much unsupported by swfchan. AS1/AS2 works okay most of the time.Frame 1 (284 B)
time = new Date();
seconds = time.getSeconds();
minutes = time.getMinutes();
hours = time.getHours();
hours = hours + (minutes / 60);
seconds = seconds * 6;
minutes = minutes * 6;
hours = hours * 30;
sec._rotation = seconds;
min._rotation = minutes;
hour._rotation = hours;
Instance of Symbol 13 MovieClip "sec" in Frame 1 (76 B)
onClipEvent (enterFrame) {
this._rotation = this._rotation - _root.speed;
}