AutoHotkey Community

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

All times are UTC [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
PostPosted: September 11th, 2008, 7:45 am 
Offline

Joined: August 20th, 2008, 4:25 pm
Posts: 256
This is probable the most simple code ever to be created, but I'm still posting it, simply because i find it useful.

It's like the command prompt in a game, where you press Tilde to open it. In there, you can type commands (Example: cmd), a link to a website (Example: http://www.autohotkey.com), a directory (Example: %WINDIR%), or a program to start (Example: calc.exe).

Code:
SysGet, VirtualScreenWidth, 78
SysGet, VirtualScreenHeight, 79
Width = %VirtualScreenWidth%
EnvSub, Width, 2
Menu, Tray, Icon , %SystemRoot%\system32\SHELL32.dll, 25
Menu, Tray, NoStandard
Menu, Tray, Add, Exit, Exit
Gui +LastFound +AlwaysOnTop -Caption +ToolWindow
Gui, Color, 000000
Gui, Font, CFF0900
Gui, Font,, System
Gui, Add, Edit, vtypedcommand h20 w%Width% xCenter y0 c000000
Active = 0
return

`::
if Active = 0
{
Gui, Show, xCenter y0 w%Width% h20
Active = 1
return
}
Else
{
Active = 0
Gui, Show, Hide
return
}
return

Enter::
if Active = 1
{
Gui, Submit, NoHide
Run, %typedcommand%
GuiControl, Text, typedcommand,
return
}

Else
{
Send {Enter}
}
return

exit:
exitapp
return


I know, i know, it's kind of dodgy, but it works for me. Any suggestions, corrections or improvements are welcome of course! :)

_________________
-Chavez.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 11th, 2008, 12:23 pm 
Offline
User avatar

Joined: May 10th, 2007, 10:54 am
Posts: 649
Location: .switzerland
whats the difference to the build-in [win]+[r]?

_________________
http://securityvision.ch
AHK 2D GAME ENGINE


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 11th, 2008, 1:37 pm 
Offline

Joined: August 20th, 2008, 4:25 pm
Posts: 256
IsNull wrote:
whats the difference to the build-in [win]+[r]?


I find this easier and handier.

_________________
-Chavez.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: bbwht, Morpheus, oldbrother and 59 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