Re: Scheduling an application

2009-06-05 Thread Tom Hohensee
You are going to have to programmatically load the plist. On Jun 3, 2009, at 4:52 AM, rethish wrote: hi, I want to launch my application using a time based scheduling. I have created a plist by setting the keys: Label, onDemand, ProgramArguments and startCalenderInterval. And I placed the pl

Re: Scheduling an application

2009-06-03 Thread Jerry Krinock
On 2009 Jun 03, at 08:48, Nick Zitzmann wrote: On Jun 3, 2009, at 3:52 AM, rethish wrote: I want the plist to be loaded automatically on the specified time and launch my application. Automatic plist loading only happens on reboot (if it's in the system library) or login (if it's in the

Re: Scheduling an application

2009-06-03 Thread Nick Zitzmann
On Jun 3, 2009, at 3:52 AM, rethish wrote: I want the plist to be loaded automatically on the specified time and launch my application. How can be it done? Automatic plist loading only happens on reboot (if it's in the system library) or login (if it's in the user's library). You'll have

Scheduling an application

2009-06-03 Thread rethish
hi, I want to launch my application using a time based scheduling. I have created a plist by setting the keys: Label, onDemand, ProgramArguments and startCalenderInterval. And I placed the plist in /Library/LaunchDaemons. Then i loaded the plist manually using the terminal. It works fine on the s

Re: Scheduling an application

2009-01-07 Thread Scott Ribe
If you mean run a task at a particular time when your application is already running, see NSTimer. If you mean launch your application at a particular time, see launchd--although what you'd probably want is launchd to run a background app at login which would always run, monitoring the schedules,

Scheduling an application

2009-01-06 Thread Mahaboob
I need to implement Scheduling In my application.For that I designed the UI having date and time fields and ok and cancel button. When I'm clicking the ok button, the opened project should be added into the schedule task and it should work on time. How can I invoke scheduler to my application? How