Quiero poner una ventana (QuickTime, por ejemplo) en primer plano, sin enfocarlo . Puedo hacerlo en OS X 10.7 usando el siguiente código en Applescript.
tell application "System Events"
set visible of process "QuickTime Player" to true
end tell
Este es un equivalente de Python.
from ScriptingBridge import *
process = SBApplication.applicationWithBundleIdentifier_('com.apple.systemevents').processes().objectWithName_('QuickTime Player')
process.setVisible_(True)
Pero no funciona después de haber actualizado a OS X 10.8. Hay alguna manera de hacer que funcione?