If I'm understanding you correctly, you want a script to open the app at a certain time, and close it at another time?
If so, this is what you need to do:
First, copy this code into Script Editor, which is found in /applications/applescript.
Code:
tell application "Azureus"
activate
end tell
Save it somewhere, making sure you make the file format an "application".
Then copy this code into Script Editor:
Code:
tell application "Azureus"
quit
end tell
Make sure you save this code as an "application" as well.
Next, open up iCal, and create a new event. Name it whatever you like, but make sure you set the alarm as "open file". Find your first "activation" script, and set this as the file. Choose a suitable time for it to activate, and you're halfway through! If needed, you can set the file to run daily, or monthly etc by clicking the "repeat" menu, and selecting an option.
Now, create another event, name it whatever you like, and set the alarm as "open file" find your second, "quitting" script, and set the alarm to open this file. Again, choose a suitable execution time, and choose a repeat option if you need to.
Hope this helps!
