バージョン 1 から バージョン 2 における更新: チケット #1075
- 更新日時:
- 2014/10/26 15:44:40 (10 年 前)
凡例:
- 変更なし
- 追加
- 削除
- 変更
-
チケット #1075
- マイルストーン 属性が 3.0.0b7 から 3.0.0b8 に 変更されました。
-
チケット #1075 – 説明
v1 v2 1 1 ファイルを開いた後、delay 1などを入れると開ける 2 3 -- 4 下記のように"as alias"をつけて、openの引数をalias型にすると、 5 delay無しでも、open後の処理が必ずシーケンシャルに実行されます。 6 ("as alias"が無い場合、openがFinderで実行され、処理が前後します) 7 8 tell application "Finder" 9 set testfile to (file "test.txt" in desktop) as alias 10 end tell 11 tell application “mi” 12 open testfile as "UTF-8" 13 get character code of document 1 14 end tell 15 16 -- 17 18 下記の文法ができるようにしたほうが良いので、対応検討 19 set theNewDoc to make document with properties: {path:thePath} 20 21