Hello.
Can anyone see why this macro of mine—designed to delete all dictionaries by recursively setting their keys to ""—doesn't do anything ?
Hello.
Can anyone see why this macro of mine—designed to delete all dictionaries by recursively setting their keys to ""—doesn't do anything ?
Hi @CJK,
Are you sure that this macro didn't do anything? I tried recreating it, and it worked as expected for me:
Delete all Dictionaries.kmmacros (2.3 KB)
Interesting. I ended up doing it via AppleScript:
tell application "Keyboard Maestro Engine" to ¬
repeat with D in (dictionaries as list)
delete D
end repeat