日本語入力Input Methodの「ライブ変換」のOn/Offの状態を取得するAppleScriptです。
本Scriptは状態を取得する「だけ」で、強制設定などは行いません。
個人的には、この「ライブ変換」機能はまったく信用に値しないので、macOS環境で真っ先にオフにする不要な機能です。
AppleScript名:ライブ変換の状態をBooleanで取得する.scptd |
— – Created by: Takaaki Naganoya – Created on: 2018/10/28 — – Copyright © 2018 Piyomaru Software, All Rights Reserved – http://www.mindto01s.com/2017/03/27/9f85c2fb_9f90_4e1b_8e5e_8719f57900eb.html use AppleScript version "2.4" — Yosemite (10.10) or later use framework "Foundation" use scripting additions set imRes to getLiveHenkanStatus() of me –> true : 「ライブ変換」On –> false : 「ライブ変換」Off on getLiveHenkanStatus() set theUD to current application’s NSUserDefaults’s alloc()’s initWithSuiteName:"com.apple.inputmethod.Kotoeri" set imRes to (theUD’s valueForKey:"JIMPrefLiveConversionKey") as boolean return imRes end getLiveHenkanStatus |
More from my site
(Visited 132 times, 1 visits today)