in reply to open $self->{FILE}

Change

print $self->{FILE} "some text here\n";

to

print { $self->{FILE} } "some text here\n";

Regards,

PN5