-
Notifications
You must be signed in to change notification settings - Fork 2
/
ms_excel.ahk
35 lines (31 loc) · 1.04 KB
/
ms_excel.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;#################################################################
;##### CfK -- App -- MS Excel
;# = Super, ^ = Ctrl, ! = Alt, + = Shift, ^>! = AltGr
#IfWinActive ahk_class XLMAIN
; Strg+b = Paste as formala and number format
^b::
xlPasteFormulasAndNumberFormats := 11
try {
ComObjActive("Excel.Application").ActiveSheet.PasteSpecial(xlPasteFormulasAndNumberFormats)
}
return
; Strg+n = Paste as text only and number format
^n::
xlPasteValuesAndNumberFormats := 12
try {
ComObjActive("Excel.Application").ActiveSheet.PasteSpecial(xlPasteValuesAndNumberFormats)
}
return
; Strg+Super+b = Paste as emf
^#b::
try {
ComObjActive("Excel.Application").ActiveSheet.PasteSpecial("Bild (Erweiterte Metadatei)")
}
return
; Strg+Super+n = Paste as png
^#n::
try {
ComObjActive("Excel.Application").ActiveSheet.PasteSpecial("Bild (PNG)")
}
return
#IfWinActive