flash on 2010-8-27
♥0 |
Line 11 |
Modified 2010-08-27 07:59:28 |
MIT License
archived:2017-03-20 19:26:47
ActionScript3 source code
/**
* Copyright rfkrocktk ( http://wonderfl.net/user/rfkrocktk )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/nrDz
*/
package {
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
var color:String = "0x990000";
var colorInUint:uint = new uint(color);
this.graphics.beginFill(colorInUint, 1);
this.graphics.drawRect(0, 0, 100, 100);
}
}
}