How to select Chars after command wordoffset ???
Posted: Thu Jan 17, 2013 2:23 pm
Dear friend,
How i can select Chars after command wordoffset ??? i need to select a portion of chars using for example "select char 1 to 37 after the foundtext"...but i can't go on don't work...do you have any idea??? Here below there's a little idea of script...can you help me?'please??
Thanks
lestroso
How i can select Chars after command wordoffset ??? i need to select a portion of chars using for example "select char 1 to 37 after the foundtext"...but i can't go on don't work...do you have any idea??? Here below there's a little idea of script...can you help me?'please??
Thanks
lestroso

Code: Select all
On mouseUp
PUT URL "http://www.runrev.com" INTO FIELD 1
put wordoffset("today", fld 1 ) into tOffW
select WORD tOffW +1 of fld 1
--This return "Millions" ok!!
--I want here take after the selection of "Millions" the other for example 1 to 37 chars and put it into a field...
----Any idea???
end mouseUp