何百ものカスタム FileMaker Pro .fp7 ファイルを開いて、メニュー項目「スクリプトのエクスポート...」で保存する必要があります。これが私がこれまでに持っているものです。
tell application "Finder"
set fl to files of folder POSIX file "/Users/EDITOR/Desktop/DROP/" as alias list
end tell
repeat with f in fl
tell application "FileMaker Pro"open f
activate
end tell
tell application "System Events"
tell process "FileMaker Pro"
click menu item "Export Script..." of menu "File" of menu bar item "File" of menu bar 1 of application process "FileMaker Pro" of application "System Events"
delay 0.4
keystroke "/Users/EDITOR/Desktop/DROP/"
end tell
end tell
end repeat
私の課題は次のとおりです。FileMaker Pro はファイル名を [名前のエクスポート] ウィンドウに移動しません。Untitled.tab とだけ表示されます。ファイルが開かれているとき、またはエイリアスが作成されているときに、ファイル名をソースしてコピーする方法はありますか? 後で貼り付けるためにクリップボードに保持するか、繰り返し機能を一時停止して、各 .tab ファイル名を入力します。
ありがとう、G.