Garanator Posted December 20, 2005 Posted December 20, 2005 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 SmOke_N Posted December 20, 2005 Moderators Posted December 20, 2005 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.
Garanator Posted December 20, 2005 Author Posted December 20, 2005 I was hoping for help and how to begin
Moderators SmOke_N Posted December 20, 2005 Moderators Posted December 20, 2005 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.
Garanator Posted December 20, 2005 Author Posted December 20, 2005 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 SmOke_N Posted December 20, 2005 Moderators Posted December 20, 2005 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now