View Single Post
Catch the result of the 'make' command like so:
Code:
set newTask to make new inbox task with properties {name:"test", note:"test 2", flagged:true}
or
Code:
make new inbox task with properties {name:"test", note:"test 2", flagged:true}
set newTask to the result
In the second form you *must* get 'result' immediately after the command that generates that result, or it will be lost forever.

Last edited by teobaldo; 2011-07-28 at 11:40 PM..