flash on 2011-3-19
♥0 |
Line 17 |
Modified 2011-03-19 08:08:59 |
MIT License
archived:2017-03-20 11:00:49
ActionScript3 source code
/**
* Copyright geckojsc ( http://wonderfl.net/user/geckojsc )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/1UTN
*/
package
{
import flash.events.Event;
import flash.display.Sprite;
public class FlashTest extends Sprite
{
public function FlashTest()
{
addEventListener(Event.ENTER_FRAME, update);
this.graphics.beginFill(0x000000);
this.graphics.drawRect(20, 20, 200, 200);
}
public function update(e:Event):void
{
}
}
}