Jump to content

Paultimate

Members
  • Posts

    2
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Paultimate's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hello again. I need help getting a full-screen application to come to front. I've tried 'maximize' flags and WinActivate, but the full-screen programming environment im trying to get to come to front doesn't come to front. How do people usually get an application that is full-screen come to front & active with with autoit? I can set the full-screen application to not be full-screen, but that sets new problems with how i use it, so it needs to be full-screen. Opt("WinTitleMatchMode", 2) if ProcessExists("notepad.exe") Then winactivate("notepad") EndIf Sleep(1500) ; Wait 4 seconds WinActivate("Sublimetext") ;WinSetState("Sublimetext", "", @SW_MAXIMIZE)
  2. Hello! Ive been looking around for a good hour now and testing many bits of code but i cant figure it out. Im hoping its OK for me to post the question and hopefully its basic. So what i am doing is creating lots of lua code for addons for Wow. The problem is Wow does not have a nice sandbox environment really to test code live. So this is the process: edit some code in Sublime text -> save code -> tab to wow -> reload UI to see changes Seems easy, and it is. Now do this 500 times. It starts to get tiresome. I would like to automate everything from the save to the UI reload via Auoit it. What I am stuck on is getting full-screen Wow to activate. Having it as a window is no good because I need the full screen to see my UI changes properly. How do I get the wow.exe window to come up? Sublime-text comes up fine, saves (when i add this in), and then nothing happens. You can see below I also tried WinSetState, and many other flags etc. Opt("WinTitleMatchMode", 2) if ProcessExists("sublime_text.exe") Then winactivate("Sublime") EndIf Sleep(1500) ; Wait 4 seconds WinActivate("World of Warcraft") ;WinSetState("World of Warcraft", "", @SW_MAXIMIZE)
×
×
  • Create New...