Numerous ending }}}}}}}
Can this be consolidated without adding numerous }}}}} when closing the code?
var _this = this;
stage.enableMouseOver(3);
this.front_btn.addEventListener("mouseover", buttonF.bind(this));
function buttonF(){
this.mytext1.text = "Frontal Bone";
this.front_btn.addEventListener("mouseout", buttonF.bind(this));
function buttonF(){
this.mytext1.text = "";
this.nasal_btn.addEventListener("mouseover", buttonF.bind(this));
function buttonF(){
this.mytext1.text = "Nasal Bone";
this.nasal_btn.addEventListener("mouseout", buttonF.bind(this));
function buttonF(){
this.mytext1.text = "";
this.frontal_sinus_btn.addEventListener("mouseover", buttonF.bind(this));
function buttonF(){
this.mytext1.text = "Frontal Sinus";
this.frontal_sinus_btn.addEventListener("mouseout", buttonF.bind(this));
function buttonF(){
this.mytext1.text = "";
this.cg_btn.addEventListener("mouseover", buttonF.bind(this));
function buttonF(){
this.mytext1.text = "Crista Gali";
this.cg_btn.addEventListener("mouseout", buttonF.bind(this));
function buttonF(){
this.mytext1.text = "";
}}}}}}}};
Thank you in advance!
