Hello community!
I wanted to share an AutoHotkey script to you that I use to take high res screenshots in 4096x2160.
To use it install AutoHotkey. Double click on the ahk file. Run spaceengine in windowed mode and press F12 to force the window size. Press F12 again to restore your window size. You can edit the script it to any resolution that you prefer!
Here is a more in depth instructional guide:
https://nirklars.wordpress.com/2015....enshots
Copy and paste the following code into notepad or any other plain text editor. Save as highresscreenshots.ahk or whichever you like as long as you end with the .ahk file extension.
Code
F12::
WinGet, TempWindowID, ID, A
If (WindowID != TempWindowID)
{
WindowID:=TempWindowID
WindowState:=0
}
If (WindowState != 1)
{
WinGetPos, WinPosX, WinPosY, WindowWidth, WindowHeight, ahk_id %WindowID%
WinSet, Style, ^0xC40000, ahk_id %WindowID%
WinMove, ahk_id %WindowID%, , 0, 0, 4096, 2160
}
Else
{
WinSet, Style, ^0xC40000, ahk_id %WindowID%
WinMove, ahk_id %WindowID%, , WinPosX, WinPosY, WindowWidth, WindowHeight
}
WindowState:=!WindowState
return
There's probably many more ways to do this but AutoHotkey is a free scripting language and open source.
Hope this is of any help to you !
EDIT: Small warning to you, this is very process intensive, only use it temporarily for taking pretty screenshots!
Here is an example screenshot. Click for full size!
Best Regard
Nick