Once I make a new task using applescript, I'd like it to be selected for further editing. I tried this and it didn't work:
tell theProject
set thetask to (make new task with properties {start date:todayDate, name:subj, note:messagebody, context:theContext})
select thetask
end tell
Anyone have an idea how to make this work? I'm open to GUI scripting solutions.
tell theProject
set thetask to (make new task with properties {start date:todayDate, name:subj, note:messagebody, context:theContext})
select thetask
end tell
Anyone have an idea how to make this work? I'm open to GUI scripting solutions.