Jim Ault wrote:

--URL  file:  only works for  'text' files, not images
or other binary code files.

I misread this for a moment before I understood what Jim meant. In case anyone else did the same thing, the above means that the URL "file" specification only works on text files. It doesn't mean you can't write binary files using the URL keyword. To write binary data to a file using the URL keyword, substitute "binfile" for "file".

Examples:

 put myTextData into url ("file:"& myPath) -- text files only
 put myBinaryData into url ("binfile:" & myPath) -- binary files

--
Jacqueline Landman Gay         |     [EMAIL PROTECTED]
HyperActive Software           |     http://www.hyperactivesw.com
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to