Jump to content

question


Recommended Posts

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

Link to comment
Share on other sites

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")?

Link to comment
Share on other sites

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

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...