Fontを開く
set strURLstring to "file:///System/Library/AssetsV2/com_apple_MobileAsset_Font7/0818d874bf1d0e24a1fe62e79f407717792c5ee1.asset/AssetData/OsakaMono.ttf"
tell application "Finder"
open location strURLstring
end tell
これだとFontbookを開くになる
set strURLstring to "fontbook://"
tell application "Finder"
open location strURLstring
end tell
set strURLstring to "file:///System/Library/AssetsV2/com_apple_MobileAsset_Font7/0818d874bf1d0e24a1fe62e79f407717792c5ee1.asset/AssetData/OsakaMono.ttf"
tell application id "com.apple.FontBook"
launch
activate
open location strURLstring
end tell
set strURLstring to "/System/Library/AssetsV2/com_apple_MobileAsset_Font7/0818d874bf1d0e24a1fe62e79f407717792c5ee1.asset/AssetData/OsakaMono.ttf"
tell application id "com.apple.FontBook"
launch
activate
open strURLstring
end tell
| 固定リンク
「Fonts」カテゴリの記事
- WIndows用のフォント・管理ツール(2025.05.28)
- ユーザードメインのフォントフォルダにインストールしているフォントの数(2025.05.05)
- macOS標準のヒラギノ(2025.04.08)
- [FontList]15.3.1時点でのフォントのバージョン(2025.02.11)
- [FontBook]フォント名・PS名・フォントファミリー名の取得(2025.01.27)