change this:
StringReplace>cleanFret,' ','-',FingerPos
to this:
StringReplace>cleanFret, ,-,FingerPos
The quotes are for other languages... not MacroScheduler!
******************************************************************************************************************
Boy, the things I have problems with.... anyway:
I have this string that I get from the clipboard:
" x 3 2 0 1 0"
I trim it, then I do a StringReplace. I'm trying to turn it into:
"x-3-2-0-1-0". It doesn't work.
Code: Select all
Label>GetFingerPosition
Remark>//fingerpos
MouseMove>x_impossiblevar,y_impossiblevar
LClick>
Wait>0.1
Press Ctrl
Send>a
//Release Ctrl
//Press Ctrl
Send>c
Release Ctrl
Wait>1
GetClipBoard>fretText
Trim>fretText,cleanFret
StringReplace>cleanFret,' ','-',FingerPos
MessageModal>%cleanFret% is now %FingerPos%
Here's that:
url: http://www.anony.ws/image/DcMV
I put the string into excel, parsed it into characters, then found the ascii code for each character. Those blank spots are char 32.
Why doesn't this work?