specialFolderPath
Posted: Wed Apr 23, 2014 11:02 am
Hi there,
That's my problem:
have a button to choose a file, into the mouseUp event I have this
in tFilePath I find the correct path (the system folder Documents), but the file selection window show me the last folder opened.
what's wrong?
thanks for your attention
franco
That's my problem:
have a button to choose a file, into the mouseUp event I have this
Code: Select all
on mouseUp
put specialFolderPath("Documents") into tFilePath
answer file "Please choose a file"
if the result is not "cancel" then
put it into tFilename
put url ("file:" & tFilename) into field "text"
end if
end mouseUp
what's wrong?
thanks for your attention
franco