10.5: Make CopyPaste-X work in all Spaces |
|
|
The problem is that when CopyPaste (from Script Software) launches, Spaces is already running, and somehow does not allow CopyPaste on all Desktops. You can substitute this AppleScript at login to make things work correctly:tell application "CopyPaste-X" to launchdelay 20tell application "System Events" to tell spaces preferences of expose preferences set app_bindings to application bindings set |com.peter_hoerster.copypaste| of app_bindings to 1 set application bindings to app_bindings set |com.peter_hoerster.copypaste| of app_bindings to 65544 set application bindings to app_bindingse...
|