face2six
07-09-2002, 07:04 PM
I use the folowing code to place two text boxes into a movie clip
but when I test it I can not seem to enter any thing into then
when the mouse passes ove them I get the I bar but It still wont let me enter text.
Im seroiusly confounded cuase this isnt that complicated. I must be missing something obvious.
thanks for any help
_root.login.createTextField("callsign",1, 3, 0, 94,14);
callsign.type = "input";
callsign.variable = "call";
callsign.background = true;
callsign.selectable = true;
þ;
callsign_format = new TextFormat();
callsign_format.font = "arial";
þ;
callsign.setTextFormat(callsign_format);
þ;
þ;
þ;
_root.login.createTextField("password",2, 3, 20, 94,14);
password.type = "input";
password.variable = "pass";
password.background = true;
password.selectable = true;
password.password = true;
þ;
password_format = new TextFormat();
password_format.font = "arial";
þ;
password.setTextFormat(password_format);
þ;
but when I test it I can not seem to enter any thing into then
when the mouse passes ove them I get the I bar but It still wont let me enter text.
Im seroiusly confounded cuase this isnt that complicated. I must be missing something obvious.
thanks for any help
_root.login.createTextField("callsign",1, 3, 0, 94,14);
callsign.type = "input";
callsign.variable = "call";
callsign.background = true;
callsign.selectable = true;
þ;
callsign_format = new TextFormat();
callsign_format.font = "arial";
þ;
callsign.setTextFormat(callsign_format);
þ;
þ;
þ;
_root.login.createTextField("password",2, 3, 20, 94,14);
password.type = "input";
password.variable = "pass";
password.background = true;
password.selectable = true;
password.password = true;
þ;
password_format = new TextFormat();
password_format.font = "arial";
þ;
password.setTextFormat(password_format);
þ;