How to write the command “Attachment-Edit” as Formula language (preferable) or other language?
Subject: How to write “Attachment-Edit” in Formula language?
You mean
@Command( [EditInsertFileAttachment] )
???
Subject: RE: How to write “Attachment-Edit” in Formula language?
A workaround to edit the attachment can be:
Declarations:
Declare Sub keybd_event Lib “user32.dll” (Byval bVk As Integer, Byval bScan As Integer, Byval dwFlags As Integer,Byval dwExtraInfo As Integer)
Initialize:
keybd_event 18,0,0,0 ’ Alt key down
keybd_event Asc(“T”),0,0,0 ’ T key down
keybd_event Asc(“T”),0,2,0 ’ T key up
keybd_event 18,0,2,0 ’ Alt key up
keybd_event Asc(“E”),0,0,0 ’ E key down
keybd_event Asc(“E”),0,2,0 ’ E key up
No functions are available in ls or formula to simulate right click and edit