flash on 2010-2-14
♥0 |
Line 11 |
Modified 2010-02-14 09:05:00 |
MIT License
archived:2017-03-20 15:10:38
ActionScript3 source code
/**
* Copyright hacker_yk666qry ( http://wonderfl.net/user/hacker_yk666qry )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/6RLT
*/
package {
import flash.display.Sprite;
import com.bit101.components.Label;
public class FlashTest extends Sprite {
private var label:Label;
public function FlashTest() {
// write as3 code here..
label = new Label(this, 0, 0, "Ikaruga");
addChild(label);
}
}
}