Jump to content

Recommended Posts

Posted

Hey,

I found a way to make the Send() and ControlSend() WAY faster.

Func _Send($aText)
    $OldClip = ClipGet()
    $NewClip = ClipPut($aText)
    Send("^v")
    ClipPut($OldClip)
EndFunc

Func _ControlSend($aTitle, $aText, $controlID, $aString, $aFlag)
    $OldClip = ClipGet()
    $NewClip = ClipPut($aString)
    ControlSend($aTitle, $aText, $controlID, "^v", $aFlag)
    ClipPut($OldClip)
EndFunc

I already saw there could be some problems. So please discuss them here!

-AlmarM-

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Posted (edited)

I mean this in the nicest possible way. Try to avoid posting examples if they already exist, search thoroughly. Also, make sure you give credit to the original author where it is due.

Edited by weaponx

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