Comment
|
Two ways, assuming a Text variable named "NewDate" and that
the date is at row 1, column 70:
<teset NewDate=Screen(1,70,2)+"/"+Screen(1,72,2)+"/"+
Screen(1,74,2)>
--OR--
<teset NewDate=Screen(1,70,6)>
<teset NewDate=TextLeft(NewDate,2)+"/"+TextMid(NewDate,2,2)+
TextRight(NewDate,2)>
Note that you can use
TextMid(0,2)..TextMid(2,2)..TextMid(4,2) for the above,
but threw-in the TextLeft and TextRight for fun...
Maybe you used the backslash (\) by accident? If so, that
requires Two backslashes, since SurferScript string
expressions use the backslash as an escape character for
newlines and such.
|