原來office for mac有一個奇妙的設定,當把語系切為日文時,就可以開啟一些隱藏功能。
在應用程式/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app

打開之後可以看到以下視窗。

設定完成打開word就可以看到這些按鈕了。

這裡寫下來的,是我昨天以前的過去,而你遇見的,則是我明天以後的未來。
#alert_beacon, .unread_generic {
background-color: red;
border-bottom-left-radius: 3px 3px;
border-bottom-right-radius: 3px 3px;
border-top-left-radius: 3px 3px;
border-top-right-radius: 3px 3px;
color: white !important;
padding: 0px 2px;
}
.unread #alert_beacon, .unread_generic
{...}
即可。
#java -jar xxx.jar [source file]
當然這樣一行一行指令,一個一個檔案轉換也是沒什麼問題,不過最近一時興起想玩玩apple script,於是就拿這來牛刀小試一番。tell application "Finder"
set workingDir to POSIX path of (get folder of (path to me) as Unicode text)
set aSourceFiles to choose file with prompt "Select Source files:" of type ("xml") with multiple selections allowed
set aTargetFolder to POSIX path of (choose folder)
repeat with aFile in aSourceFiles
set aTarget to name of aFile
set aFile to POSIX path of aFile
do shell script "java -jar " & workingDir & "/xxx.jar " & aFile & ">" & aTargetFolder & "/" & aTarget
end repeat
end tell