Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Swordwielder on Thu 19/02/2009 23:00:50

Title: Screenshots(Solved)
Post by: Swordwielder on Thu 19/02/2009 23:00:50
How do you take a screenshot?
Title: Re: Screenshots
Post by: Domino on Thu 19/02/2009 23:04:01
If you are talking about an in game screen shot, use the print screen button on your keyboard then paste it into your graphics program of choice.

I was not really sure what you are asking.
Title: Re: Screenshots
Post by: on Thu 19/02/2009 23:04:08
In a standard AGS game, based on the Default template, just press F12. This creates a screenshot in your game folder. Each keypress will overwrite the last one, though.

Otherwise, start your game, press PrntScrn, open a paint program, and insert your capture.

edit- oops, Domino's getting quicker  ;)
Title: Re: Screenshots
Post by: Domino on Thu 19/02/2009 23:05:52
Last night was the first time I did this inside of an AGS game.  :)
Title: Re: Screenshots
Post by: Swordwielder on Thu 19/02/2009 23:15:44
I need screen shots to put in the in game production forum and I tried to hit print screen but nothing happened. :-[
Title: Re: Screenshots
Post by: on Thu 19/02/2009 23:18:51
Did you try to open Paint and then select Edit, Paste?

Alternatively, add this little function into your game's global script file.

function doScreenshot() {
  String input = Game.InputBox("Type the filename:");
  input = input.Append(".bmp");
  SaveScreenShot(input);
}


And then just call it from any keypress you want.
Title: Re: Screenshots
Post by: Matti on Thu 19/02/2009 23:22:33
1. When you're in-game press the "print" button

2. Open an image editing program and paste the screenshot as a new image

3. Save the image

4. Upload the image somwhere, for example here (http://www.2dadventure.com/ags/upload/upload.html)

5. Use the [ img][ /img] tags to post the screenie in the forum
Title: Re: Screenshots
Post by: Domino on Thu 19/02/2009 23:22:51
To add images to the forums you need a place to host said image.

You can use the link below to host your images or use imageshack or photobucket.

http://www.2dadventure.com/ags/upload/upload.html

to display them in the forums use the code below, but ignore the spaces.

[ img ] Place the URL of where your image is hosted [ /img ]

I always find it hard to describe how to do this, but you'll find it quite easy once you do it a few times.

Good luck.
Title: Re: Screenshots
Post by: Wayne Adams on Fri 20/02/2009 01:16:46
Didn't backread all the way, but Alt Print screen will capture just the ags window if you are in windowed mode... windowed mode makes multi shots back and forth from game to art program much faster.


Alt printscreen in game window.. in art program in new document ctrl V
(This works in photoshop not sure bout other apps.)
Title: Re: Screenshots
Post by: on Fri 20/02/2009 05:39:00
Quote from: Wayne Adams on Fri 20/02/2009 01:16:46
... but Alt Print screen will capture just the ags window if you are in windowed mode...

Useful tip, didn't know that!
Title: Re: Screenshots
Post by: arj0n on Fri 20/02/2009 09:07:21
Quote from: Wayne Adams on Fri 20/02/2009 01:16:46
in art program in new document ctrl V
(This works in photoshop not sure bout other apps.)
Shift INS will also do... ;)