Jump to content

Recommended Posts

Posted

Okay, so I'm trying to figure out how to copy one character at a time.

I thought about adding the current character to an array, then splitting a string at a different character, but that wouldn't work for a repeat of characters.

So anyway I could take a value in say, a textbox, and edit it in some way?

Posted (edited)

Okay, so I'm trying to figure out how to copy one character at a time.

I thought about adding the current character to an array, then splitting a string at a different character, but that wouldn't work for a repeat of characters.

You mean like this?

$String = "FFeewwmmiittzz";repeated characters for effect

$Array = StringSplit($String,"")

For $i = 1 to $Array[0]
MsgBox(0, "Letter "&$i&" of "&$Array[0], $Array[$i])
Next

So anyway I could take a value in say, a textbox, and edit it in some way?

  • Send
  • ControlSend
I'd need more info to tell you anything more.. Edited by Paulie
Posted

Er sorry, I meant like, specifically taking the CHARACTERS out one at a time and changing them to something else or editing the font of them, or what have you.

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