AutoHotkey Community

It is currently May 26th, 2012, 12:27 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 49 posts ]  Go to page Previous  1, 2, 3, 4  Next
Author Message
 Post subject:
PostPosted: August 19th, 2008, 6:33 am 
Offline

Joined: March 13th, 2008, 6:37 pm
Posts: 155
Location: Trøndelag, Norway
mod a keyboard to a big red button and mount it to the program. you got your self an panick button

_________________
-._.-¨¯¨-._.-IM@PΩW-._.-¨¯¨-._.-


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 5th, 2008, 6:06 pm 
Offline

Joined: November 29th, 2008, 12:35 am
Posts: 111
Location: United Kingdom
Lol i imagined by now a little kid would have said something like
Quote:
Great ! I can use this if im playing runescape and my brother walks in while im meant to be playing wsg gulch on WoW for him =D

but they didnt....
-waits-[/code]

_________________
Adam
http://moourl.com/8w0tx
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 5th, 2008, 6:17 pm 
Offline

Joined: June 25th, 2008, 2:31 pm
Posts: 25
I wrote a script that does this and more: WinHide and WinShow Tool


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 5th, 2008, 6:37 pm 
menaphus wrote:
Lol i imagined by now a little kid would have said something like
Quote:
Great ! I can use this if im playing runescape and my brother walks in while im meant to be playing wsg gulch on WoW for him =D

but they didnt....
-waits-[/code]




Yes... XD.

Thats exactly what i ment.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 5th, 2008, 6:43 pm 
Offline

Joined: November 29th, 2008, 12:35 am
Posts: 111
Location: United Kingdom
SPDRGMS -TLTLI- wrote:
menaphus wrote:
Lol i imagined by now a little kid would have said something like
Quote:
Great ! I can use this if im playing runescape and my brother walks in while im meant to be playing wsg gulch on WoW for him =D

but they didnt....
-waits-[/code]




Yes... XD.

Thats exactly what i ment.

xD
Im glad we're on teh same page ;d

_________________
Adam
http://moourl.com/8w0tx
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 9th, 2008, 6:46 pm 
Offline

Joined: September 3rd, 2008, 5:41 am
Posts: 14
FYI, windows key+D will "show desktop" effectively minimizing all windows for immediate "naughty protection" and you don't even need AHK. it's a windows based keyboard shortcut inherent in almost every iteration of windows :D

Just thought I'd throw that out there... sometimes the solution is simpler than you think.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 9th, 2008, 6:51 pm 
Offline

Joined: November 29th, 2008, 12:35 am
Posts: 111
Location: United Kingdom
adam15926 wrote:
FYI, windows key+D will "show desktop" effectively minimizing all windows for immediate "naughty protection" and you don't even need AHK. it's a windows based keyboard shortcut inherent in almost every iteration of windows :D

Just thought I'd throw that out there... sometimes the solution is simpler than you think.



Yes because nobody reads GIRL WITH HOT **** **** **** GUY on the taskbar x like 5 which is what this program hides :P otherwise these people would just go ahead and press minimize

_________________
Adam
http://moourl.com/8w0tx
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2008, 12:12 am 
Offline

Joined: June 9th, 2008, 2:32 am
Posts: 936
Location: Canada
mainly I like it because You cant alt tab to it. Also when ur on a server (i dont know why you would be but i tested it) the master computer can't see the hidden windows.

_________________
Image
I know i have 6 legs. It's cuz I'm special.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2008, 11:02 am 
Offline

Joined: August 14th, 2007, 12:11 pm
Posts: 86
added a quick mute to the script for those who are beeing naughty with audio on :P :P
Code:
menu, tray, tip, PaniKER Loaded
menu, tray, icon, %a_windir%\explorer.exe
menu, tray, nostandard
menu, tray, add, About
menu, tray, add, Exit

