Posts

Post not yet marked as solved
16 Replies
I am experiencing this same problem but my keyboard and mouse is wired only. Anyone else have this problem with wired devices?
Post not yet marked as solved
7 Replies
In the past I had to run as root (high sierra), but I guess I failed to try to run as myself once I made the above changes. Can't say if I needed the plist.info change or not but it does work now if I run it as myself and it's in the accessibility app list.Thanks everyone!
Post not yet marked as solved
7 Replies
I just upgraded to Mojave (many reasons why it took this long but I'm there now) And I'm struggling with the same kind of problem, I've tried your workaround of editing my Info.plist but that hasn't worked for me. Does your application require running as root? In the past (like high sierra etc) the only way I could get CGEventTapCreate to succeed was to run my application as root. If your app doesn't require root how are you working around that???Here is my Info.plist<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"><dict> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>MacPwdMgr</string> <key>CFBundleIconFile</key> <string>padlock</string> <key>CFBundleIdentifier</key> <string>com.xxxx.MacPwdMgr</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleSignature</key> <string>????</string> <key>NSAppleEventsUsageDescription</key> <string></string> <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLSchemes</key> <array> <string>tel</string> <string>sip</string> </array> </dict> </array> <key>CFBundleVersion</key> <string>1.0</string> <key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> <key>NSExceptionDomains</key> <dict> <key>xxxx.com</key> <dict> <key>NSExceptionAllowsInsecureHTTPLoads</key> <true/> <key>NSIncludesSubdomains</key> <true/> </dict> </dict> </dict> <key>NSAppleScriptEnabled</key> <string>YES</string> <key>NSMainNibFile</key> <string>MainMenu</string> <key>NSPrincipalClass</key> <string>NSApplication</string> <key>NSUIElement</key> <string>1</string></dict></plist>