Take this script, and save it as an application. You can then put this app in the dock for easy access. First time you run it it will ask you to select a note, after that it will remember that note and always open it.

Alternatively, save the script as a script document and put it in the Entourage Script Menu Items folder - you can even assign a keyboard shortcut to the script by using a 'special name'.

-- Open Note v1.0 (2008-11-04)
-- an applescript by Barry Wainwright <mailto:[EMAIL PROTECTED]>
-- Opens a Note in Entourage - save as an applet to run from the dock
-- This script released under a Creative Commons Attribution, NonCommercial,-- ShareAlike 2.0 England & Wales License. -- see <http://creativecommons.org/licenses/by-nc-sa/2.0/uk/> for full details
property noteID : missing value
tell application "Microsoft Entourage"
        if noteID is missing value then
                try
                        set theNotes to name of every note
                on error errMsg number errNum
                        if errNum = -1728 then
display dialog "No Notes Defined!" with title "Error!" buttons {"Abort"} ¬
                                        default button 1 giving up after 10
                        else
display dialog "An error occured: \"" & errMsg & "\"" with title "Error!" ¬
                                        buttons {"Abort"} default button 1 
giving up after 10
                        end if
                        return
                end try
set chosenNote to first item of (choose from list theNotes with prompt ¬
                        "Please select a note to open when the script is 
run..." ¬
with title "Entourage Notes" cancel button name "Abort" OK button name "Select")
                set noteID to ID of note chosenNote
        end if
        open note id noteID
end tell

On 24 Oct 2008, at 13:54, Dan Dixon wrote:

Chris,

Sorry, didn't realize you needed to continually update the note. You could probably make a script that opens the note within Entourage. Then you can
put the script in the dock or in the Entourage script menu.

Dan


From: Douglas Christopherson <[EMAIL PROTECTED]>
Reply-To: "Entourage:mac Talk" <[email protected]>
Date: Thu, 23 Oct 2008 15:50:55 -0700
To: "Entourage:mac Talk" <[email protected]>
Subject: Re: Putting NOTE in Mac Dock

Thanks Dan...
Mac OS X 10.4.11, Entourage 11.4.0 (080122)

Previously tried that.
Mac dock will not open for drag directly from Entourage>Notes>TEST- Note.

Exported TEST-Note to Desktop by dragging.
Creates Desktop>TEST-Note.ics.
Put in dock.
Dock icon opens Desktop>TEST-Note.ics.
Save changes to Entourage>Notes>TEST-Note.
But Desktop>TEST-Note.ics unchanged.

Thus on clicking dock icon again...
Opens Desktop>TEST-Note.ics with original data.
All previous changes gone.
Changes are in Entourage>Notes>TEST-Note.

If make new changes, then save again replaces Entourage>Notes>TEST- Note.

Evidently Dock links to Desktop>TEST-Note.ics
But there is no updating link from Entourage>Notes>TEST-Note to
Desktop>TEST-Note.ics.

Bit of disconnect?

Thanks
Chris Christopherson
PEGGY’S ALASKAN CABBAGE PATCH B&B
A Touch of Old Alaska in Modern Oregon
194 S Second St, Lebanon, OR 97355
B&B 541.258.1774--Home 541.451.4910
http://www.Cabbage-Patch-B-and-B.com





On 10/23/08 2:56 PM, "Dan Dixon" <[EMAIL PROTECTED]> wrote:

If you drag the note out of Entourage, you can then put the note in the dock. Be sure to drag it from the Notes module or it'll get removed from the
Project.

Dan


From: Douglas Christopherson <[EMAIL PROTECTED]>
Reply-To: "Entourage:mac Talk" <[email protected]>
Date: Thu, 23 Oct 2008 13:52:06 -0700
To: "Entourage:mac Talk" <[email protected]>
Subject: Putting NOTE in Mac Dock

Want quick access to a Project NOTE.
Can it be put in the MAC Dock?
How?

Thanks
Chris Christopherson
PEGGY’S ALASKAN CABBAGE PATCH B&B
A Touch of Old Alaska in Modern Oregon
194 S Second St, Lebanon, OR 97355
B&B 541.258.1774--Home 541.451.4910
http://www.Cabbage-Patch-B-and-B.com



--
To unsubscribe:
<mailto:[EMAIL PROTECTED]>
archives:
<http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>



--
To unsubscribe:
<mailto:[EMAIL PROTECTED]>
archives:
<http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>



--
To unsubscribe:
<mailto:[EMAIL PROTECTED]>
archives:
<http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>



--
To unsubscribe:
<mailto:[EMAIL PROTECTED]>
archives:
<http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>


--
To unsubscribe:
<mailto:[EMAIL PROTECTED]>
archives:
<http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>

Reply via email to