Gdip icon indicating copy to clipboard operation
Gdip copied to clipboard

problem including gdip.ahk

Open MaxReutter opened this issue 4 years ago • 1 comments

image

MaxReutter avatar Feb 07 '21 18:02 MaxReutter

Not sure about your situation but I solve this problem after I separate the line.

In my case, I change

#Include Gdip.ahk F1:: WinGet, hWnd, ID, A hbm := Gdip_BitmapFromHWND(hWnd) Gdip_SetBrightness(hbm, 0.5) Gdip_BitmapToHWND(hbm, hWnd) return

To

#Include Gdip.ahk
F1:: WinGet, hWnd, ID, A hbm := Gdip_BitmapFromHWND(hWnd) Gdip_SetBrightness(hbm, 0.5) Gdip_BitmapToHWND(hbm, hWnd) return

fmnijk avatar Sep 07 '23 01:09 fmnijk