Re: AS-Studio breaks list limits?
Re: AS-Studio breaks list limits?
- Subject: Re: AS-Studio breaks list limits?
- From: julifos <email@hidden>
- Date: Wed, 14 May 2003 20:46:28 +0200
>
On 5/14/03 12:10 AM, "julifos" <email@hidden> wrote:
>
>
> Hmmm... Though there was the same limits for any kind of objects...
>
>
>
> Then I should report a bug (stack overflow) after item 5537 using objects
>
> {message id x of application "Microsoft Entourage"}, running from an applet?
>
>
How are you making your lists? I believe there may be another limitation
>
when concatenating over and over again. Do you 'set end of theList to
>
newItem'?
Yes!
#####################
tell application "Microsoft Entourage"
set msgList to {}
set i to 1
repeat
try
set msgList's end to message i of folder "7850 messages"
on error msg number n
display dialog "" & i & return & msg & return & n
exit repeat
end try
set i to i + 1
end repeat
end tell
msgList
#####################
But today all works fine! (perhaps yesterday all worked ok, too?)
;-)
JJ
_______________________________________________
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.