Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Make a MIAW close itself

Status
Not open for further replies.

casman40

Technical User
Feb 18, 2004
1
US
I'm working on a project where I've made a Director movie that opens a MIAW, which is a previous project that the client would like to access from this new project. I'd like the MIAW to be the same size as the spawning movie, but if I do that it covers up my close window button. There does exist a QUIT button in the older project that could be repurposed as a close button, but even as a quit button it doesn't work, just halts the MIAW. Any ideas, anyone?
 
You can close the MIAW itself:
Code:
--
on mouseUp me
  window("miaw").close()
end mouseUp
--
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top