forked from: forked from: flash on 2011-1-17
forked from forked from: flash on 2011-1-17 (diff: 1)
ActionScript3 source code
/**
* Copyright akkey.guitar ( http://wonderfl.net/user/akkey.guitar )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/tk0x
*/
// forked from akkey.guitar's forked from: flash on 2011-1-17
// forked from akkey.guitar's flash on 2011-1-17
package {
import com.bit101.components.*;
import flash.display.*;
import flash.events.*;
public class main extends Sprite{
private var _angle:Number = 0;
public function main(){
stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;
var panel:* = new Panel(this, stage.stageWidth / 4, stage.stageHeight / 8);
panel.setSize(stage.stageWidth / 2, stage.stageHeight * 3 / 4);
new RadioButton(panel.content, 20, 160, "Option 1", true);
new RadioButton(panel.content, 20, 180, "Option 2");
new RadioButton(panel.content, 20, 200, "Option 3");
}
}
}
