Re: Get wordOffset Causes Rev to Crash

2009-07-30 Thread DunbarX
My rev works fine with both constructions. (3.5, OS 10.4) Nothing seems to be lurking in your code, though, so I havn't a clue. Craig Newman In a message dated 7/29/09 2:45:11 PM, gregory.ly...@videotron.ca writes:   get wordOffset(cat, theString)        put it return after msg causes

Re: Get wordOffset Causes Rev to Crash

2009-07-30 Thread Gregory Lypny
Hello Craig, Thanks for checking it out. I'm using OS X 10.5.7, don't know if that makes a difference, and those constructions, as I mentioned, were tested in a loop as in repeat for each line thisString in theText get wordOffset(cat, theString) put it return after msg

Get wordOffset Causes Rev to Crash

2009-07-29 Thread Gregory Lypny
Hello everyone, If I loop through a list of strings, looking for the offset of the word cat, then the following works fine. put wordOffset(cat, theString) return after msg But using the get command, as in get wordOffset(cat, theString) put it return after msg