On 10/07/2010 00:43, Alex Tweedly wrote:
  put (fld "field" & i) into temp
   do "put temp into quote & "tVar" & quote & i
Sorry - it doesn't need to be that complicated.

   you can just do

  put (fld "field" & i) into temp
  do "put temp into tVar" & i


(And just in case there are more silly typos - here's the actual running code I used ... :-)
on mouseUp
   repeat with i = 1 to  2
      put (the loc of button "Button" & i) into temp
      do "put temp into tVar" & i
      put tVar1 && tVar2 & "!!" after msg
   end repeat
end mouseUp
-- Alex.
_______________________________________________
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

Reply via email to