i am new to applescript and am trying to use applescript to launch some powerpoints from a flash movie off of a cd. i have it working locally, but need to know what to set the path to if i am calling an applescript on a cd to launch a pps on the same cd
the more i think about this, the more i think you should try a ‘path to me’ command. if your AppleScript is compiled, and on the CD, then try something like:
tell application "Finder"
activate
set myPath to (container of (path to me)) as string
select file myPath & "NY.pps"
open selection
end tell
if that’s not it, then you could try something like:
tell application "Finder"
activate
select file "NY.pps" of folder "NewYork" of folder "Global" of folder "GlobalCD" of folder "Volumes"
open selection
end tell