Jump to content

Recommended Posts

Posted

I need to make a gui right above the clock on the computer on the bottom right part of the screen that will not move even if i try to make it move. An example of this would be like when someone logs onto msn messenger or aim, the msg box that appears but can't be moved. Idk if that made sense

Garanator

  • Moderators
Posted

Cool... can't wait till you finish it...

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

  • Moderators
Posted

:P Oh! In that case... what have you tried so far? Have you tried the 'Koda' in your SciTe to make the GUI, looked at the GUI options in the Help File? See anything there that might give a hint to what you 'feel' might work?

Have any 'non-working/working' code that you can post?

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Posted

I didn't look at anything really and just kindof gave up now i'm having trouble with something else lol

Do

WinActivate("Diablo II","")

Until sleep(10000)

How do I make it so that everytime i alt tab out it re activates diablo 2?

  • Moderators
Posted

Take a gander at HotKeySet() in the helpfile...

HotKeySet("!{TAB}", "ActivateDiablo")

While 1
;script here
    Sleep(1000)
WEnd

Func ActivateDiablo()
    WinActivate("Diablo 2 Title")
;MsgBox(0, "Test", "Test so you can see it work")
EndFunc

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

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
×
×
  • Create New...