I was just wondering how do you take focus off the client and put it back onto the script for example a progress report, its must be something really simple![]()
I was just wondering how do you take focus off the client and put it back onto the script for example a progress report, its must be something really simple![]()
I don't really undrstand what you mean, do you mean how do you switch onto SCAR while yuo are running a script, if it is then just press cntrl+alt+s to stop it then manually click back onto the SCAR window
No i meant say your script is running, then it finished and you want to make a progress report how do you do that?
So you want help making a whole new progress report.
If you do, what things do you want it to say?
Well im just making my first script at the moment so its basically an autotalker, i just want to add a progress report to it, its only got 2 variables, a
"Times": integer to make the loop user controled(count Controlled)
"Text": The text that was said
SCAR Code:writeln('texthere');
writeln(inttostr(1));
addtoreport('text');
addtoreport(inttostr(1));
WriteLn-writes to the debug box.
AddToReport-writes in the report box.
Thanks alot i knew it was something simple![]()
no worrys. im glad i could help.
If you are putting the time it is running do this
SCAR Code:Procedure ProgressReport;
Begin
WriteLN('Ran for' + TimeRunning + '.')
End;
or if you want it in the report box
SCAR Code:Procedure ProgressReport;
Begin
addtoreport('Ran for' + TimeRunning + '.')
End;
And if you wanted the times it typed then you make TimesTyped a variable or something and do the same thing as above except with TimesTyped
Hope this helped
There are currently 1 users browsing this thread. (0 members and 1 guests)