मैं एक खिड़की (उदाहरण के लिए क्विकटाइम) को सामने लाना चाहता हूं, बिना उस पर ध्यान दिए । मैं इसे Applescript में निम्नलिखित कोड का उपयोग करके OS X 10.7 में कर सकता हूं।
tell application "System Events"
set visible of process "QuickTime Player" to true
end tell
यह एक पायथन समतुल्य है।
from ScriptingBridge import *
process = SBApplication.applicationWithBundleIdentifier_('com.apple.systemevents').processes().objectWithName_('QuickTime Player')
process.setVisible_(True)
लेकिन OS X 10.8 में अपग्रेड करने के बाद यह काम नहीं करता है। क्या इसे काम करने का कोई तरीका है?