~^z::
SoundSet, +1, , mute
WinGet, id, list,,, Program Manager
Loop, %id%
{
    this_id := id%A_Index%
    WinGetTitle, this_title, ahk_id %this_id%
    WinHide, %this_title%
    FileAppend, %this_title%`n, temp.txt
   TrayTip , PaniKER, Paniker Active, 5,1
}
Return,

OnExit:
~+z::
SoundSet, +1, , mute
Loop, 20
{
FileReadLine, title, temp.txt, %A_Index%
WinShow, %title%
TrayTip , PaniKER, Paniker InActive, 5,1

}
FileDelete, temp.txt

Return,

about:
MsgBox , 64, PaniKER, Made by SpiderGames`n http://www.autohotkey.com/forum/viewtopic.php?t=34757, 10
return
exit:
exitapp


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 10th, 2008, 1:26 pm 
Offline

Joined: June 9th, 2008, 2:32 am
Posts: 936
Location: Canada
=D never thought of that lol.

_________________
Image
I know i have 6 legs. It's cuz I'm special.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 11th, 2008, 5:29 pm 
Offline

Joined: November 29th, 2008, 12:35 am
Posts: 111
Location: United Kingdom
WankaUSR wrote:
added a quick mute to the script for those who are beeing naughty with audio on :P :P
Code:
menu, tray, tip, PaniKER Loaded
menu, tray, icon, %a_windir%\explorer.exe
menu, tray, nostandard
menu, tray, add, About
menu, tray, add, Exit

~^z::
SoundSet, +1, , mute
WinGet, id, list,,, Program Manager
Loop, %id%
{
    this_id := id%A_Index%
    WinGetTitle, this_title, ahk_id %this_id%
    WinHide, %this_title%
    FileAppend, %this_title%`n, temp.txt
   TrayTip , PaniKER, Paniker Active, 5,1
}
Return,

OnExit:
~+z::
SoundSet, +1, , mute
Loop, 20
{
FileReadLine, title, temp.txt, %A_Index%
WinShow, %title%
TrayTip , PaniKER, Paniker InActive, 5,1

}
FileDelete, temp.txt

Return,

about:
MsgBox , 64, PaniKER, Made by SpiderGames`n http://www.autohotkey.com/forum/viewtopic.php?t=34757, 10
return
exit:
exitapp


i think i already added something like this to my own =]
Code:
SoundGet, master_mute, , mute
%master_mute% := mute1

if  (mute1 := 0)
Send {Volume_Mute}
[/code]

_________________
Adam
http://moourl.com/8w0tx
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 11th, 2008, 11:00 pm 
Offline

Joined: November 29th, 2008, 12:35 am
Posts: 111
Location: United Kingdom
SpiderGames wrote:
Im just sick off people walking in on me when im... "being naughty"



EWWWWWWWW
xD :wink:
great script tho man 8)

_________________
Adam
http://moourl.com/8w0tx
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 11th, 2008, 11:34 pm 
Offline

Joined: May 2nd, 2006, 11:16 pm
Posts: 800
Location: Greeley, CO
@menaphus

Must you take up so much real estate with your sig?

_________________
Image
SoggyDog
Dwarf Fortress:
"The most intriguing game I've ever played."


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 12th, 2008, 6:07 am 
Offline
User avatar

Joined: November 2nd, 2008, 4:23 pm
Posts: 2906
Location: 127.0.0.1
This takes up less space, and links to the original image.
Image
Code:
[URL=http://www.metapeeps.com/images/famous_images/Evil_Monkey.jpg][IMG]http://img247.imageshack.us/img247/6431/monkeyom8.gif[/IMG][/URL]

_________________
aboutscriptappsscripts
Any code ⇈ above ⇈ requires AutoHotkey_L to run


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 12th, 2008, 8:54 am 
Offline

Joined: June 9th, 2005, 10:49 am
Posts: 30
Here are my adjustments with comments:

Code:
menu, tray, tip, PaniKER Loaded
menu, tray, icon, %a_windir%\explorer.exe
menu, tray, nostandard
menu, tray, add, About
menu, tray, add, Exit

OnExit, ExitSub   ; Changed this to a regular subroutine. I couldn't get it to work using Menaphus' method.
return

^!+z::   ; used CTRL-ALT-SHIFT-Z due to original keys already being in-use on my system.
  SoundSet, 1, , mute   ; This MUTES -- toggling was not acting right.
  WinGet, id, list,,, Program Manager
  Loop, %id%
{
    this_id := id%A_Index%
    WinGetTitle, this_title, ahk_id %this_id%
    WinHide, %this_title%
    FileAppend, %this_title%`n, %A_Temp%\panictmp.txt
; Adjusted the preceding TEMP file location and name.
; Removed the TrayTips -- I don't want others to know that I'm hiding stuff.
}
Return

^!+x::   ; used CTRL-ALT-SHIFT-X due to original keys already being in-use on my system.
ExitSub:
  SoundSet, 0, , mute   ; This UN-mutes -- toggling was not acting right.
  Loop, 30 ; Increased iterations for folks with LOTS of hidden windows.
{
  FileReadLine, title, %A_Temp%\panictmp.txt, %A_Index%
  WinShow, %title%
; Removed the TrayTips -- I don't want others to know that I'm hiding stuff.
}
  FileDelete, %A_Temp%\panictmp.txt
  If A_ExitReason =
    Return
  Else
ExitApp

About:
  MsgBox, 64, PaniKER, Made by SpiderGames`n http://www.autohotkey.com/forum/viewtopic.php?t=34757, 10
return

Exit:
  ExitApp
return

_________________
-- Thanks, BeetleTX330


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 49 posts ]  Go to page Previous  1, 2, 3, 4  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: bbwht, Cerberus, Exabot [Bot], MSN [Bot] and 34 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group