: open(LABEL,">/path/to/the/$file.gif");

    This should be working. Perhaps $file does not have in it
what you think it does. Since I/O operations should be checked
for success anyway, try this.

open LABEL, ">/path/to/the/$file.gif"
    or die qq(Cannot open "/path/to/the/$file.gif": $!);

Yup it works great, I just wanted to check first.  Thanks for the help.

- Grant

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to