Urgent help-problem to b solve - dynamic flash

[color=Navy][color=Black]Check this code .i have to play a movieclip in a scene dynamically according to the values of a text file .i have inserted the movieclip in the scenes movie1 & movie2 but the problem is for the lesser than condition it plays correctly but for the larger than condition it goes into a loop playing both the movieclips.plzz help me in this regard.[/color]

the text file is news.txt
the value is news1={some numeric value}

myData = new LoadVars();
myData.load(“news.txt”);
myData.onLoad = function(success) {
if (success) {
if ((this.news1)<10) {
gotoAndPlay("users ", 1);
trace(“Less than 10”);
} else if ((this.news1)>10) {
gotoAndPlay(“users1”, 1);
trace(“Greater than 10”);
} else {
trace(“Other conditions”);
}
} else {
trace(“There was a problem”);
}
};

expecting ur answer
Andrew
[/color]