Search found 4 matches

by tbharber
Sat Mar 05, 2011 10:01 pm
Forum: Mac Support
Topic: Script to convert media kind to "TV Shows" in iTunes
Replies: 0
Views: 1127

Script to convert media kind to "TV Shows" in iTunes

So currently I have a script that will import my download tv shows into iTunes when finished downloading. I also have a smart folder set up in iTunes called "shows" which contains all of my TV Shows.

What I am looking for is a way to take this smart folder called "shows" and automatically covert ...
by tbharber
Sat Mar 05, 2011 9:53 pm
Forum: Mac Support
Topic: How to launch Mac application after download
Replies: 3
Views: 2756

Re: How to launch Mac application after download

God Damn xenedar you nailed it. Did the chmod to the script and it worked like a charm. I did not think this was necessary because it ran fine in the Terminal but it worked. I have been looking into this for weeks and this is the first suggestion that I have seen that has worked.

Thanks a ton!
by tbharber
Fri Mar 04, 2011 10:30 pm
Forum: Mac Support
Topic: How to launch Mac application after download
Replies: 3
Views: 2756

Re: How to launch Mac application after download

BUMP!

Still cannot figure this one out. Anyone have any thoughts on how to launch a Mac application when downloads finish?
by tbharber
Tue Mar 01, 2011 3:24 am
Forum: Mac Support
Topic: How to launch Mac application after download
Replies: 3
Views: 2756

How to launch Mac application after download

I am trying to use the "Call script when download completes" feature to launch an application when my download completes. I have created a simple script with the following code:


#!/bin/sh
{
open /Users/Tim/Desktop/Convert.app
} &


The problem is the application never launches when the script is ...