Jump to content

telling scrip to start


lint
 Share

Recommended Posts

Check the help file under the following headings

-Hotkeyset

-Send

-Mouseclick

If after you have read up on these topics and ur still completely lost, post some attempted code.

Im sure ppl will be more than happy to help, you after they know that you have tryed to help yourself

Edited by nova
Link to comment
Share on other sites

Heres a fully commented example script, commented a bit too much maby :idiot:

all the same this should help you out.

Run this script and then press the TAB button ,a msg box will appear.

;Sets the Tab button as a hotkey, so as when its pressed, the function ShowMessage is called.
HotKeySet("{TAB}", "ShowMessage")

;This keeps the script open,so the hotkey is kept waiting to be pressed
While 1
    Sleep(100)
WEnd

;This is the function which is called by the hotkey TAB
Func ShowMessage()
    MsgBox(4096,"","This is a message.")
EndFunc

Enjoy

Edited by nova
Link to comment
Share on other sites

Yea the more frequent I wash mine it seems the more lint I have.

JS

AutoIt Links

File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out.

ComputerGetInfo UDF's Updated! 11-23-2006

External Links

Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)

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