RE: image property testing... take II

2003-02-28 Thread Dan Muey
> > I don't know much about the problem you are asking for. > But it seems to me that you're wrong when calling the > subroutine wanted. > > # File::Find wanted function > sub wanted; > It's actauilly not clling the routine it's declaring it. So it is valid perl but it's not actually callin

RE: image property testing... take II

2003-02-28 Thread Ramón Chávez
I don't know much about the problem you are asking for. But it seems to me that you're wrong when calling the subroutine wanted. # File::Find wanted function sub wanted; It must be: # File::Find wanted function &wanted; Shouldn't it??? -rm- - Original Message - From: Shawn Wilso

Re: image property testing... take II

2003-02-27 Thread R. Joseph Newton
Shawn Wilson wrote: > ... my code > surely isn't written stout enough to handle a 'use strict'. if someone > could tell me what i am STILL doing wrong i'd appreciate it. Hi Shawn, Please re-examine your operating precepts. By not using strict, you are passing up the best help you can get. If

RE: image property testing... take II

2003-02-27 Thread Dan Muey
> > ok, i have cleaned up the code, and fixed all of the mistakes > that i can > find, but i still can't get this tying to compile and run. > and, my code > surely isn't written stout enough to handle a 'use strict'. > if someone > could tell me what i am STILL doing wrong i'd appreciate i