can't load old swf on wonderfl.net
anyone else having this issue ? i also tried beautifl.net, no luck there either.
♥0 |
Line 19 |
Modified 2015-09-28 03:07:34 |
MIT License
archived:2017-03-10 08:59:06
ActionScript3 source code
/**
* Copyright WLAD ( http://wonderfl.net/user/WLAD )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/QUv7
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
graphics.beginFill(0);
graphics.drawRect(0,0,1000,1000);
var t:TextField = new TextField();
t.text = "?";
t.autoSize = 'left';
t.scaleX = 15;
t.scaleY = 15;
addChild( t );
t.x = ( stage.stageWidth - t.width ) / 2;
t.y = ( stage.stageHeight - t.height ) / 2;
t.textColor = 0xFFFFFF;
}
}
}