Quoting Ken Ray <[EMAIL PROTECTED]>:
Hi Eric and Ken (and other of course)
have blank spaces in it (not in amongst the squares)
Here is a gif of the field
http://www.armbase.com/squares.gif
All the best
Bob
Bob, to make sure what's going on make a button with a following script
put "theNameOfYourField" into f -- insert your field name here
put empty into v
get line (the hilitedlines of fld f) of fld f -- or just get line 1
repeat for each char i in it
if chartonum(i)<32 then -- control character
put "[" & chartonum(i) & "]" after v
else if chartonum(i)>126 then -- high-ascii
put "[" & chartonum(i) & slash & i & "]" after v
else -- normal character
put i after v
end if
end repeat
answer v
This will allow you to analyse what you have there in your lines.
Then you can use 'replace' to get rid of those characters replacing
each run with a single tab.
Robert
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution