I am trying to make a little mc convert from celcius to fahrinheit I got the part where it makes the conversion but now I want it to do something else too I put a little thermometer on the side of the text fields and I have 4 frames on my mc each frame showing a different level of mercury for the thermometer so if the tempreture is say above 100 .F I want to show the thermomter on the 4th frame but I cant get it done here is the link to my source file I am using this if statement:
if (Number(fht_txt.text)<=90) {
gotoAndPlay(2);
} else if (Number(fht_txt.text)>=101) {
gotoAndPlay(4);
} else {
gotoAndPlay(3);
}
Thank You
WiKfx
if (Number(fht_txt.text)<=90) {
gotoAndPlay(2);
} else if (Number(fht_txt.text)>=101) {
gotoAndPlay(4);
} else {
gotoAndPlay(3);
}
Thank You