AppleScript के साथ डिक्टेशन सेटिंग्स


1

मैं एक AppleScript बनाने के लिए कोशिश कर रहा हूँ पर या बंद श्रुतलेख (न सिर्फ यह सुनने शुरू कर)। मेरा लक्ष्य बैटरी पावर पर होने पर डिक्टेशन को अक्षम करना है।

मैं AppleScript के लिए नया हूँ और यह नहीं जानता कि यह कैसे करना है। मुझे macOS सिएरा पर काम करने के लिए इसकी आवश्यकता है।

जवाबों:


-1

मुझे मेरा जवाब मिल गया!

अगर कोई चाहता है तो यहां मेरा कोड है:

set quitting to 0
delay 1
repeat until quitting is 1
    set PowerSource to (do shell script "pmset -g ps")
    repeat until PowerSource does not contain "AC Power" or quitting is 1
        set PowerSource to (do shell script "pmset -g ps")
    end repeat
    --START
    tell application "System Events"
        set ProcessList to name of every process
        if "System Prefrences" is in ProcessList then
            set ThePID to unix id of process "System Prefrences"
            do shell script "kill -KILL " & ThePID
        end if
    end tell

    tell application "System Preferences"
        activate
        set the current pane to pane id "com.apple.preference.keyboard"
    end tell
    tell application "System Events"
        --Part 1:
        tell process "System Preferences"
            --Part 2:
            delay 1
            --Part 3:
            tell application "System Events" to tell radio button "Dictation" of tab group 1 of window "Keyboard" of application process "System Preferences" of application "System Events" to if exists then click
            tell application "System Events" to tell radio button "Off" of radio group 1 of tab group 1 of window "Keyboard" of application process "System Preferences" of application "System Events" to if exists then click
        end tell
    end tell
    tell application "System Preferences" to quit
    display notification "Hey siri is now off."
    --END
    repeat until PowerSource contains "AC Power" or quitting is 1
        set PowerSource to (do shell script "pmset -g ps")
    end repeat
    --START
    tell application "System Events"
        set ProcessList to name of every process
        if "System Prefrences" is in ProcessList then
            set ThePID to unix id of process "System Prefrences"
            do shell script "kill -KILL " & ThePID
        end if
    end tell

    tell application "System Preferences"
        activate
        set the current pane to pane id "com.apple.preference.keyboard"
    end tell
    tell application "System Events"
        --Part 1:
        tell process "System Preferences"
            --Part 2:
            delay 1
            --Part 3:
            tell application "System Events" to tell radio button "Dictation" of tab group 1 of window "Keyboard" of application process "System Preferences" of application "System Events" to if exists then click
            tell application "System Events" to tell radio button "On" of radio group 1 of tab group 1 of window "Keyboard" of application process "System Preferences" of application "System Events" to if exists then click
        end tell
    end tell
    tell application "System Preferences" to quit
    display notification "Hey siri is now on."
    --END
end repeat
on quit
    set quitting to 1
    continue quit
end quit

बस इसे स्क्रिप्ट एडिटर में खोलें और एक एप्लिकेशन में संकलित करें। फिर एप्लिकेशन लॉन्च करें। उम्मीद है की यह मदद करेगा!

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.