9hoursbefore.app
をテンプレートにして作成
このWiki [
新規
] [
トップ
|
一覧
|
単語検索
|
最終更新
] [
ヘルプ
]
開始行:
[[スクリプト]]
&tag(script,スクリプト,applescript,suffit);
*9hoursbefore [#q0bac11d]
**これは何? [#m799bb2f]
AppleScriptにより、タイムスタンプを9時間戻します。
Mac OS X の StuffIt の特定バージョンは、.sit アーカイブ...
**Download [#b05a9208]
Mac OS X 10.5.5、Mac OS X 10.4.6、Mac OS X 10.3.9
&attachref(9hoursbefore.app.sitx);
**Script [#o2bb9bcc]
スクリプトは、Mac OS X 10.2 以降で動作確認しています。
-- FileName: 9hoursbefore.txt
-- 機能:ドラッグアンドドロップしたファイルの
-- タイムスタンプを-9時間します。
-- 2006.7.26 CL(Oono Yoshitaka)
on open of theFiles
tell application "Finder"
set change_time_seconds to -9 * 3600
--ファイルの変更
repeat with i in theFiles
try
set modification date of i to (modification date of i) +...
on error errMsg number errNum
display dialog ((name of i) as Unicode text) & return & ...
end try
end repeat
end tell
end open
**免責 [#e8d1d582]
このスクリプトは、当方で動作確認はしましたが、すべの環...
**既知の問題 [#ped298ac]
-ファイルサーバにあるファイルをドラッグアンドドロップして...
-2回ドラッグアンドドロップしてしまった場合は、当然18時間...
**補足 [#y480d02d]
このスクリプトは、市川せうぞー氏の下記 URL にあるスクリ...
(DTPtechNote:598) ファイルの修正時間の変更
http://www.seuzo.jp/rubbs/search_html/msg00591.html
スクリプト配布に当たって、市川せうぞー氏に了解をいただ...
終了行:
[[スクリプト]]
&tag(script,スクリプト,applescript,suffit);
*9hoursbefore [#q0bac11d]
**これは何? [#m799bb2f]
AppleScriptにより、タイムスタンプを9時間戻します。
Mac OS X の StuffIt の特定バージョンは、.sit アーカイブ...
**Download [#b05a9208]
Mac OS X 10.5.5、Mac OS X 10.4.6、Mac OS X 10.3.9
&attachref(9hoursbefore.app.sitx);
**Script [#o2bb9bcc]
スクリプトは、Mac OS X 10.2 以降で動作確認しています。
-- FileName: 9hoursbefore.txt
-- 機能:ドラッグアンドドロップしたファイルの
-- タイムスタンプを-9時間します。
-- 2006.7.26 CL(Oono Yoshitaka)
on open of theFiles
tell application "Finder"
set change_time_seconds to -9 * 3600
--ファイルの変更
repeat with i in theFiles
try
set modification date of i to (modification date of i) +...
on error errMsg number errNum
display dialog ((name of i) as Unicode text) & return & ...
end try
end repeat
end tell
end open
**免責 [#e8d1d582]
このスクリプトは、当方で動作確認はしましたが、すべの環...
**既知の問題 [#ped298ac]
-ファイルサーバにあるファイルをドラッグアンドドロップして...
-2回ドラッグアンドドロップしてしまった場合は、当然18時間...
**補足 [#y480d02d]
このスクリプトは、市川せうぞー氏の下記 URL にあるスクリ...
(DTPtechNote:598) ファイルの修正時間の変更
http://www.seuzo.jp/rubbs/search_html/msg00591.html
スクリプト配布に当たって、市川せうぞー氏に了解をいただ...
ページ名: