Hi,
It depends of what you mean by "send to the back".

If you mean "hide the application", like when you choose the "Hide <current application" menu item, it can be done by a declare or using apple script.

For MacOS X:
tell application "System Events"
        set i to first process whose frontmost is true
        set visible of i to false
end tell

For MacOS 9:
tell application "Finder"
        set i to first process whose frontmost is true
        set visible of i to false
end tell

If you mean "put all other applications in front of your", then the only way is to bring every other application to the front , like this:

tell application "System Events" --or "Finder" for MacOS 9
        set i to every process whose frontmost is false
        set c to 1
        repeat
                if c > (count items of i) then exit repeat
                set p to item c of i
                set frontmost of p to true
                set c to c + 1
        end repeat
end tell

(but the second case should probably not be done).

Le 3 août 06 à 00:12 Matin, Eric Richards a écrit:

Hi -

How do I send my app to the back, for Os 9 &  10, with Rb tripple 5 ?

_______________________________________________
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