Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Software - Troubleshooting and Discussion > Developer Center > double-checking an AppleScript Bug in Mail.app

double-checking an AppleScript Bug in Mail.app
Thread Tools
Professional Poster
Join Date: Oct 2001
Location: London
Status: Offline
Reply With Quote
Apr 25, 2004, 06:19 AM
 
compare these results of these two scripts:

[php]
tell application "Mail"
set aMessage to the first message of the first mailbox
set recHeadersList to every header of aMessage whose name is "Received"

recHeadersList
end tell
[/php]


[php]
tell application "Mail"
set aMessage to the first message of the first mailbox

set numHeaders to count of headers of aMessage
set recHeadersList to {}
set i to 1

repeat while i is less than or equal to numHeaders
tell header i of aMessage
if name is "received" then
set recHeadersList to (recHeadersList & content) as list
end if
end tell
set i to i + 1
end repeat
end tell

recHeadersList
[/php]

Shouldn't they both return what the second script returns?
     
   
Thread Tools
Forum Links
Forum Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Top
Privacy Policy
All times are GMT -5. The time now is 09:10 PM.
All contents of these forums © 1995-2011 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.7 © 2000-2011, Jelsoft Enterprises Ltd., Content Relevant URLs by vBSEO 3.3.2