8/12 chris :
>Ok, lots to digest... but I do think it has exceeded it effort threshold 
>for what it will save in my manual clicking.

Well, Emailer is a network game, right? So it's not really efforts ;)

And our team won, cool. Too bad the high scores list is broken: can't 
find it anywhere.

Without a prefs file, the actual mods will be short (this works):

------------ Script 2 (Emailer) ------------
property messagesToOpen: {}
tell app "Emailer"
  if not messagesToOpen = {} then
                  repeat with thisMessage in messagesToOpen
                          open thisMessage
                  end
  end
end
--------------------------------------------
------------ Script 1 (elsewhere) ----------
-- your iPhoto script, plus:

set tempScript to load script Script2
     -- where Script2 is an alias to Script 2
set messagesToOpen of tempScript to theMessages
     -- where theMessages is a list of the messages
     -- returned by your "make new" commands
store script tempScript in Script2 with replacing

tell app "Emailer"
                activate
                select menu item "Script 2" of menu 8
     -- if menu 8 is Emailer's scripts menu (it is for me)
     -- and "Script 2" is the name of Script 2 (hmm)
end
--------------------------------------------

Until you resave Script 2, it will always open the last set of messages 
(like a "recent messages" feature, from there one can imagine some 
"Remember selected messages"/"Open last set" scripts, and all kinds of 
weird new single player levels for Emailer).

----
VRic

___________________________________________________________________________
To unsubscribe send a mail message with a SUBJECT line of "unsubscribe" to
<[EMAIL PROTECTED]>  or  <[EMAIL PROTECTED]>

Reply via email to