On Mar 14, 2006, at 6:15 PM, Adam Ernst wrote:

On Mar 14, 2006, at 8:04 PM, Michael Diehr wrote:

I wonder if this might work
  http://developer.apple.com/technotes/tn2002/tn2068.html

Basically, i want to make my RB window be on the absolute front of the window list.
Any ideas?
thx

    Const kCarbonLib = "Carbon.framework"
Soft Declare Function GetWindowGroupOfClass Lib CarbonLib (windowClass as UInt32) as Ptr Soft Declare Function SetWindowGroupLevel Lib CarbonLib (inGroup as Ptr, inLevel as Int32) as Int32

for winClass as UInt32 = 1 to 16 // Set all windows to be above the capture window
      Call SetWindowGroupLevel(GetWindowGroupOfClass(winClass), lvl)
    next

Adam Ernst

Thanks adam, but I'm not sure how this is used...
1. What is 'lvl' defined as?
2. How does one un-do the change?
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to