*This message was transferred with a trial version of CommuniGate(tm) Pro*
I have wanted something like this as well. Currently you can only cycle
through the viewable items of a folder. I would like to switch back and
forth in AppleScript so I can make some manipulations to all items then
reset the folder to "View Unread Only". Jerome consider this a feature
request.

Mikael, if you only want to work on viewable items in a folder then
something like the following should iterate through those items.

        tell application "PowerMail"
                set totalMessages to number of messages of msgFolder
                repeat with msgNum from totalMessages to 1 by -1
  [other stuff here]
  end repeat
end tell

--
Andy Fragen

On Wed, Mar 17, 2004, Mikael Byström said:

>
>Is there some natively PowerMail way, that is a non System Events way, to
>get to the contents of the "View Only" window? I see no clear way in the
>dictionary to refer to either this window nor its contents.
>
>What I want to accomplish is to be able to select a message and filter
>the message display according to, for example, its subjectline or from
>address. Stuff like that. As one can get the data from the message, it
>would be very useful to use that data elsewhere in order to find more
>related information.
>
>PM 4.2.1 | OS X 10.3.2 | Powerbook G3/266 | 256 MB RAM | 20 GB HD
>
>
>
>


Reply via email to