flash on 2011-6-10
♥0 |
Line 12 |
Modified 2011-06-10 14:42:24 |
MIT License
archived:2017-03-20 08:11:45
ActionScript3 source code
/**
* Copyright vijay7003 ( http://wonderfl.net/user/vijay7003 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/9sAJ
*/
package {
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
trace("hello bhawani")
var tx:TextField=new TextField();
tx.text="hello bhawani";
addChild(tx)
}
}
}