|    24/04/06 ~ 21:37 -0400 :
|    Daniel Schutzsmith,
|         " Re: Viewing Running Applications and Files "


But I want to see what browser windows are open and what is inside of them. I also want to determine the size and position of the window.

Anyone have any ideas?

Try polling the processes. See CarbonDeclares for some examples.
I have some applescripts to read window parameters, such as :

on run {appname, windname}
        set bnds to "0,0,0,0"
        set applic to appname
        tell application applic
                repeat with i from 1 to the count of windows
                        set nam to the name of window i
                        if nam contains windname then
                                set ww to window i
                                set bnds to the (bounds of ww)
                        end if
                end repeat
        end tell
        return bnds
end run
_______________________________________________
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