NSStringCompareOptions

[文字列置換]NSRegularExpressionSearch

#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions


property refMe : a reference to current application
property refNSString : a reference to refMe's NSString
property refNSMutableString : a reference to refMe's NSMutableString

property refNSRegularExpressionSearch : a reference to refMe's NSRegularExpressionSearch

property refNSNotFound : a reference to 9.22337203685477E+18 + 5807


set strOriginalText to "美しい日本語,美しい日本酒,美しい日本画,美しい日本髪"

###テキストをNSMutableStringに
##まずは初期化して
set ocidSampleText to refNSMutableString's alloc()'s initWithCapacity:0

###テキストをNSMutableStringにセット
ocidSampleText's setString:strOriginalText
log ocidSampleText as text
log className() of ocidSampleText as text


###NSMutableString文字列からRangeを作成
set ocidNSRange to ocidSampleText's rangeOfString:ocidSampleText
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidSampleText's replaceOccurrencesOfString:("(日本).") withString:("$1食") options:(refNSRegularExpressionSearch) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text



return

|

[文字列置換]NSRegularExpressionSearch(正規表現)

#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions


property refMe : a reference to current application
property refNSString : a reference to refMe's NSString
property refNSMutableString : a reference to refMe's NSMutableString

property refNSRegularExpressionSearch : a reference to refMe's NSRegularExpressionSearch

property refNSNotFound : a reference to 9.22337203685477E+18 + 5807


set strOriginalText to "美しい日本語,美しい日本酒,美しい日本画,美しい日本髪"

###テキストをNSMutableStringに
##まずは初期化して
set ocidSampleText to refNSMutableString's alloc()'s initWithCapacity:0

###テキストをNSMutableStringにセット
ocidSampleText's setString:strOriginalText
log ocidSampleText as text
log className() of ocidSampleText as text


###NSMutableString文字列からRangeを作成
set ocidNSRange to ocidSampleText's rangeOfString:ocidSampleText
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidSampleText's replaceOccurrencesOfString:("(日本).") withString:("$1食") options:(refNSRegularExpressionSearch) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text



return

|

[Safari]cURLのURLからURLのみ取り出す

クリップボードにコピーした値から抽出します
_20220904_18_10_43


#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions

######ログ表示
doLogView()

property objMe : a reference to current application
property objNSString : a reference to objMe's NSString
property objNSMutableString : a reference to objMe's NSMutableString
property objNSPasteboard : a reference to objMe's NSPasteboard
property objNSCharacterSet : a reference to objMe's NSCharacterSet
property objNSURL : a reference to objMe's NSURL

property objNSNotFound : a reference to 9.22337203685477E+18 + 5807




####ペーストボードを定義
set ocidPasteboard to objNSPasteboard's generalPasteboard()
log className() of ocidPasteboard as text

###テキストをプレーンテキストで
set ocidReadPasteboard to ocidPasteboard's stringForType:(objMe's NSPasteboardTypeString)
log ocidReadPasteboard as text
log className() of ocidReadPasteboard as text


###クリップボードのテキストをNSMutableString
##まずは初期化して
set ocidCurlCommandText to objNSMutableString's alloc()'s initWithCapacity:0

###テキストのセット上書き
ocidCurlCommandText's setString:ocidReadPasteboard
log className() of ocidCurlCommandText as text
log ocidCurlCommandText as text


###文字列からRangeを作成
set ocidNSRange to ocidReadPasteboard's rangeOfString:ocidCurlCommandText
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidCurlCommandText's replaceOccurrencesOfString:("\n") withString:("") options:(2) range:ocidNSRange
log ocidCurlCommandText as text
log ocidCurlCommandText's className() as text

###文字列からRangeを作成
set ocidNSRange to ocidCurlCommandText's rangeOfString:ocidCurlCommandText
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidCurlCommandText's replaceOccurrencesOfString:("\\") withString:("") options:(2) range:ocidNSRange
log ocidCurlCommandText as text
log ocidCurlCommandText's className() as text

###文字列からRangeを作成最初の'シングルクオトまでのレンジ
set ocidStartRange to ocidCurlCommandText's rangeOfString:("([^\\s]+)") options:(1024)
log ocidStartRange
log class of ocidStartRange

