2012-07-11から1日間の記事一覧

as(アナログ時計)

this.onEnterFrame = function(){ var obj_date:Date = new Date(); secondss_mc._rotation = obj_date.getSeconds()/60*360; minutes_mc._rotation = obj_date.getMinutes()/60*360; hours_mc._rotation = obj_date.getHours()/24*720+obj_date.getMinutes(…

as(デジタル時計)

this.onEnterFrame=function(){ var obj_date:Date = new Date(); this.hour_txt.text=obj_date.getHours(); this.mini_txt.text=obj_date.getMinutes(); this.sec_txt.text=obj_date.getSeconds(); }

as(年、月、日の取得)

var now_date:Date=new Date(); yyyy = now_date.getFullYear(); mm = now_date.getMonth()+1; dd = now_date.getDate(); trace(yyyy+"年"+mm+"月"+dd+"日");

as(リップル)

静止テキスと 分解(ctrl+B)、シンボルに変換(真ん中)

7/10授業(メモ)