Installing Mac::iTunes

2004-03-15 Thread Chuck Rice
I am a perl newbie and I am trying to install Mac::iTunes. When I do, I get lots of what look to be syntax errors about missing parentheses, and deprecated function calls, and such, and then iTunes launches, does some strange things to the screen and then the install finally fails. What did I

Re: Installing Mac::iTunes

2004-03-15 Thread Oliver Schnarchendorf
On Mon, 15 Mar 2004 17:58:54 -0800, Chuck Rice wrote: I am a perl newbie and I am trying to install Mac::iTunes. When I do, I get lots of what look to be syntax errors about missing parentheses, and deprecated function calls, and such, and then iTunes launches, does some strange things to

Re: Installing Mac::iTunes

2004-03-15 Thread Chuck Rice
At 6:22 PM -0800 3/15/04, Oliver Schnarchendorf wrote: Visit brian's sourceforge web site and file bug-report (with the output that 'make test' returns), and he might find the time to help you in the long run. Thanks Oliver. I reported it, but I think that he may have more important things to

Re: Installing Mac::iTunes

2004-03-15 Thread Oliver Schnarchendorf
On Mon, 15 Mar 2004 19:05:29 -0800, Chuck Rice wrote: The quick, FAST, and dirty way for you is to install the module with from CPAn with FORCE. I.e. FORCE INSTALL Mac::iTunes. I tried: %sudo perl -MCPAN -e 'force install Mac::iTunes' but the force did not seem to make a difference.

Urgent: Turning a script into a droplet

2004-03-15 Thread Rick Measham
Need some quick help ... how do I turn a perl script into a droplet (and when I do, do the dropped files appear in @ARGV still?) Cheers! Rick Senior Developer PrintSupply - Print Procurement Supply Management 18 Greenaway Street VIC 3105 Tel: (03) 9850 3255 Fx: (03) 9850 3277

Re: Urgent: Turning a script into a droplet

2004-03-15 Thread Sherm Pendley
On Mar 16, 2004, at 12:06 AM, Rick Measham wrote: Need some quick help ... how do I turn a perl script into a droplet (and when I do, do the dropped files appear in @ARGV still?) DropScript. http://www.wsanchez.net/software/ sherm--

Re: Urgent: Turning a script into a droplet

2004-03-15 Thread Rick Measham
On 16 Mar 2004, at 4:34 PM, Sherm Pendley wrote: DropScript. http://www.wsanchez.net/software/ On 16 Mar 2004, at 4:16 PM, Andrew M. Langmead wrote: One suggestion would be DropScript http://www.wsanchez.net/software/ It can turn any script or program into a droplet. (by dropping the script or

Getting the size of a folder with Mac::Glue

2004-03-15 Thread Rick Measham
I'm trying to get the size of a folder and figure Mac::Glue would be the way to go. However I'm getting back a 0: use Mac::Glue; my $finder = new Mac::Glue 'Finder'; die(No such file: $monthdir/$folder/) unless -e $monthdir/$folder/; my $size = $finder-data_size($monthdir/$folder/); print $size;