Jump to content

(Simple Q) Looping Hold Right Control


Recommended Posts

I'm pretty poor at scripting, and I just want something to simplify copying/pasting a bit.

All I'm asking for is: 1.) What is the code that will repeatedly hold down the RIGHT CONTROL key?

-- I've looked through several threads, and none seem to "loop send" correctly.

2.) How do I exit the script once initiated?

Thank you for taking the time to read this.

Link to comment
Share on other sites

  • Moderators

Florida,

Welcome to the AutoIt forum. ;)

- 1. As far as I know you cannot hold down a specific Ctrl key using Send - is it important that it is the RIGHT Ctrl key? :)

- 2. I assume you are running an infinite loop to keep your script active - so use a HotKey to exit along these lines:

; Press Alt-ESC to exit
HotKeySet("!{ESC}", "On_Exit")

While 1
    Sleep(10)
WEnd

Func On_Exit()
    MsgBox(0, "Hi", "Exiting")
    Exit
EndFunc

M23

P.S. Please take a moment to read the Forum Rules before too long. :D

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

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