View Single Post
Hello,

I started making an applescript that pops up the quick entry panel.
But after closing the quick entry I would like to get hold of the task again.
Is this possible?

The only solution I found to wait for the quick entry panel to close was this:

Code:
tell quick entry
	open
	set theTask to make new inbox task with properties propRecord
end tell
			
repeat while quick entry is visible
end repeat
theTask seems to go out of scope after the quick entry is closed.
Is it possible to get it back? By id?

Thanks in advance for any help on this!