Created
September 10, 2021 18:43
-
-
Save JoeGlines/63ebb94fb18cc2b21034e6c5ce55b709 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
XL:=XL_Handle(1) ;Get handle to worksheet | |
XL_email_Offset_Col(XL,RG:="E2:E4",URL:="-4",Friendly:="-3",Subj:="-2",Body:="-1") | |
;***********************Insert email OFFSET in Columns (data in rows)********************************. | |
;Neg values are col to left / Pos are col to right | |
XL_email_Offset_Col(PXL,RG="",URL="",Friendly="",Subj="",Body=""){ | |
For Cell in PXL.Application.ActiveSheet.Range(RG){ | |
Cell.Value :="=Hyperlink(""mailto:" . Cell.offset(0,URL).Value | |
. "?Subject=" . Cell.offset(0,Subj).Value | |
. "&Body=" . Cell.offset(0,Body).Value | |
. """,""" . Cell.offset(0,Friendly).Value . """)" | |
} | |
} | |
;***********Get handle to Excel******************* | |
XL_Handle(Sel){ | |
ControlGet, hwnd, hwnd, , Excel71, ahk_class XLMAIN ;identify the hwnd for Excel | |
Obj:=ObjectFromWindow(hwnd,-16) | |
return (Sel=1?Obj.Application:Sel=2?Obj.Parent:Sel=3?Obj.ActiveSheet:"") | |
} | |
;***borrowd & tweaked from Acc.ahk Standard Library*** by Sean Updated by jethrow***************** | |
ObjectFromWindow(hWnd, idObject = -4){ | |
if(h:=DllCall("LoadLibrary","Str","oleacc","Ptr")) | |
If DllCall("oleacc\AccessibleObjectFromWindow","Ptr",hWnd,"UInt",idObject&=0xFFFFFFFF,"Ptr",-VarSetCapacity(IID,16)+NumPut(idObject==0xFFFFFFF0?0x46000000000000C0:0x719B3800AA000C81,NumPut(idObject==0xFFFFFFF0?0x0000000000020400:0x11CF3C3D618736E0,IID,"Int64"),"Int64"), "Ptr*", pacc)=0 | |
Return ComObjEnwrap(9,pacc,1) | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment