the situation is as a my simulation starts …i have a text entry box.instead of using the normal blinking cursor i am using a movie clip cursor .but right now its showing me both the normal cursor & movieclip cursor also at the same time … can u guys help me hide the normal cursor .
this is the code :[AS]
stop();
Selection.setFocus(“dsgn_txt”);
pressed = false;
callout = eval(“call_model_mc”);
screen_btn.tabEnabled = false;
screen_btn.useHandCursor = false;
screen_btn.onRelease = function() {
screen_btn.enabled = false;
to_btn.enabled = false;
incorrectTry(stepNo);
};
txtVar = “dsgn_txt”;
this.onEnterFrame = function() {
eval(“dsgn_txt”).text = eval(“dsgn_txt”).text.toUpperCase();
if (!pressed && Key.isDown(Key.TAB)) {
pressed = true;
if (eval(“dsgn_txt”).text == “SS1”) {
delete this.onEnterFrame;
play();
} else {
incorrectTry(stepNo);
dsgn_txt.text = “”;
dsgn_txt.type = “dynamic”;
//Selection.setFocus(“var1_txt”);
stop();
}
}
///MOVIECLIP CURSOR CODE//
cur_mc._x = dsgn_txt._x+dsgn_txt.textWidth+2;
};
[/AS]