sipsコマンドでつけられるアイコンは、自動的に付加されるアイコンよりも縦のサイズが大きいようです。
私は必要なファイルについては
tell Applications "Finder"
set f to selection as list
repeat with i in f
set i to i as alias
set md to modification date of i
do shell script ("/usr/bin/sips -i " & quoted form of (POSIX path of i))
update folder of i
set modification date of i to md
end
end
なるAppleScriptを作ってアイコンを付加することにしました(今作った)。Finderで選択しているファイルが対象です。
ただし、
10.3.3 サーバのメール機能 (スコア:0)
10.2以降のAppleMail (スコア:2, 参考になる)
300件ほど溜まってました。受信出来ないのは溜まりすぎていたのが原因ではなく、おかしなメールが混ざっていたからだったみたいですけど。残ってしまう問題に付い
Re:10.2以降のAppleMail(オフトピ) (スコア:1)
以前EudraでのバグをクラッシュレポートでAppleに知らせたところ、
一ヶ月くらいあとに出たupdateで修正されていました。
また、銀座AppleStoreで、PCMCIAのPHSカードの問題を相談したところ、
やはり一ヶ月後ほどののアップデートで”一応”対
Re:10.2以降のAppleMail(オフトピ) (スコア:1)
Re:10.2以降のAppleMail(オフトピ) (スコア:2, 参考になる)
私は必要なファイルについては
tell Applications "Finder"
set f to selection as list
repeat with i in f
set i to i as alias
set md to modification date of i
do shell script ("/usr/bin/sips -i " & quoted form of (POSIX path of i))
update folder of i
set modification date of i to md
end
end
なるAppleScriptを作ってアイコンを付加することにしました(今作った)。Finderで選択しているファイルが対象です。
ただし、
#更新日を戻さなければもっと早く出来る…と思う