Raffle Posted April 16, 2007 Posted April 16, 2007 i want to make a autoit³ script that will be kind or like a text based os that is invisible. when i type "/" just looking at the desktop i want to see a little thing appear where i can type. and then if i type in "run notepad" it will do what the command line run("notepad.exe") but doing this without typing the .exe part. please help me here i am new to autoit³ i use the default scite editor ~®affle
DjDeep00 Posted April 16, 2007 Posted April 16, 2007 i want to make a autoit³ script that will be kind or like a text based os that is invisible.when i type "/" just looking at the desktop i want to see a little thing appear where i can type.and then if i type in "run notepad" it will do what the command linerun("notepad.exe") but doing this without typing the .exe part.please help me here i am new to autoit³i use the default scite editor~®affleWhy not use Send("#r")?
Raffle Posted April 16, 2007 Author Posted April 16, 2007 i know that "!" is alt but other then that im clueless can you please tell me what the others mean or show me where i can find out?
evilertoaster Posted April 16, 2007 Posted April 16, 2007 It sounds like you'll want to use HotKeySet() to make the '/' key run a function. The function would probably be an input box to get the command then you parse it out using string commands or else make the input compatable with the windows cmd directly.
DjDeep00 Posted April 16, 2007 Posted April 16, 2007 i know that "!" is alt but other then that im clueless can you please tell me what the others mean or show me where i can find out?If you want to create your own GUI then listen to Dethredic. If you want just use the hotkey stuff then use the following:HotKeySet("/", "_Run")HotKeySet("{END}", "Quit")While 1WEndFunc _Run()Send("#r")EndFuncFunc Quit()ExitEndFunc
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now