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