※現在、「wonderfl build flash online」求人コンテンツ制作に関してのアンケートを実施中です!みなさまのお力添えを頂いて、続々とアンケート結果が集まっていますが、まだまだ募集しております。ご協力のほど、どうぞよろしくお願いいたします!
wonderfl運営事務局
→アンケートページ(※ログインしてからお答えいただけるようになっています。)
forked from: code on 2008-12-18 forked from: forked from: code on 2008-12-18
- // forked from hacker_4pqz69ow's forked from: code on 2008-12-18
- // forked from kamipoo's code on 2008-12-18
- // write as3 code here..
- package {
- import flash.display.*;
- import flash.text.*;
- import flash.events.*;
- [SWF(width="465", height="465", backgroundColor="0xFFFFFF", frameRate="60")]
- public class HelloWonderfl extends Sprite {
- private var _txt:TextField;
- public function HelloWonderfl() {
- super();
- _txt = new TextField();
- _txt.text = "Hello Wonderfl";
- this.addChild(_txt);
- _txt.autoSize = "left";
- _txt.x = stage.stageWidth/2;
- _txt.y = stage.stageHeight/2;
- _txt.scaleX = _txt.scaleY = 2;
- this.addEventListener(Event.ENTER_FRAME, enterframeHandler);
- }
- public function init():void {
- }
- private function enterframeHandler(e:Event):void {
- _txt.rotationY += 1;
- _txt.rotationX += 1;
- _txt.rotationZ += 1;
- }
- }
- }
notice: 

