Hi
how can I do this without having the input box (String could say "Filming") as I just want to save the picture so I can cut around the npc with a bit of the background showing and use it as a Button and then animate it like watching a film?
String input = Game.InputBox("Type the filename:");
input = input.Append(".pcx");
SaveScreenShot(input);
All help appreciated
EDIT: This seems to do the trick:
Display("Filming.");
SaveScreenShot("wksbar1.bmp");
8-)