Display VMware Fusion Library Window using keystrokes
--
-- A simple launcher to display the VMware Library
--
-- 20101222 by fidel
--
try
tell application "VMware Fusion"
-- activate it if not running already
activate
-- keystroke to open VM Lib Window (Shift + Apple + L)
tell application "System Events"
keystroke "L" using {command down, shift down}
end tell
end tell
on error
display dialog "Something weird happened dude" with title "error"
end try