Rzn
Junior Member
Posts: 55
|
Post by Rzn on Nov 1, 2005 21:07:08 GMT -5
MyText=Graphics.text_CreateObject() Graphics.text_SetColor(255,255,255,255,MyText) Graphics.text_SetPosition(200,100,MyText) Graphics.text_SetFont("Arial",11,MyText) Graphics.text_SetVisibility(1,MyText) --text object settings
Input=Windower.script_GetCommand() --get the command call it Input
Output=string.format("Input %s",Input) --format the output Graphics.text_SetText(Output,MyText) --display the output Windower.script_Sleep(7000) --wait Graphics.text_DeleteAll() --delete the text object
|
|