----- Original Message ----- 
From: "Tim Welford" <[EMAIL PROTECTED]>
> Does anyone know of any resources with info creating such panel sets?


You can find some info here:

These are pre 2004 so you still need to explore the windowtype commands in
MX04 (i.e. tool, document etc.) but they still work as far as I can tell.

http://www.dia3.de/director/source/miaw.htm

Check out the code in these examples.
Place them in the xtras Folder of director before opening Director.
They will then be listed in the xtras menu in Director. A Folder will create
an entry in the dropdown list that you can open up:
MyTools(folder in xtras folder)
--myUtility1(file)
--myUtility2
--etc.

Typical MIAW Formation(pre MX 2004 syntax)

on openWindow
  Mywindow = the windowList[the windowList.count]
  Mywindow.rect = Mywindow.rect + 100
  Mywindow.windowType = 4
  Mywindow.title = "My Titel"
end openWindow

on closeWindow
  forget the activeWindow
end closeWindow


-- Get member

MIAW: myMember = getMember()

on getMember

  tell the stage

    myCast = the activeCastLib
    myMemberNum = castLib(myCast).selection[1][1]
    SelectedMember = member(myMemberNum, myCast)
    return SelectedMember

  end tell

end getMember


Frank

[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email 
lingo-l@penworks.com  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]

Reply via email to