Re: Indirect reference

2011-11-17 Thread Howard Bornstein
Thank you everyone. These all do what I was after. I think I used to do it using the field property as Geoff suggested. Funny how I just blanked out about it this time. I'm going to write myself a note about it in case I forget again. Now if I can just remember where I put that note... -Howard __

Re: Indirect reference

2011-11-17 Thread Pete
If your variable did not contain the word "field", you could do: put "10:00 AM" into field tfield or leave the variable as it is and: put "10:00 AM" into field (word 2 to -1 of tfield) Pete Molly's Revenge On Thu, Nov 17, 2011 at 9:39 PM, Howard Bornstein wro

Re: Indirect reference

2011-11-17 Thread Geoff Canyon Rev
You can't use put "something" into myVariable but as Andrew says you can make it work with a "do" statement. As long as the variable contains a valid object reference, you can set properties on the variable, so this will work also: *put* "field" && quote & "test" & quote into x *set*

Re: Indirect reference

2011-11-17 Thread Andrew Kluthe
There are other ways to accomplish what you need, but here is what you are looking for. do "put" && theTime && "into" && tField this would execute --> put "what was in theTime" into "what was in tField" http://docs.runrev.com/Command/do -- View this message in context: http://runtime-revolutio