<HTML>
<HEAD>
<TITLE>Re: Decompression question [2]</TITLE>
</HEAD>
<BODY>
<FONT FACE="Geneva">On 1/30/02 3:17 PM, "Geoff Canyon" <gcanyon@inspiredlogic.com> wrote:<BR>
<BR>
<FONT COLOR="#0000FF">> Have you tried to separate the issue into pieces by copying the file to the OS <BR>
> X machine using a different (outside of Revolution) method? That way you can <BR>
> tell if the FTP is the issue or the compression is the issue.<BR>
> <BR>
> regards,<BR>
> <BR>
> Geoff<BR>
> <BR>
> _______________________________________________<BR>
> use-revolution mailing list<BR>
> use-revolution@lists.runrev.com<BR>
> http://lists.runrev.com/mailman/listinfo/use-revolution<BR>
</FONT><BR>
Geoff,<BR>
<BR>
This is the test script I've run only to get the same error:  decompress: string is not compressed data<BR>
<BR>
<BR>
on comp<BR>
  put "PowerBookHD/Revolution Projects/someProject.rev" into tLocalFile<BR>
  put "PowerBookHD/Revolution Projects/SomeProject2.rev" into tCompressedFile<BR>
  set the cursor to busy<BR>
  put compress(tLocalFile) into URL tCompressedFile<BR>
end comp<BR>
<BR>
Everything’s OK on compress...<BR>
<BR>
on decomp<BR>
  put "PowerBookHD/Revolution Projects/someProject.rev" into tLocalFile<BR>
  put "PowerBookHD/Revolution Projects/SomeProject2.rev" into tCompressedFile<BR>
  set the cursor to busy<BR>
  put decompress(tCompressedFile) into URL tLocalFile<BR>
  toplevel stack tLocalFile<BR>
end decomp<BR>
<BR>
<BR>
-- <BR>
Tim<BR>
</FONT>
</BODY>
</HTML>