On Thursday, December 23, 2004, at 12:00 PM, Mark Smith wrote:

on savePrefs
put "file:" & specialFolderPath("Preferences") & "/MyPrefs" into fName
put thePrefs into URL fName
end savePrefs   

This works fine in theIDE, but not at all in the standalone. The file is simply not updated.

Any ideas?

Thanks

Mark Smith

if the platform is "MacOS" then put specialFolderPath("preferences") into regStatGoPath put regStatGoPath & "/text.txt" into stashAdX end if

  if there is a file stashAdX then
    answer Yes, there is a file"
    put URL ("binfile:" & stashAdX) into temp
    put compress(temp) into hipR
    put base64Encode(hipR) into URL ("binfile:" & stashAdX)
end if

or:

 put URL ("file:" & stashAdX) into temp
 put temp into URL ("file:" & stashAdX)

HTH,

Mark

_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to