Code: Select all
ask file "Save This File As:" with the title of stack stackName & ".abc" as sheet -- in a sandboxed app you need that the save as dialog returns a path with the extension, you cannot add it later
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
ask file "Save This File As:" with the title of stack stackName & ".abc" as sheet -- in a sandboxed app you need that the save as dialog returns a path with the extension, you cannot add it later
Code: Select all
...
ask file "Save This File As:" with the title of stack stackName & ".abc" as sheet
put it into tFile2Save
if char -4 to -1 of tFile2Save <> ".abc" then
put ".abc" after tFile2Save
end if
## Carry on with happy saving here...
...