Modify

Opened 14 years ago

Closed 14 years ago

#1821 closed Bug (Wont Fix)

_ScreenCapture_CaptureWnd doesn't work for Games in fullscreen

Reported by: LeeTheMex Owned by:
Milestone: Component: AutoIt
Version: 3.3.6.1 Severity: None
Keywords: Screen Capture Cc:

Description

_ScreenCapture_Capture doesn't work at all for games in fullscreen mode (just leaves a blank image) CaptureWnd Atleast has some of the image.
I can't get _ScreenCapture_CaptureWnd to work on Diablo 2: LOD Patch version 1.13 in fullscreen mode (it works fine in windowed mode). Images will have missing elements and some areas blacked out (attachment of image and user-created program given).

;Program created to test Screen Capture in Fullscreen mode game.
;Start script then open game in fullscreen mode. While in game,
;press Ctrl-Shift-R to take 11 screen captures and save to Test
;folder on dektop.

#include <Misc.au3>
#include <ScreenCapture.au3>


HotKeySet("^+r", "begin") ;Hotkeys: Ctrl + Shift + r    Runs program

While 1
	Sleep(250) ;must press Ctrl-Shift-r to start screen capture
WEnd

Func begin()
	Local $folder, $x
	$folder = @DesktopDir & "\Test" ;images create in Test folder on desktop
	DirCreate($folder)
	For $x = 0 To 10
		Sleep(100)
		_ScreenCapture_CaptureWnd($folder & "\" & String($x) & ".bmp", WinGetHandle("[ACTIVE]"))
	Next
EndFunc   ;==>begin

http://i52.tinypic.com/15fr8td.jpg

Change History (1)

comment:1 Changed 14 years ago by Jon

  • Resolution set to Wont Fix
  • Status changed from new to closed

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.