RE: lingo-l always on top

2002-04-15 Thread Sean Wilson

   please, there is a way to do a projector that is always on 
 top, not going
 to a second plane when other window  is active?

Buddy API. Find it at:

http://www.mods.com.au

The function/call you want is:
baSetWindowState( baWinHandle(), StayOnTop )

(it's free for 2 functions, so you're OK with the above)

HTH,
-Sean.
[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 
[EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]



Re: lingo-l always on top

2002-04-15 Thread Jason Je

Hi...

MasterAPP's mappKeepOnTop does the job...

You can get it from http://www.updatestage.com/xtras/masterapp.html

Below are from the MasterAPP Manual
---
mappKeepOnTop ( windowIDNum )
windowIDNum: integer window ID obtained from another method
Returns: OK or string beginning with Error:

Win32-only method. Window is displayed on top of all other windows, even 
when other app's windows are activated. Useful for making a Director 
projector behave like a floating tool palette.

Example:

on startMovie
  set windowID = mappDirectorMainWindow
  mappKeepOnTop(windowIDNum)
end

---

HTH

Jason


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.

[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 
[EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]