;winキー+クリックした場所のRGB値をフォトショの描画色にする.ahk
#LButton::
MouseGetPos,X,Y
PixelGetColor,c,%X%,%Y%
app:=ComObjActive("Photoshop.Application")
sc:=ComObjCreate("Photoshop.SolidColor")
sc.rgb.red:=Mod(c,256)
sc.rgb.green:=Mod(c>>8,256)
sc.rgb.blue:=Mod(c>>16,256)
app.foregroundColor:=sc
Return ; #dtp