Re: I find this very odd

2014-02-04 Thread proth...@earthednet.org
It must have been a typo. I just re-checked it and it does, in fact, transfer the entire array to a new variable. Regards, Bill William Prothero http://es.earthednet.org On Feb 3, 2014, at 5:27 PM, Bob Sneidar wrote: > There has to be a typo. Did you copy paste the *actual* code, or did you

Re: I find this very odd

2014-02-03 Thread Bob Sneidar
There has to be a typo. Did you copy paste the *actual* code, or did you retype it into the email? Bob On Feb 2, 2014, at 17:27 , proth...@earthednet.org wrote: > Folks: > > I am using LiveCode 6.5.1 and I find the following behavior very odd. > > I am working with datagrids and have the dgD

Re: I find this very odd

2014-02-02 Thread proth...@earthednet.org
Folks: Ok, its late here and I've been working on this all day. Even missed the SuperBowl, zowee! It's my bad. It does act like I thought it should. Sorry for wasting your time, and seeming to be ……. Best, Bill William Prothero http://es.earthednet.org On Feb 2, 2014, at 7:31 PM, Peter W A Woo

Re: I find this very odd

2014-02-02 Thread Peter W A Wood
Bill I tried the following code in the message box in 6.5.1 and it gave the results that you are expecting: Code put "1" into tArray[1] put "2" into tArray[2] put tArray into tAnotherArray put tAnotherArray[1] & lf into tP put "6" into tArray[1] put tArray[1] & lf after tP put tAnotherArray[1] &

Re: I find this very odd

2014-02-02 Thread dunbarx
into newArray put newArray into bb end mouseup put a breakpoint at "end mouseUp" Craig -Original Message- From: prothero To: How to use LiveCode Sent: Sun, Feb 2, 2014 8:28 pm Subject: I find this very odd Folks: I am using LiveCode 6.5.1 and I find the following beh

Re: I find this very odd

2014-02-02 Thread Mark Schonewille
Hi Bill, It looks like you put the array into myDatagridArray in one handler and try to read this variable in another handler. Another possibility is that you made a small spelling error in the variable name. It is also possible that you are check the value of the variable in the script edit

I find this very odd

2014-02-02 Thread proth...@earthednet.org
Folks: I am using LiveCode 6.5.1 and I find the following behavior very odd. I am working with datagrids and have the dgData of a datagrid, which is a normal array. put the dgData of group "DataGrid 3" into myDatagridArray Then I do: put myDatagridArray into newArray What's then in newArray i