View Single Post
Answered my own question just filtered the list:
Code:
		tell document 1 of it
			set allTasks to task of it
			set lstOPTasks to {}
			repeat with aTask in allTasks
				if (outline depth of aTask) is 1 then
					set end of lstOPTasks to aTask
				end if
			end repeat
		end tell