want to see a crashing mail.app and filemaker ?
want to see a crashing mail.app and filemaker ?
- Subject: want to see a crashing mail.app and filemaker ?
- From: Jacco Rens <email@hidden>
- Date: Sat, 6 Jul 2002 09:16:29 +0200
The following script makes Mail.app and Filemaker crash on my system, am
i doing something wrong here?
global mdate
global msubject
global mbody
global msender
set mmailbox to "Filemaker"
tell application "Mail"
set x to count of messages of mailbox mmailbox of account "personal
mailboxes"
repeat with i from 1 to 5
set mdate to date received of message i of mailbox mmailbox of
account "personal mailboxes" as text
set msubject to subject of message i of mailbox mmailbox of
account "personal mailboxes" as text
set mbody to content of message i of mailbox mmailbox of
account "personal mailboxes" as text
set msender to content of message i of mailbox mmailbox of
account "personal mailboxes" as text
tell me to storemail()
set i to i + 1
end repeat
end tell
on storemail()
tell application "FileMaker Pro"
create new record with data {mdate, msender, msubject, mbody}
end tell
end storemail
--
Best,
Jacco Rens
Netherlands
http://www.apple.com/switch
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.