Ok, so i made this applescript for xtorrent which starts it, and quits it every hour, so i can download without the speed limit..
I made it very simple and it looks like this,
repeat
tell application "Xtorrent" to activate
delay 3550
tell application "Xtorrent" to quit
delay 30
end repeat
I also made a very simple interface for it, with a run and a quit button, but everytime I run the applescript it does everything i ask, but i can't quit it, only with force quit. So today I pasted it into Xcode
and tried everything, button to button, but I just can't get it quit. I should be able to end the repeat when i push the stop button. like that I would be able to start it back later without having to force quit it each time.
Alse I have been told, that Applescript is very limited in doing applications, maybe it would be better to do this in any other programming language, or is it possible to do this with applescript?
Really thanx for all your help
I made it very simple and it looks like this,
repeat
tell application "Xtorrent" to activate
delay 3550
tell application "Xtorrent" to quit
delay 30
end repeat
I also made a very simple interface for it, with a run and a quit button, but everytime I run the applescript it does everything i ask, but i can't quit it, only with force quit. So today I pasted it into Xcode
and tried everything, button to button, but I just can't get it quit. I should be able to end the repeat when i push the stop button. like that I would be able to start it back later without having to force quit it each time.
Alse I have been told, that Applescript is very limited in doing applications, maybe it would be better to do this in any other programming language, or is it possible to do this with applescript?
Really thanx for all your help