###テキストで戻るので数値とテキストの両方用意
set numStartRange to ocidStartRange's |length|() as integer
set strStartRange to numStartRange + 2 as text
log numStartRange

###文字列からRangeを作成2個目のシングルクオトまで
set ocidEndRange to ocidCurlCommandText's rangeOfString:("^((.+?\\s){1}[^\\s]+)") options:(1024)
log ocidEndRange
log class of ocidEndRange
###テキストで戻るので数値とテキストの両方用意
set numEndRange to ocidEndRange's |length|() as integer
###2個目のシングルクオトから最初のクオトまでのレンジを引いた値が取り出すレンジ
set strEndRange to numEndRange - numStartRange - 3 as text
log numEndRange

#####URL部分のレンジを作成
set ocidNSRangeFromString to objMe's NSRangeFromString(strStartRange & " " & strEndRange)
log ocidNSRangeFromString


###レンジの文字列を取り出す
set ocidUrlText to (ocidCurlCommandText's substringWithRange:ocidNSRangeFromString)
log ocidUrlText as text
log ocidUrlText's className() as text

set strUrlText to ocidUrlText as text

return




#########################ログ表示
to doLogView()

tell application "System Events"
set listAppList to title of (every process where background only is false)
end tell
repeat with objAppList in listAppList
set strAppList to objAppList as text
if strAppList is "スクリプトエディタ" then
tell application "Script Editor"
if frontmost is true then
try
tell application "System Events" to click menu item "ログを表示" of menu "表示" of menu bar item "表示" of menu bar 1 of application process "Script Editor"
end try
end if
end tell
end if
end repeat

end doLogView
#########################

|

[NSStringCompareOptions]オプションの組み合わせ

複数のオプションを組み合わせる時は
各オプションに割り当てられている値を『加算』して指定する事ができます



NSStringCompareOptions
NSCaseInsensitiveSearch1
NSLiteralSearch2
NSBackwardsSearch4
NSAnchoredSearch8
NSNumericSearch64
NSDiacriticInsensitiveSearch128
NSWidthInsensitiveSearch256
NSForcedOrderingSearch512
NSRegularExpressionSearch1024




NSCaseInsensitiveSearch = 1 大文字小文字を判定せずに
NSAnchoredSearch = 8 行頭から検索
この場合は『9』になります

#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions

######ログ表示
doLogView()

property objMe : a reference to current application
property objNSString : a reference to objMe's NSString
property objNSMutableString : a reference to objMe's NSMutableString

(*
NSCaseInsensitiveSearch = 1
NSLiteralSearch = 2
NSBackwardsSearch = 4
NSAnchoredSearch = 8
NSNumericSearch = 64
NSDiacriticInsensitiveSearch = 128
NSWidthInsensitiveSearch = 256
NSForcedOrderingSearch = 512
NSRegularExpressionSearch = 1024
*)



property objNSNotFound : a reference to 9.22337203685477E+18 + 5807


set strSampleText to "aaaDCEFGaaa"

###テキストをNSMutableString
##まずは初期化して
set ocidSampleText to objNSMutableString's alloc()'s initWithCapacity:0

###テキストをNSMutableStringにセット
ocidSampleText's setString:strSampleText
log ocidSampleText as text
log className() of ocidSampleText as text


###NSMutableString文字列からRangeを作成
set ocidNSRange to ocidSampleText's rangeOfString:ocidSampleText
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidSampleText's replaceOccurrencesOfString:("AAA") withString:("ABC") options:(9) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text



return


#########################ログ表示
to doLogView()

tell application "System Events"
set listAppList to title of (every process where background only is false)
end tell
repeat with objAppList in listAppList
set strAppList to objAppList as text
if strAppList is "スクリプトエディタ" then
tell application "Script Editor"
if frontmost is true then
try
tell application "System Events" to click menu item "ログを表示" of menu "表示" of menu bar item "表示" of menu bar 1 of application process "Script Editor"
end try
end if
end tell
end if
end repeat

end doLogView
#########################

|

[NSStringCompareOptions] NSForcedOrderingSearch 厳密な差

置き換えでは使わない
aaa
大文字小文字判別するディスクでaaaフォルダとAAAフォルダで名前順検索でどちらが先に来るかです

NSStringCompareOptions
NSCaseInsensitiveSearch1
NSLiteralSearch2
NSBackwardsSearch4
NSAnchoredSearch8
NSNumericSearch64
NSDiacriticInsensitiveSearch128
NSWidthInsensitiveSearch256
NSForcedOrderingSearch512
NSRegularExpressionSearch1024



意味ないけどサンプル
#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions

######ログ表示
doLogView()

property objMe : a reference to current application
property objNSString : a reference to objMe's NSString
property objNSMutableString : a reference to objMe's NSMutableString


property objNSForcedOrderingSearch : a reference to objMe's NSForcedOrderingSearch


property objNSNotFound : a reference to 9.22337203685477E+18 + 5807


set strSampleText to "AAAaaa"

###テキストをNSMutableString
##まずは初期化して
set ocidSampleText to objNSMutableString's alloc()'s initWithCapacity:0

###テキストをNSMutableStringにセット
ocidSampleText's setString:strSampleText
log ocidSampleText as text
log className() of ocidSampleText as text


###NSMutableString文字列からRangeを作成
set ocidNSRange to ocidSampleText's rangeOfString:ocidSampleText
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidSampleText's replaceOccurrencesOfString:("a") withString:("") options:(objNSForcedOrderingSearch) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text



return


#########################ログ表示
to doLogView()

tell application "System Events"
set listAppList to title of (every process where background only is false)
end tell
repeat with objAppList in listAppList
set strAppList to objAppList as text
if strAppList is "スクリプトエディタ" then
tell application "Script Editor"
if frontmost is true then
try
tell application "System Events" to click menu item "ログを表示" of menu "表示" of menu bar item "表示" of menu bar 1 of application process "Script Editor"
end try
end if
end tell
end if
end repeat

end doLogView
#########################

|

[NSStringCompareOptions] NSWidthInsensitiveSearch アジア圏の全半角無視

半角カタカナや全角数字の置き換えかなぁ

NSStringCompareOptions
NSCaseInsensitiveSearch1
NSLiteralSearch2
NSBackwardsSearch4
NSAnchoredSearch8
NSNumericSearch64
NSDiacriticInsensitiveSearch128
NSWidthInsensitiveSearch256
NSForcedOrderingSearch512
NSRegularExpressionSearch1024


#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions

######ログ表示
doLogView()

property objMe : a reference to current application
property objNSString : a reference to objMe's NSString
property objNSMutableString : a reference to objMe's NSMutableString


property objNSWidthInsensitiveSearch : a reference to objMe's NSWidthInsensitiveSearch



property objNSNotFound : a reference to 9.22337203685477E+18 + 5807


set strSampleText to "アア"

###テキストをNSMutableString
##まずは初期化して
set ocidSampleText to objNSMutableString's alloc()'s initWithCapacity:0

###テキストをNSMutableStringにセット
ocidSampleText's setString:strSampleText
log ocidSampleText as text
log className() of ocidSampleText as text


###NSMutableString文字列からRangeを作成
set ocidNSRange to ocidSampleText's rangeOfString:ocidSampleText
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidSampleText's replaceOccurrencesOfString:("") withString:("") options:(objNSWidthInsensitiveSearch) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text



return


#########################ログ表示
to doLogView()

tell application "System Events"
set listAppList to title of (every process where background only is false)
end tell
repeat with objAppList in listAppList
set strAppList to objAppList as text
if strAppList is "スクリプトエディタ" then
tell application "Script Editor"
if frontmost is true then
try
tell application "System Events" to click menu item "ログを表示" of menu "表示" of menu bar item "表示" of menu bar 1 of application process "Script Editor"
end try
end if
end tell
end if
end repeat

end doLogView
#########################

|

[NSStringCompareOptions] NSAnchoredSearch 行頭から

行頭から検索するので
行頭のタブ取ったりするのに良いかも

NSStringCompareOptions
NSCaseInsensitiveSearch1
NSLiteralSearch2
NSBackwardsSearch4
NSAnchoredSearch8
NSNumericSearch64
NSDiacriticInsensitiveSearch128
NSWidthInsensitiveSearch256
NSForcedOrderingSearch512
NSRegularExpressionSearch1024


#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions

######ログ表示
doLogView()

property objMe : a reference to current application
property objNSString : a reference to objMe's NSString
property objNSMutableString : a reference to objMe's NSMutableString


property objNSAnchoredSearch : a reference to objMe's NSAnchoredSearch


property objNSNotFound : a reference to 9.22337203685477E+18 + 5807


set strSampleText to "\n\n美しい日本語の\nオープンタイプフォント"

###テキストをNSMutableString
##まずは初期化して
set ocidSampleText to objNSMutableString's alloc()'s initWithCapacity:0

###テキストをNSMutableStringにセット
ocidSampleText's setString:strSampleText
log ocidSampleText as text
log className() of ocidSampleText as text


###NSMutableString文字列からRangeを作成
set ocidNSRange to ocidSampleText's rangeOfString:ocidSampleText
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidSampleText's replaceOccurrencesOfString:("\n") withString:("") options:(objNSAnchoredSearch) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text



return


#########################ログ表示
to doLogView()

tell application "System Events"
set listAppList to title of (every process where background only is false)
end tell
repeat with objAppList in listAppList
set strAppList to objAppList as text
if strAppList is "スクリプトエディタ" then
tell application "Script Editor"
if frontmost is true then
try
tell application "System Events" to click menu item "ログを表示" of menu "表示" of menu bar item "表示" of menu bar 1 of application process "Script Editor"
end try
end if
end tell
end if
end repeat

end doLogView
#########################

|

[NSStringCompareOptions] NSBackwardsSearch 文字列の最後から検索

NSStringCompareOptions
NSCaseInsensitiveSearch1
NSLiteralSearch2
NSBackwardsSearch4
NSAnchoredSearch8
NSNumericSearch64
NSDiacriticInsensitiveSearch128
NSWidthInsensitiveSearch256
NSForcedOrderingSearch512
NSRegularExpressionSearch1024

#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions

######ログ表示
doLogView()

property objMe : a reference to current application
property objNSString : a reference to objMe's NSString
property objNSMutableString : a reference to objMe's NSMutableString


property objNSBackwardsSearch : a reference to objMe's NSBackwardsSearch


property objNSNotFound : a reference to 9.22337203685477E+18 + 5807


set strSampleText to "美しい日本語の オープン タイプフォント "

###テキストをNSMutableString
##まずは初期化して
set ocidSampleText to objNSMutableString's alloc()'s initWithCapacity:0

###テキストをNSMutableStringにセット
ocidSampleText's setString:strSampleText
log ocidSampleText as text
log className() of ocidSampleText as text

##文字数数えて
set numChrCnt to (ocidSampleText's |length|) as integer
log numChrCnt as text

###NSMutableString文字列からRangeを作成 これは行末の4文字分のレンジ
set ocidNSRange to objMe's NSMakeRange((numChrCnt - 4), 4)
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidSampleText's replaceOccurrencesOfString:(" ") withString:("") options:(4) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text



return


#########################ログ表示
to doLogView()

tell application "System Events"
set listAppList to title of (every process where background only is false)
end tell
repeat with objAppList in listAppList
set strAppList to objAppList as text
if strAppList is "スクリプトエディタ" then
tell application "Script Editor"
if frontmost is true then
try
tell application "System Events" to click menu item "ログを表示" of menu "表示" of menu bar item "表示" of menu bar 1 of application process "Script Editor"
end try
end if
end tell
end if
end repeat

end doLogView
#########################

|

[NSStringCompareOptions] NSLiteralSearch リテラル文字通りに検索

一番使い勝手のいいやつ 
正規表現使わないなら基本はこれ

NSStringCompareOptions
NSCaseInsensitiveSearch1
NSLiteralSearch2
NSBackwardsSearch4
NSAnchoredSearch8
NSNumericSearch64
NSDiacriticInsensitiveSearch128
NSWidthInsensitiveSearch256
NSForcedOrderingSearch512
NSRegularExpressionSearch1024





#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions

######ログ表示
doLogView()

property objMe : a reference to current application
property objNSString : a reference to objMe's NSString
property objNSMutableString : a reference to objMe's NSMutableString


property objNSLiteralSearch : a reference to objMe's NSLiteralSearch


property objNSNotFound : a reference to 9.22337203685477E+18 + 5807


set strSampleText to "美しい日本語の\nオープン\\タイプフォント"

###テキストをNSMutableString
##まずは初期化して
set ocidSampleText to objNSMutableString's alloc()'s initWithCapacity:0

###テキストをNSMutableStringにセット
ocidSampleText's setString:strSampleText
log ocidSampleText as text
log className() of ocidSampleText as text


###NSMutableString文字列からRangeを作成
set ocidNSRange to ocidSampleText's rangeOfString:ocidSampleText
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidSampleText's replaceOccurrencesOfString:("\n") withString:("\t") options:(objNSLiteralSearch) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text

###置き換え
ocidSampleText's replaceOccurrencesOfString:("\\") withString:("") options:(objNSLiteralSearch) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text

return


#########################ログ表示
to doLogView()

tell application "System Events"
set listAppList to title of (every process where background only is false)
end tell
repeat with objAppList in listAppList
set strAppList to objAppList as text
if strAppList is "スクリプトエディタ" then
tell application "Script Editor"
if frontmost is true then
try
tell application "System Events" to click menu item "ログを表示" of menu "表示" of menu bar item "表示" of menu bar 1 of application process "Script Editor"
end try
end if
end tell
end if
end repeat

end doLogView
#########################

|

[NSStringCompareOptions] NSDiacriticInsensitiveSearch発音区別符号を区別しない

発音区別符号を区別しない
なんだろキリル系の文字列を直したい時とか?かなぁ…しらんけど



NSStringCompareOptions
NSCaseInsensitiveSearch1
NSLiteralSearch2
NSBackwardsSearch4
NSAnchoredSearch8
NSNumericSearch64
NSDiacriticInsensitiveSearch128
NSWidthInsensitiveSearch256
NSForcedOrderingSearch512
NSRegularExpressionSearch1024



#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions

######ログ表示
doLogView()

property objMe : a reference to current application
property objNSString : a reference to objMe's NSString
property objNSMutableString : a reference to objMe's NSMutableString


property objNSDiacriticInsensitiveSearch : a reference to objMe's NSDiacriticInsensitiveSearch


property objNSNotFound : a reference to 9.22337203685477E+18 + 5807


set strSampleText to "naïve hāt"

###テキストをNSMutableString
##まずは初期化して
set ocidSampleText to objNSMutableString's alloc()'s initWithCapacity:0

###テキストをNSMutableStringにセット
ocidSampleText's setString:strSampleText
log ocidSampleText as text
log className() of ocidSampleText as text


###NSMutableString文字列からRangeを作成
set ocidNSRange to ocidSampleText's rangeOfString:ocidSampleText
log ocidNSRange
log class of ocidNSRange

###置き換え
ocidSampleText's replaceOccurrencesOfString:("naive") withString:("Loved") options:(objNSDiacriticInsensitiveSearch) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text

###置き換え
ocidSampleText's replaceOccurrencesOfString:("hat") withString:("Cap") options:(objNSDiacriticInsensitiveSearch) range:ocidNSRange
log ocidSampleText as text
log ocidSampleText's className() as text

return


#########################ログ表示
to doLogView()

tell application "System Events"
set listAppList to title of (every process where background only is false)
end tell
repeat with objAppList in listAppList
set strAppList to objAppList as text
if strAppList is "スクリプトエディタ" then
tell application "Script Editor"
if frontmost is true then
try
tell application "System Events" to click menu item "ログを表示" of menu "表示" of menu bar item "表示" of menu bar 1 of application process "Script Editor"
end try
end if
end tell
end if
end repeat

end doLogView
#########################

|

その他のカテゴリー

Accessibility Acrobat Acrobat 2020 Acrobat AddOn Acrobat Annotation Acrobat ARMDC Acrobat AV2 Acrobat BookMark Acrobat Classic Acrobat DC Acrobat Dialog Acrobat Distiller Acrobat Form Acrobat JS Acrobat Manifest Acrobat Menu Acrobat Open Acrobat Plugin Acrobat Preferences Acrobat Preflight Acrobat Python Acrobat Reader Acrobat Reader Localized Acrobat Reference Acrobat SCA Acrobat SCA Updater Acrobat Sequ Acrobat Sign Acrobat Stamps Acrobat Watermark Acrobat Windows Acrobat Windows Reader Admin Admin Account Admin Apachectl Admin configCode Admin Device Management Admin LaunchServices Admin Locationd Admin loginitem Admin Maintenance Admin Mobileconfig Admin Permission Admin Pkg Admin Power Management Admin Printer Admin SetUp Admin SMB Admin Support Admin System Information Admin Tools Admin Users Admin Volumes Admin XProtect Adobe Adobe Bridge Adobe FDKO Adobe Fonts Adobe Reference Adobe RemoteUpdateManager AppKit Apple AppleScript AppleScript do shell script AppleScript List AppleScript ObjC AppleScript Osax AppleScript PDF AppleScript Pictures AppleScript record AppleScript Script Editor AppleScript Script Menu AppleScript Shortcuts AppleScript Shortcuts Events AppleScript System Events AppleScript System Events Plist AppleScript Video Applications AppStore Archive Attributes Automator BackUp Barcode Barcode Decode Barcode QR Bash Basic Basic Path Bluetooth BOX Browser Calendar CD/DVD Choose Chrome CIImage CityCode CloudStorage Color com.apple.LaunchServices.OpenWith Console Contacts CotEditor CURL current application Date&Time defaults delimiters Desktop Device Diff Disk Dock DropBox Droplet eMail Encode % Encode Decode Encode HTML Entity Encode UTF8 Error EXIFData ffmpeg File File Name Finder Firefox Folder FolderAction Fonts Fonts ATS Fonts Python Foxit GIF github Guide HTML Icon Illustrator Image Events Image2PDF ImageOptim Input Dictionary iPhone iWork Javascript Jedit Json Label Language Leading Zero List locationd LRC lsappinfo m3u8 Mail MakePDF Map Math Media Media AVAsset Media AVconvert Media AVFoundation Media AVURLAsset Media Movie Media Music Memo Messages Microsoft Microsoft Edge Microsoft Excel Microsoft Fonts Microsoft Office Mouse Music NetWork Notes NSArray NSArray Sort NSBezierPath NSBitmapImageRep NSBundle NSCFBoolean NSCharacterSet NSColor NSColorList NSData NSDecimalNumber NSDictionary NSError NSEvent NSFileAttributes NSFileManager NSFileManager enumeratorAtURL NSFont NSFontManager NSGraphicsContext NSImage NSIndex NSKeyedArchiver NSKeyedUnarchiver NSLocale NSMetadataItem NSMutableArray NSMutableDictionary NSMutableString NSNotFound NSNumber NSOpenPanel NSPasteboard NSpoint NSPredicate NSRange NSRect NSRegularExpression NSRunningApplication NSScreen NSSize NSString NSString stringByApplyingTransform NSStringCompareOptions NSTask NSTimeZone NSURL NSURL File NSURLBookmark NSURLComponents NSURLResourceKey NSURLSession NSUserDefaults NSUUID NSView NSWorkspace Numbers OAuth OneDrive PDF PDF Pymupdf PDFAnnotation PDFAnnotationWidget PDFContext PDFDisplayBox PDFDocumentPermissions PDFImageRep PDFKit PDFnUP PDFOutline PDFView perl Photoshop PlistBuddy pluginkit plutil postalcode PostScript prefPane Preview Python QuickLook QuickTime ReadMe Regular Expression Reminders ReName Repeat RTF Safari SaveFile ScreenCapture ScreenSaver SF Symbols character id SF Symbols Entity sips Skype Slack Sound Spotlight sqlite SRT StandardAdditions Swift System Settings TCC TemporaryItems Terminal Text Text CSV Text MD Text TSV TextEdit Tools Translate Trash Twitter Typography UI Unit Conversion UTType valueForKeyPath Video VisionKit Visual Studio Code VMware Fusion Wacom webarchive webp Wifi Windows XML XML EPUB XML HTML XML LSSharedFileList XML OPML XML Plist XML RSS XML savedSearch XML SVG XML TTML XML webloc XML xmllint XML XMP YouTube zoom