#1991 closed Bug (Wont Fix)
Include CAPTUREBLT flag in _ScreenCapture_Capture
| Reported by: | Chess | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | Standard UDFs | |
| Version: | 3.3.6.1 | Severity: | None |
| Keywords: | Cc: |
Description
In order to capture the layered windows when capturing the desktop. The flag CAPTUREBLT should be included:
Old code
Global Const $__SCREENCAPTURECONSTANT_SRCCOPY = 0x00CC0020 ... _WinAPI_BitBlt( ... , $__SCREENCAPTURECONSTANT_SRCCOPY)
New code:
_WinAPI_BitBlt( ... , BitOR($SRCCOPY, $CAPTUREBLT))
NOTE: The constants are already listed in WinAPI.au3 so there is no need to hardcode another one...
Attachments (2)
Change History (7)
by , on Oct 25, 2011 at 6:59:08 PM
| Attachment: | ScreenCaptureV2.au3 added |
|---|
New include file containing fixes for _ScreenCapture_Capture and _ScreenCapture_CaptureWnd functions
by , on Nov 3, 2011 at 4:28:18 PM
| Attachment: | ScreenCaptureV2.2.au3 added |
|---|
Update for _ScreenCapture_CaptureV2 _ScreenCapture_CaptureWndV2 Added optional parameter $iBitBltFlag - Flag to pass to the _WinAPI_BitBlt operation default it BitOR($SRCCOPY, $CAPTUREBLT) instead of $SRCCOPY only Tested with AutoIT 3.3.6.1 Fix over previous version with gross error where $SRCCPY was used instead of $iBitBltFlag
comment:3 by , on May 23, 2012 at 4:08:31 PM
| Component: | AutoIt → Standard UDFs |
|---|
comment:4 by , on Sep 24, 2012 at 12:15:19 AM
Discussion thread: http://www.autoitscript.com/forum/topic/131265-screencapture-capturewndv2/
comment:5 by , on Jul 19, 2013 at 5:18:02 PM
| Resolution: | → Wont Fix |
|---|---|
| Status: | new → closed |

Actually, the right fix would be to let the user choose whether he wants to use this flag or not. So the best would be to add one more parameter to the _ScreenCapture_Capture function (and the _ScreenCapture_CaptureWnd one as well).
Thanks.