SteveO Posted July 6, 2008 Posted July 6, 2008 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.
Dampe Posted July 6, 2008 Posted July 6, 2008 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")
SteveO Posted July 6, 2008 Author Posted July 6, 2008 Awesome, I thought @CRLF created spaces for some reason. It worked perfectly, Thanks for the help. =)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now