Forum rules - please read before posting.

Take Screenshot button

Is it possible to create a button in game to allow players to take screenshots?
I figured there might be a way to hack how screenshots are taken for saved games but couldn't quite wrap my head around it.
Cheers!

Comments

  • ..apparently I can't respond with copy/pasted text? 
  • SImple C# script bud (Figured I'd respond since no one else has :P)

    ScreenCapture sc = new ScreenCapture(); //name of your thingamajob (function)

    Image img = sc.CaptureScreen(); // the thing the thingamajob is going (calling the function)

    this.imageDisplay.Image = img; //the shit it just did 

    sc.CaptureWindowToFile(this.Handle,"C:\\temp2.gif",ImageFormat.Gif);  //write the shit it just did to a file path


Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Welcome to the official forum for Adventure Creator.