Jump to content

Recommended Posts

Posted

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

Posted

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

Why not use Send("#r")?

Posted

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?

Posted

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.

Posted

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 1

WEnd

Func _Run()

Send("#r")

EndFunc

Func Quit()

Exit

EndFunc

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
×
×
  • Create New...