Make command with file
Make command with file
- Subject: Make command with file
- From: "Destrebecq, Olivier" <email@hidden>
- Date: Thu, 31 May 2001 10:45:56 -0500
ok i manage to create a file, but i want to create it in the Temporary item
folder
this works
tell application "Finder" set BootVol to name of startup disk set TmpItems to BootVol & ":Temporary Items:" as text make file at startup disk with properties {name:"result"}end tell
but this fail
tell application "Finder" set BootVol to name of startup disk set TmpItems to BootVol & ":Temporary Items:" as text make file at folder TmpItems with properties {name:"result"} set test to 1end tell
the set test to 1 line is not even executed
the make command seems to crash
I'm running 9.1, but the solution should work from 7.5.5 to 9.1 if possible
any idea