Jump to content

Recommended Posts

Posted

How do you simulate ENTER or a new line with ClipPut?

ClipPut($StartBB & $Message & "{ENTER}" & $aMessages[random(1, $max -1)] & "{ENTER}" & $StartNumBB & $NumSym &" "& $PostNumber & "/" & $EndPostNum & $EndBB)
Send("^v")

This is my current code, and when it gets pasted the {ENTER} shows.

Posted

If enter is going to go to a new line, it's possible to use @CRLF as a line break

ClipPut($StartBB & $Message & @CRLF & $aMessages[random(1, $max -1)] & @CRLF & $StartNumBB & $NumSym &" "& $PostNumber & "/" & $EndPostNum & $EndBB)
Send("^v")

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