Jump to content

Keeping window above all other windows


 Share

Recommended Posts

Anyone know how to keep a certain window always on top, if they minimize it it automatically comes back up where it was.

Basically i'm trying to make a bot for Diablo II, and if you use Window mode on it.

I need to know this because many errors could occur if:

1.Someone forgets to put a away msg up and they get IMed.

2.Some how the window isn't in the right spot.

3.Some other kind of pop up or error.

Please help me i'm still very new to Autoit, I would love to learn as much as I can.

Link to comment
Share on other sites

I believe he wanted the window to always be set on top as well.

While 1

    $win = WinGetState ("")

    If @error Then

        MsgBox (0,"","window is not found"

    ElseIf $win <> 32 Then

        WinSetState ("","",@SW_MAXIMIZE)

        WinSetOnTop ("", "")

    EndIf

    Sleep(500);add delay to save on cpu

WEnd

Fill in the blanks, the"".

<{POST_SNAPBACK}>

Edited by SerialKiller
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...