flash on 2009-8-4
♥0 |
Line 16 |
Modified 2009-08-04 18:17:19 |
MIT License
archived:2017-03-30 09:46:13
ActionScript3 source code
/**
* Copyright hacker_9p8x8mco ( http://wonderfl.net/user/hacker_9p8x8mco )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/vvXL
*/
package{
import flash.display.Sprite;
import flash.events.Event;
import flash.text.TextField;
public class FlashTest extends Sprite{
private var tfX:TextField;
private var tfY:TextField;
public function FlashTest(){
init();
}
private function init():void{
tfX = new TextField();
tfY = new TextField();
}
}
}