Hey guys,

I'm in the final stages of making a flash website for my design course and I'm having a bit of trouble with the last bit of my coding. hopefully someone can help

I'm using as2 and I'm trying to make movie clips appear when a certain value is shown on a text field I'm using.

Basically I would like a movie clip to be _visible if the value of the text field is between 0-10, or 11-20. What I have so far is something like this...

if(field_txt.Number == 50){
movie clip._visible = true;
}

the problem is the only way that works is if the text field shows 50 exactly. Is there a way to specify that it looks for any number between 50-60...

Hopefully I explained this well enough (still learned flash lingo as I go)

Thanks in advance!