PRINT PROJECT LIST...

  • Thread starter Todd Shorthouse
  • Start date
T

Todd Shorthouse

Does anyone know of a way to print out a plain old Project Listing?

I have a lot of Projects, however, I cannot seem to find out how to print a
simple list that I can take with me on the road...
 
B

Barry Wainwright [MVP]

Does anyone know of a way to print out a plain old Project Listing?

I have a lot of Projects, however, I cannot seem to find out how to print a
simple list that I can take with me on the road...

Print what? Just a list of the names of the projects?

This script will create a list of the projects in a new note and open that
note so you can print them.

HTH!


tell application "Microsoft Entourage"
set thenames to name of every project
set AppleScript's text item delimiters to {return}
set theNote to make new note with properties {name:"Project Names",
content:thenames as string}
open theNote
end tell
 
T

Todd Shorthouse

Okay, I got the lists to work to my liking by using the views, however, when
I have a list to view in Task mode I can print from there, but when I have a
list to view in Project mode, I cannot print ­ the button is ghosted... Why
cannot I print this list ­ it would solve all my problems!

Thanks!

Todd.
 
T

Todd Shorthouse

Actually, if I select one item from the Project list it will print that
item, but I cannot print the entire list...
 
Top