So, if field "myHEAD" contains "Stuffed Aubergines", on exporting from that field I SHOULD end up with a file called:
Stuffed Aubergines 4/23/25.txt
BUT I cannot seem to manage that:
Code: Select all
on mouseUp
put the fld "myGUFF" into GUFF
put GUFF into url("file:" & fld "myHEAD" && the date & ".txt")
get the longFilePath of it
set the itemDelimiter to slash
set the defaultFolder to item 1 to -2 of the longFilePath of it
end mouseUp