Recently, "Dan Friedman" wrote: > I want to download a stack from my web site as a way to update my users. > However, all I seem to get are errors. > > First, I post the stack as a binary file to my web site. Then, I just run > this: > > put "http://www.mysite.com/updates/mystack.rev" into fileToDL > put "file:/Macintosh HD/myProduct/mystack.rev" into fileToSave > put url fileToDL into url fileToSave > > After it downloads and I try to "mystack.rev", I get: "There was a problem > opening that stack: stack was corrupted by a non-binary file transfer." > > Anything jump out at you? What am I doing wrong?
Try: put "binfile:/Macintosh HD/myProduct/mystack.rev" into fileToSave "binfile" means binary file, which is what you want when reading a stack. Otherwise, "file" means you're reading your stack as a text file. Regards, Scott Rossi Creative Director Tactile Media, Multimedia & Design ----- E: [EMAIL PROTECTED] W: http://www.tactilemedia.com _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
