
private function createButton(_arg_1:String):void {
this.button1_ = this.iconButtonFactory.create(this.imageFactory.getImageFromSet(IMAGE_SET_NAME, NEXUS_IMAGE_ID), "", TextKey.CHARACTER_DETAILS_VIEW_NEXUS, "escapeToNexus");
this.nexusClicked = new NativeSignal(this.button1_, MouseEvent.CLICK, MouseEvent);
this.nexusClicked.add(this.onNexusClick);
this.button1_.x = 172;
this.button1_.y = 415;
addChild(this.button1_);
this.button2_ = this.iconButtonFactory.create(this.imageFactory.getImageFromSet(IMAGE_SET_NAME, OPTIONS_IMAGE_ID), "", TextKey.CHARACTER_DETAILS_VIEW_OPTIONS, "options");
this.optionsClicked = new NativeSignal(this.button2_, MouseEvent.CLICK, MouseEvent);
this.optionsClicked.add(this.onOptionsClick);
this.button2_.x = 142;
this.button2_.y = 415;
addChild(this.button2_);
}