Filtering tasks in Entourage by Project

I am trying to get a list of all my Entourage tasks by projects that I have specified. When I try to get the names of specified tasks contained in a certain project, I get a list of tasks that are not in the Project at all. I want to send the list of tasks contained in the denoted project to a Filemaker database for tracking.

tell application “Microsoft Entourage”
activate
name of every task of application “Microsoft Entourage” whose project list is “Submission Strategy”
end tell

The script, as written gives me a list, but none of the items in the list are tasks that have been previously marked by the specific project category.

Can any one help?

Thanks

JohnnyK

I don’t know why your whose isn’t working.

I did this by looping through all the tasks and testing the project for each and then exporting only when I go a match. I had very few tasks, though, so it was fast enough for my purposes.