Quote:
dont understand why you are doing this .

Code:

//string off 255 spaces
STRING* input=str_create("#255");
inkey(input);
while(1)
{
draw_text(input,0,0,COLOR_RED);
wait(1);
}
, how to get this working if you are using a global string?

globally initializing STRING* input_str = "#100"; doesnt work right when I am editing it with inkey and I have no extra space to write letters/numbers.