making screenshot of eve window with isxeve/lavishscript

hiddenspy

Active Member
is there any way to make screenshot of eve screen by isxeve/lavishscript? how can i do that? i would like to make screenshots of eve window before emergency logoff of eve client. thanks.
 

CyberTech

Rest in Peace
Staff member
Note -- current innerspace dev build has:

- Added data type method gdiwindow:SelectMenuItem[submenu...,item] to activate a menu item
* Example: Display.Window:SelectMenuItem[&File,&Open...]
- Added data type method display:Screencap[-flags,filename.ext,x1,y1,x2,y2]
* Flags and x1,y1,x2,y2 rectangle are optional
* Flags:
-directx: (Default) Perform the screencap with Direct3D-based capture; supports PNG, JPG, BMP
-desktop: Perform the screencap with desktop-based capture (includes any windows on top, etc); supports BMP
-clientcoords: (Default) Screencap coordinates given are based on the game client
-screencoords: Screencap coordinates given are based on the desktop
* Image encoding is automatically derived from the filename ending in .bmp, .jpg or .png; desktop capture
currently only supports BMP encoding
* Examples:
Display:Screencap[myscreencap.jpg] - capture game window
Display:Screencap[myscreencap.jpg,100,100,164,164] - capture a 64x64 region at 100,100
Display:Screencap[-desktop,myscreencap.bmp] - capture game window plus layers on top of it
Display:Screencap[-desktop,-screencoords,myscreencap.bmp,0,0,1600,900] - capture a 1600x900 desktop
 
Top Bottom