■ 一定間隔で関数を実行するには

//メインタイムラインのフレームアクション
clearId = setInterval(rotate, 1000, 6);
function rotate(theta) {
hand_mc._rotation += theta;
if (hand_mc._rotation == 180) clearInterval(clearId);
}