I said :

try

          put URL "binfile:" & sourceURL into URL ("binfile:" & destinationURL)

No. Don't. I was wrong. That avoids the error message, but gets the wrong result. It gives you the content of the URL "binfile:" (i.e. empty) plus the value of the variable sourceURL

or, if you're cautious like me,

          put URL ("binfile:" & sourceURL) into URL ("binfile:" & 
destinationURL)

Yes. Do it this way. Use parens for URLs

Alex.


_______________________________________________
use-livecode mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to