I wrote an AppleScript to kill my Wacom Tablet driver in OS X, allowing Windows XP to access it:
Code:
do shell script "killall TabletDriver"
Then I can reactivate it after I'm done in Windows:
Code:
tell application "Finder"
open "Mac OS X:Library:StartupItems:Tablet:TabletDriver"
end tell
This works, and when I'm in Parallels the Tablet is responsive, but the curser does not follow the tablet. I have the driver for the tablet installed, but something is breaking the connection between the mouse and the tablet.
Thanks,
=)