On Jun 16, 2013, at 3:26 PM, "J. Landman Gay" <jac...@hyperactivesw.com> wrote:

> >Suppose I only want to work with [c][x] and all its sub-dimensions. Is there 
> >an efficient way to extract that into its own array without looping through 
> >all the [c] keys?


Can you borrow b, work on it, then put it back? Like:

on mouseUp
   put "hello" into t[a][b][c]
   answer t[a][b][c]
   put t[a][b] into x
   answer x[c]
   put "goodbye" into x[c]
   put x into t[a][b]
   answer t[a][b][c]
end mouseUp


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to