Jump to content

Anti Boss programm


Cyber
 Share

Recommended Posts

Hi!

I create this program for hide window in office :whistle:

The "active window" is the hideable window.

Sorry for my BAD translation....

Feedback is welcome :P

ISTRUCTION:

THe Active window is the allarmed window, when tou use a hidden system (HotKey or sensible dekstop), it will hide.

The fake window is the window when show when the window Active is hide.

When you try the sensible desktop?

Move mouse to extremy right of the screen

HidderV0.4_eng_src.zip

HidderV0.4_ita_src.zip

Edited by Cyber
Console Browse: Navigate on the WEB in a textual consoleMultiPing!: Show computer on the lan and/or show the local/remote task, ALL animated!KillaWin: Event executingCryptPage: Crypt your webpage and show only with key
Link to comment
Share on other sites

Hi!

I create this program for hide window in office :whistle:

The "active window" is the hideable window.

Sorry for my BAD translation....

Feedback is welcome :D

Great ideia!

I got to try this with my favorite work tool... World of Warcraft :P

Great job... smooth... just a bit confuse to operate the program only in the systray, pretty good.

Keep the good script

Old Scriptology

Visual Ping 1.8 - Mass Ping Program with export to txt delimited.

Desktop 2 RGB and YMCK - Pick a color in the desktop and get the RGB and YMCK code.

Desktop 2 RGB - Pick a color in the desktop and get the RGB code.

ShootIT 1.0 - Screen Capture full and partial screen

[font="'Arial Black';"]Remember Remember The Fifth of November.[/font]

Link to comment
Share on other sites

hey cyber ur program works great realy i fool the teachers with it only i can hide 1 windows can u script that its able for more windows or someting.

its not a offencive thing but i only use it to hide my msn some times i get more message so i need more to hide.

:whistle: good job for the program

Link to comment
Share on other sites

Yep! :whistle:

Now i try to update.

i will add the option "Hide the active(focus) window" whichever window.

if i do make, the new release is ready for tomorrow

:P

Console Browse: Navigate on the WEB in a textual consoleMultiPing!: Show computer on the lan and/or show the local/remote task, ALL animated!KillaWin: Event executingCryptPage: Crypt your webpage and show only with key
Link to comment
Share on other sites

I'm farely sure someone created somthing like this a loooong time ago. Was really simple and worked great. Ummm, I think the function was HideYo( ). Do a search for that and get some insperation for the next update. Nice program anyways though man, good job.

[center][/center]Working on the next big thing.Currently Playing: Halo 4, League of LegendsXBL GT: iRememberYhslaw

Link to comment
Share on other sites

I'm farely sure someone created somthing like this a loooong time ago. Was really simple and worked great. Ummm, I think the function was HideYo( ). Do a search for that and get some insperation for the next update. Nice program anyways though man, good job.

i made one a while ago too, but don't think that i put it up... i made this one because i was working on taking a girl (still my girlfriend) from someone i worked with, and we'd be e-mailing back and forth all day, and he'd walk over at random intervals trying to see my screen. it's not very pretty, because i started with just a hotkey on/off, then added options at different times, and it was written quite a while ago. in the end, F9 hides or unhides whatever window was active, moving the mouse to top left kills outlook, top right hides/unhides outlook, F10 exits the script and winclose()'s any hidden window, numlock kills outlook whether it's hidden or not.

Opt("WinTitleMatchMode",4)
HotKeySet("{F9}","Toggle")
HotKeySet("{F10}","Quit")
HotKeySet("{NUMLOCK}","ok")
Global $hidden = 0
Global $blah
While 1
    Sleep(100)
    $pos = MouseGetPos()
    If $pos[0] = 0 And $pos[1] = 0 Then 
        MouseMove(@DesktopWidth/2,@DesktopHeight/2,0)
        ok()
    EndIf
    If $pos[0] = 0 And $pos[1] = 863 Then
        WinActivate("Inbox")
        Toggle()
        MouseMove(@DesktopWidth/2,@DesktopHeight/2,0)
    EndIf
WEnd
Func Toggle()
    Select
    case $hidden = 0
        $blah = WinGetHandle("active")
        WinSetState($blah,"",@SW_HIDE)
        $hidden = 1
    case $hidden = 1
        WinSetState($blah,"",@SW_SHOW)
        $hidden = 0
        $blah = ""
    EndSelect
EndFunc
Func Quit()
    If $hidden Then
        WinKill($blah)
    EndIf
    Exit
EndFunc
Func ok ()
    ProcessClose("outlook.exe")
    
EndFunc
Edited by cameronsdad
Link to comment
Share on other sites

  • Moderators

Calls Seans Boss....

:whistle:Girlfriend answers ... oops :P

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.

Link to comment
Share on other sites

Nice work! Very handy!

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...