Hide WoW - Or any other window. menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    randombob's Avatar Banned
    Reputation
    8
    Join Date
    Apr 2007
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Hide WoW - Or any other window.

    While this may be simple AutoIt code, I thought I'd post for those who don't know how to use AutoIt.

    The program hides your active window into 1 of 5 "memory slots". You use F1 - F5 to select which "slot" to use.

    This can be used to hide WoW from your boss (or anyone). :P

    Excuse the messy coding - I'm still an AutoIt noob
    Code:
    #NoTrayIcon
    HotKeySet("{F1}","hide1")
    HotKeySet("{F2}","hide2")
    HotKeySet("{F3}","hide3")
    HotKeySet("{F4}","hide4")
    HotKeySet("{F5}","hide5")
    HotKeySet("{F9}","tooltipon")
    HotKeySet("{esc}","exit1")
    
    $1 = ""
    $2 = ""
    $3 = ""
    $4 = ""
    $5 = ""
    
    idle()
    
    func hide1()
        HotKeySet("{F1}","show1")
        $1 = WinGetTitle("")
        WinSetState($1,"",@SW_HIDE)
        idle()
    EndFunc
    
    func show1()
        HotKeySet("{F1}","hide1")
        WinSetState($1,"",@SW_SHOW)
        $1 = ""
        idle()
    EndFunc
    
    func hide2()
        HotKeySet("{F2}","show2")
        $2 = WinGetTitle("")
        WinSetState($2,"",@SW_HIDE)
        idle()
    EndFunc
    
    func show2()
        HotKeySet("{F2}","hide2")
        WinSetState($2,"",@SW_SHOW)
        $2 = ""
        idle()
    EndFunc
    
    func hide3()
        HotKeySet("{F3}","show3")
        $3 = WinGetTitle("")
        WinSetState($3,"",@SW_HIDE)
        idle()
    EndFunc
    
    func show3()
        HotKeySet("{F3}","hide3")
        WinSetState($3,"",@SW_SHOW)
        $3 = ""
        idle()
    EndFunc
    
    func hide4()
        HotKeySet("{F4}","show4")
        $4 = WinGetTitle("")
        WinSetState($4,"",@SW_HIDE)
        idle()
    EndFunc
    
    func show4()
        HotKeySet("{F4}","hide4")
        WinSetState($4,"",@SW_SHOW)
        $4 = ""
        idle()
    EndFunc
    
    func hide5()
        HotKeySet("{F5}","show5")
        $5 = WinGetTitle("")
        WinSetState($5,"",@SW_HIDE)
        idle()
    EndFunc
    
    func show5()
        HotKeySet("{F5}","hide5")
        WinSetState($5,"",@SW_SHOW)
        $5 = ""
        idle()
    EndFunc
    
    func tooltipon()
        HotKeySet("{F9}","tooltipoff")
        ToolTip("F1: "&$1&@CR&"F2: "&$2&@CR&"F3: "&$3&@CR&"F4: "&$4&@CR&"F5: "&$5,10,10)
        sleep(3000)
        ToolTip("")
    EndFunc
    
    func tooltipoff()
        HotKeySet("{F9}","tooltipon")
        ToolTip("")
    EndFunc
    
    func idle()
        ToolTip("F1: "&$1&@CR&"F2: "&$2&@CR&"F3: "&$3&@CR&"F4: "&$4&@CR&"F5: "&$5,10,10)
        sleep(3000)
        ToolTip("")
        while 1
            sleep(1)
        WEnd
    EndFunc
    
    
    
    func exit1()
        ToolTip("Closing...",10,10)
        WinSetState($1,"",@SW_SHOW)
        WinSetState($2,"",@SW_SHOW)
        WinSetState($3,"",@SW_SHOW)
        WinSetState($4,"",@SW_SHOW)
        WinSetState($5,"",@SW_SHOW)
        Sleep(500)
        Exit
    EndFunc
    To compile it you'll need to download AutoIt: Direct Link - AutoIt Homepage

    PS: I wasn't 100% sure if this would be the right section to post this so if I got it wrong, please move it to the correct section.

    Hide WoW - Or any other window.
  2. #2
    Solemn1234's Avatar Member
    Reputation
    4
    Join Date
    Jun 2007
    Posts
    135
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    ^^ lmao nice 1 anyway

  3. #3
    Latzee's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    very nice.

  4. #4
    caleb77's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    Now.. run it without adding your window names and shit, and it makes your dekstop icons dissapear..

    EDIT - I meant.. whatever window is active, and if no windows are active your icons will dissapear

    I'm a noob at autoit also, lol, but it's fun to mess around with
    Last edited by caleb77; 10-20-2007 at 08:39 PM.

  5. #5
    dumby's Avatar Member
    Reputation
    2
    Join Date
    Apr 2007
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    DUDE!! THIS IS SWEET!!!!! TYVM!!!!! At my school in computers, my teacher always wants to see our screen on Word, to make sure were not playing games or something but this is genius. Even though she doesnt look at the taskbar anyway but this is just way cool thanks!!

  6. #6
    trojan101's Avatar Member
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    this better not a noobish hack!

  7. #7
    The_Demon's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    Great ... Ty man

  8. #8
    Gorrak's Avatar
    Gorrak
    Guest

    Re: Hide WoW - Or any other window.

    OMFG SWEET now i don't have to worry about my mom seeing my porn!!

    JK....

    or am I? +rep when I can

  9. #9
    zhangweizheng3's Avatar Member
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    heard anything called boss key?

  10. #10
    Brandaho's Avatar Active Member
    Reputation
    15
    Join Date
    Sep 2007
    Posts
    129
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    Good Job on this. I'm impressed. +rep

  11. #11
    Zoidberg's Avatar Elite User
    Reputation
    391
    Join Date
    Mar 2007
    Posts
    1,636
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    There is a better program called "HI", its posted here on mmowned, but i'm too lazy to search




    Edit: Here is the link not allowed to play wow?
    Last edited by Zoidberg; 10-23-2007 at 08:20 AM.

    Abra su mente a la realidad.
    Do NOT contact me about trading section stuff. Contact a section MOD instead.

  12. #12
    maxiboy's Avatar Member
    Reputation
    14
    Join Date
    Sep 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    thx man good

  13. #13
    iccy's Avatar Member
    Reputation
    44
    Join Date
    Jul 2007
    Posts
    300
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    awesome man... +Rep

  14. #14
    Miguel9614's Avatar Member
    Reputation
    25
    Join Date
    Aug 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    thank you, very useful...can't believe I didn't think of it myself. =P
    If you don't mind, I was hoping to post a modified version with a GUI and such =]

  15. #15
    dondonna514's Avatar Member
    Reputation
    2
    Join Date
    Sep 2007
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW - Or any other window.

    Nice, i am Programming in Autoit myself,maybe not a to experienced Programmer, but i only know a little more then the basic's

Page 1 of 2 12 LastLast

Similar Threads

  1. [Misc] Any other servers identical to Heroes wow 255 fun server
    By jakeyup in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 02-07-2017, 02:34 PM
  2. Hide Wow + any prog
    By issacobra in forum World of Warcraft Bots and Programs
    Replies: 5
    Last Post: 03-08-2008, 11:00 AM
  3. Place any window ontop of all other windows including WoW
    By Fault in forum World of Warcraft Bots and Programs
    Replies: 16
    Last Post: 01-20-2007, 07:09 AM
  4. Hide Wow From Parents
    By rudez in forum World of Warcraft General
    Replies: 12
    Last Post: 10-23-2006, 04:39 AM
  5. Is there any other bot prgram exept glider?
    By Disphotic in forum Community Chat
    Replies: 2
    Last Post: 09-20-2006, 05:10 PM
All times are GMT -5. The time now is 03:14 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search