• Visit Rebornbuddy
  • Background mode

    Discussion in 'Archives' started by ecxtimmy, Jan 21, 2010.

    Thread Status:
    Not open for further replies.
    1. ecxtimmy

      ecxtimmy Member

      Joined:
      Jan 15, 2010
      Messages:
      41
      Likes Received:
      0
      Trophy Points:
      6
      Can HB be run minimized. I seem to get problems unless I run it up, now I can have windows in front of it but if its minimized it seems to have problems moving and what not
       
    2. whatcha413

      whatcha413 Member

      Joined:
      Jan 15, 2010
      Messages:
      930
      Likes Received:
      2
      Trophy Points:
      16
      I always select window mode and set it to the smallest resolution. But never minimize. just run programs over them and they work perfectly fine
       
    3. whatcha413

      whatcha413 Member

      Joined:
      Jan 15, 2010
      Messages:
      930
      Likes Received:
      2
      Trophy Points:
      16
      When you need to see your desktop just right click your task bar and click Show desktop.
       
    4. king

      king Member

      Joined:
      Jan 15, 2010
      Messages:
      463
      Likes Received:
      1
      Trophy Points:
      18
      Hb the program can run while minimized but the WoW screen cant be minimized
       
    5. snoweey

      snoweey Member

      Joined:
      Jan 15, 2010
      Messages:
      416
      Likes Received:
      2
      Trophy Points:
      18
      my wow runs minimized just fine

      win 7 btw
       
    6. j0achim

      j0achim New Member

      Joined:
      Jan 15, 2010
      Messages:
      532
      Likes Received:
      15
      Trophy Points:
      0
      Heres a small app i wrote in AutoIt, as i have a bot running at work id rather hide em so people around me dont get annoyed thinking im playing during work time.


      Simple and clean and does the work.

      Hides or shows all instances at once with ALT+Shift+H

      Code:
      
      ;-----------------------------------------------------
      ;	Program:
      ;					Hide / Show window.
      ;
      ;	Description:
      ;					Hide or Show all instances of
      ;					World of Warcraft.
      ;
      ;	Bugs:
      ;					If more windows are names exact
      ;					same name those are also hidden/shown.
      ;
      ;	Author:
      ;					j0achim
      ;
      ;	Version:
      ;					B0001
      ;-----------------------------------------------------
      
      Global $title = "World of Warcraft"
      Global $state = 1
      HotKeySet("+!h", "toggle")
      
      While 1
      	Sleep(100)
      WEnd
      
      Func toggle()
      	$var = WinList($title,"")
      	If $state = 1 Then
      		For $i = 1 to $var[0][0]
      			WinSetState($var[$i][1],"",@SW_HIDE)
      		Next
      		$state = 0
      		Sleep(2000)
      	else
      		For $i = 1 to $var[0][0]
      			WinSetState($var[$i][1],"",@SW_SHOW)
      		Next
      		$state = 1
      		Sleep(2000)
      	EndIf
      EndFunc
      
      
      
      Dont have AutoIt script? Get it at http://www.autoitscript.com
       
    7. haxed

      haxed New Member

      Joined:
      Jan 15, 2010
      Messages:
      545
      Likes Received:
      1
      Trophy Points:
      0
      Aren't autoit being sued by blizzard now ? i think i read it somewhere.
       
    8. adrian97

      adrian97 New Member

      Joined:
      Jan 15, 2010
      Messages:
      72
      Likes Received:
      0
      Trophy Points:
      0
      works with wow minimized for me.
       
    9. j0achim

      j0achim New Member

      Joined:
      Jan 15, 2010
      Messages:
      532
      Likes Received:
      15
      Trophy Points:
      0
      No, remember that AutoIt is a programming langue or interpreter langue to be exact.


      Guns don't kill people, people kill people. Same metaphor can be used in this case.
       
      Last edited: Jan 21, 2010
    10. Speepaync

      Speepaync New Member

      Joined:
      Sep 29, 2011
      Messages:
      1
      Likes Received:
      0
      Trophy Points:
      0
      Hello I think you're wrong

      I do not agree ...
       
    11. Altoids

      Altoids New Member

      Joined:
      Jul 21, 2011
      Messages:
      936
      Likes Received:
      8
      Trophy Points:
      0
      You don't agree with who and for what reason? Just a suggestion, but writing a bit more might help us understand what you're trying to say. ;)

      BTW - what you replied to was almost 2 years old now... that would be called necro'ing a thread (bringing it back from the dead... lol)
       
    12. no1knowsy

      no1knowsy Well-Known Member

      Joined:
      Feb 28, 2010
      Messages:
      3,927
      Likes Received:
      57
      Trophy Points:
      48
      I wanna join in! Running minimized wow is a bad idea, and HB won't allow it. Running HB minimized is a bad idea because it sends it o the system tray, makes it hard to hit stop so you might so something you don't want.
      I am Necromancer? Can I haz cheezburger?
       
    13. Tony

      Tony "The Bee" Staff Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      128,834
      Likes Received:
      571
      Trophy Points:
      113
      thread closed
       
    Thread Status:
    Not open for further replies.

    Share This Page