Ho un file .app AppleScript che apre un documento Word. Ho creato un pulsante in Excel 2016 che assegna un nome file a una variabile. Mi piacerebbe essere in grado di passare questo nome di file ad un AppleScript .app ed eseguire il .app facendo clic sul pulsante.
È possibile? Se sì, come?
Sub buttontest2()
Dim objdoc As Object
FileName = "/Volumes/256SSD/word docs/shortcut keys.docx"
tell application "Microsoft Word"
launch
open file fileName
end tell
End Sub
I do not know how to incorporate the tell loop into VBA. There is probably a better method for doing this bit I am not aware of it as I am just starting with Applescript