On 2/14/01 1:05 PM, "Remo Del Bello" <[EMAIL PROTECTED]> wrote:

> on 2/14/01 1:02 PM, Paul Berkowitz deftly typed out:
> 
>>> When I select the Inbox in the folder pane the name is blank on the title
>>> area on the right, above the messages. When I receive new messages a bold
>>> "(1)" appears indicating the number of unread messages, but there is no
>>> folder name in front of it. If I drag the Inbox to the desktop to create an
>>> MBOX file of the Inbox contents, the file is named "Folder". Three Advanced
>>> Rebuilds later I still have no name on the Inbox!
>>> 
>>> Help!?
>> 
>> Try running this script:
>> 
>> tell application "Microsoft Entourage"
>>   set name of folder id 1 to "Inbox"
>> end tell
> 
> Thanks for the prompt reply. Script Editor returns the following error:
> 
> Microsoft Entourage got an error: Can't
> Set name of folder id 1 to "Inbox".
> 
> Any other ideas?

Well, first let's see where we are. What does this get you in Result window;

tell application "Microsoft Entourage"
  get name of folder id 1
end tell



If that gets an error instead of "", try in succession:

tell application "Microsoft Entourage"
  get in box folder
end tell


tell application "Microsoft Entourage"
  get name of in box folder
end tell


tell application "Microsoft Entourage"
  set name of in box folder to "Inbox"
end tell


I suppose it's a built-in "safety feature" not to let you rename the inbox,
so what to do when it's screwed I don't know. Dan will.

-- 
Paul Berkowitz


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

Reply via email to