PDA

View Full Version : Input



Bruce
12-03-2003, 04:07 PM
How would I get rid of some text I have in a "Input" box with the press of a button without highlighting the text first? :confused:

Bruce
12-03-2003, 04:15 PM
There must be an easier way but, this is how I did it:

On mouse over (The button) Input.SetSelection("Input1", 1, -1);
Then on mouse click Input.Delete("Input1");

Worm
12-03-2003, 07:31 PM
Input.SetText("Input1", ""):D

Bruce
12-03-2003, 09:04 PM
Thx Wormster!