Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread J. Landman Gay

On 6/8/05 1:11 PM, Stephen Barncard wrote:



Now how do I undo my 'chicken little' bug report 2884 (and it's clone 
2885)?




Under the "comments" field, there should be several radio buttons (only 
the team and the originator of the report can see all of these.) You can 
click "Resolve bug changing status to" and "not a bug" and it will go away.


No harm done. :)

--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread Stephen Barncard
Jacqueline, you rock, you are totally right. The only test I didn't 
do was to actually try this in debug mode. I expected globals of all 
kinds to be viewable.


so this feature works only in debug mode. got it.


Now how do I undo my 'chicken little' bug report 2884 (and it's clone 2885)?



At 12:48 PM -0500 6/8/05, J. Landman Gay wrote:


Oh wait -- I think I understand the problem. You need to set a 
breakpoint in the script. The global doesn't show it. Put a 
breakpoint next to the last line of the handler and you'll see the 
array in the variable watcher.

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread Thomas McGrath III

J,

That's it. I now can see the array in all of it's glory. Thank you.

Now what do I do with it? ;-)

Tom

On Jun 8, 2005, at 1:48 PM, J. Landman Gay wrote:


On 6/8/05 12:44 PM, J. Landman Gay wrote:


On 6/8/05 12:24 PM, Stephen Barncard wrote:

I've posted this non-feature to the bugzilla.

Bug #2884

(ignore #2885, which is a duplicate somehow created by Revzilla)

please vote if you're on a mac and would like this feature restored.

Um...I'm on a Mac and it works fine here. Not on Tiger yet though.



Oh wait -- I think I understand the problem. You need to set a 
breakpoint in the script. The global doesn't show it. Put a breakpoint 
next to the last line of the handler and you'll see the array in the 
variable watcher.


--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution




Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread Dennis Brown
I am running Tiger, and when I try this with 2.6 the Arrays show up  
in the Variable watcher window as promised.  There must be something  
else going on.  I ran the script with a breakpoint at the end.  The  
variable watcher lower pane split in two to show the key on the left  
and the values on the right after I clicked on the array variable in  
the upper left pane.


Dennis

On Jun 8, 2005, at 1:24 PM, Stephen Barncard wrote:


I've posted this non-feature to the bugzilla.

Bug #2884

(ignore #2885, which is a duplicate somehow created by Revzilla)

please vote if you're on a mac and would like this feature restored.

sqb

At 9:40 AM -0700 6/8/05, Stephen Barncard wrote:


<[EMAIL PROTECTED]>
the usual array test in a button...

on mouseUp
  global testArrayA
  put "test1" into testArrayA[1]
  put "test2" into testArrayA[2]
  put "test3" into testArrayA[3]
  repeat with n = 1 to 3
put testArrayA[n]  & return after theOut
  end repeat
  put theOut
end mouseUp

returns in the msg...

test1
test2
test2

but I don't see anything different in the variable watcher. Under  
what conditions does one 'see' the arrays values in Rev 2.6??






At 9:12 AM -0400 6/8/05, Thomas McGrath III wrote:


Pat,

Yeah, I did a few times.(click button with script then select  
testArrayA, even select right pane blank space - nothing) Right  
pane shows blank the msg shows the array but testArrayA does not.


I wonder why.

tom







On Jun 8, 2005, at 1:50 AM, Pat Trendler wrote:
I don't know if I'm misunderstanding this. But, if I run the  
handler below, in the variable watcher I can see :


left paneright pane
testArrayA 

in the panes below

[1]test1
[2]test2
[3]test3


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread J. Landman Gay

On 6/8/05 12:44 PM, J. Landman Gay wrote:


On 6/8/05 12:24 PM, Stephen Barncard wrote:


I've posted this non-feature to the bugzilla.

Bug #2884

(ignore #2885, which is a duplicate somehow created by Revzilla)

please vote if you're on a mac and would like this feature restored.



Um...I'm on a Mac and it works fine here. Not on Tiger yet though.



Oh wait -- I think I understand the problem. You need to set a 
breakpoint in the script. The global doesn't show it. Put a breakpoint 
next to the last line of the handler and you'll see the array in the 
variable watcher.


--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread J. Landman Gay

On 6/8/05 12:24 PM, Stephen Barncard wrote:


I've posted this non-feature to the bugzilla.

Bug #2884

(ignore #2885, which is a duplicate somehow created by Revzilla)

please vote if you're on a mac and would like this feature restored.


Um...I'm on a Mac and it works fine here. Not on Tiger yet though.




sqb

At 9:40 AM -0700 6/8/05, Stephen Barncard wrote:


<[EMAIL PROTECTED]>
the usual array test in a button...

on mouseUp
  global testArrayA
  put "test1" into testArrayA[1]
  put "test2" into testArrayA[2]
  put "test3" into testArrayA[3]
  repeat with n = 1 to 3
put testArrayA[n]  & return after theOut
  end repeat
  put theOut
end mouseUp

returns in the msg...

test1
test2
test2

but I don't see anything different in the variable watcher. Under what 
conditions does one 'see' the arrays values in Rev 2.6??





At 9:12 AM -0400 6/8/05, Thomas McGrath III wrote:


Pat,

Yeah, I did a few times.(click button with script then select 
testArrayA, even select right pane blank space - nothing) Right pane 
shows blank the msg shows the array but testArrayA does not.


I wonder why.

tom






On Jun 8, 2005, at 1:50 AM, Pat Trendler wrote:
I don't know if I'm misunderstanding this. But, if I run the handler 
below, in the variable watcher I can see :


left paneright pane
testArrayA 

in the panes below

[1]test1
[2]test2
[3]test3


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution






--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread Stephen Barncard

I've posted this non-feature to the bugzilla.

Bug #2884

(ignore #2885, which is a duplicate somehow created by Revzilla)

please vote if you're on a mac and would like this feature restored.

sqb

At 9:40 AM -0700 6/8/05, Stephen Barncard wrote:

<[EMAIL PROTECTED]>
the usual array test in a button...

on mouseUp
  global testArrayA
  put "test1" into testArrayA[1]
  put "test2" into testArrayA[2]
  put "test3" into testArrayA[3]
  repeat with n = 1 to 3
put testArrayA[n]  & return after theOut
  end repeat
  put theOut
end mouseUp

returns in the msg...

test1
test2
test2

but I don't see anything different in the variable watcher. Under 
what conditions does one 'see' the arrays values in Rev 2.6??




At 9:12 AM -0400 6/8/05, Thomas McGrath III wrote:

Pat,

Yeah, I did a few times.(click button with script then select 
testArrayA, even select right pane blank space - nothing) Right pane 
shows blank the msg shows the array but testArrayA does not.


I wonder why.

tom





On Jun 8, 2005, at 1:50 AM, Pat Trendler wrote:
I don't know if I'm misunderstanding this. But, if I run the handler 
below, in the variable watcher I can see :


left paneright pane
testArrayA 

in the panes below

[1]test1
[2]test2
[3]test3

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread Thomas McGrath III

Pat,

Yes I downloaded 2.6 and just did about Rev to make sure.
Is it right that there are only three panes? Left right and below?

Thanks, no luck here

tom

On Jun 8, 2005, at 8:23 AM, Pat Trendler wrote:


Tom,

Sorry, this is about 2.6. You are using 2.6?

Pat
[EMAIL PROTECTED]

- Original Message - From: "Pat Trendler" 
<[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 10:08 PM
Subject: Re: 'seeing' arrays in the variable watcher


Did you click on testArrayA? - you have to do that to get it to 
display.
- Original Message - From: "Thomas McGrath III" 
<[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 9:36 PM
Subject: Re: 'seeing' arrays in the variable watcher
I tried the code below and the variable watcher shows blank for 
testArrayA

I don't see what you are seeing.
Tom
On Jun 8, 2005, at 1:50 AM, Pat Trendler wrote:
I don't know if I'm misunderstanding this. But, if I run the 
handler below, in the variable watcher I can see :


left paneright pane
testArrayA 

in the panes below

[1]test1
[2]test2
[3]test3

if the contents don't show, clicking on the name shows them.
You may have to move the dividers to see the different panes.

What else should I be able to see?

Pat
[EMAIL PROTECTED]


- Original Message - From: "Stephen Barncard" 
<[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 1:36 PM
Subject: 'seeing' arrays in the variable watcher



the usual array test in a button...

on mouseUp
  global testArrayA
  put "test1" into testArrayA[1]
  put "test2" into testArrayA[2]
  put "test3" into testArrayA[3]
  repeat with n = 1 to 3
put testArrayA[n]  & return after theOut
  end repeat
  put theOut
end mouseUp

returns in the msg...

test1
test2
test2

but I don't see anything different in the variable watcher. Under 
what conditions does one 'see' the arrays values in Rev 2.6??



stephen barncard


At 7:43 PM -0500 6/7/05, Ken Ray wrote:
Sorry, but one of the things I like about the debugger is that 
you can
select and/or change values of a variable while you're debugging. 
You (a)
can't do that with array element values, and (b) if your element 
contains
more than one line, you only see the first line in the debugger 
and there's

no way to see anything else.

Don't get me wrong - I'm happy to see arrays in the debugger, but 
I think it

didn't go far enough, IMHO.

Ken Ray

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution



Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution




Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread Thomas McGrath III

Pat,

Yeah, I did a few times.(click button with script then select 
testArrayA, even select right pane blank space - nothing) Right pane 
shows blank the msg shows the array but testArrayA does not.


I wonder why.

tom

On Jun 8, 2005, at 8:08 AM, Pat Trendler wrote:

Did you click on testArrayA? - you have to do that to get it to 
display.


- Original Message - From: "Thomas McGrath III" 
<[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 9:36 PM
Subject: Re: 'seeing' arrays in the variable watcher


I tried the code below and the variable watcher shows blank for 
testArrayA

I don't see what you are seeing.
Tom
On Jun 8, 2005, at 1:50 AM, Pat Trendler wrote:
I don't know if I'm misunderstanding this. But, if I run the handler 
below, in the variable watcher I can see :


left paneright pane
testArrayA 

in the panes below

[1]test1
[2]test2
[3]test3

if the contents don't show, clicking on the name shows them.
You may have to move the dividers to see the different panes.

What else should I be able to see?

Pat
[EMAIL PROTECTED]


- Original Message - From: "Stephen Barncard" 
<[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 1:36 PM
Subject: 'seeing' arrays in the variable watcher



the usual array test in a button...

on mouseUp
  global testArrayA
  put "test1" into testArrayA[1]
  put "test2" into testArrayA[2]
  put "test3" into testArrayA[3]
  repeat with n = 1 to 3
put testArrayA[n]  & return after theOut
  end repeat
  put theOut
end mouseUp

returns in the msg...

test1
test2
test2

but I don't see anything different in the variable watcher. Under 
what conditions does one 'see' the arrays values in Rev 2.6??



stephen barncard


At 7:43 PM -0500 6/7/05, Ken Ray wrote:
Sorry, but one of the things I like about the debugger is that you 
can
select and/or change values of a variable while you're debugging. 
You (a)
can't do that with array element values, and (b) if your element 
contains
more than one line, you only see the first line in the debugger 
and there's

no way to see anything else.

Don't get me wrong - I'm happy to see arrays in the debugger, but 
I think it

didn't go far enough, IMHO.

Ken Ray

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution



Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution




Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread Pat Trendler

Tom,

Sorry, this is about 2.6. You are using 2.6?

Pat
[EMAIL PROTECTED]

- Original Message - 
From: "Pat Trendler" <[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 10:08 PM
Subject: Re: 'seeing' arrays in the variable watcher



Did you click on testArrayA? - you have to do that to get it to display.

- Original Message - 
From: "Thomas McGrath III" <[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 9:36 PM
Subject: Re: 'seeing' arrays in the variable watcher


I tried the code below and the variable watcher shows blank for 
testArrayA


I don't see what you are seeing.

Tom

On Jun 8, 2005, at 1:50 AM, Pat Trendler wrote:

I don't know if I'm misunderstanding this. But, if I run the handler 
below, in the variable watcher I can see :


left paneright pane
testArrayA 

in the panes below

[1]test1
[2]test2
[3]test3

if the contents don't show, clicking on the name shows them.
You may have to move the dividers to see the different panes.

What else should I be able to see?

Pat
[EMAIL PROTECTED]


- Original Message - From: "Stephen Barncard" 
<[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 1:36 PM
Subject: 'seeing' arrays in the variable watcher



the usual array test in a button...

on mouseUp
  global testArrayA
  put "test1" into testArrayA[1]
  put "test2" into testArrayA[2]
  put "test3" into testArrayA[3]
  repeat with n = 1 to 3
put testArrayA[n]  & return after theOut
  end repeat
  put theOut
end mouseUp

returns in the msg...

test1
test2
test2

but I don't see anything different in the variable watcher. Under 
what conditions does one 'see' the arrays values in Rev 2.6??



stephen barncard


At 7:43 PM -0500 6/7/05, Ken Ray wrote:
Sorry, but one of the things I like about the debugger is that you 
can
select and/or change values of a variable while you're debugging. 
You (a)
can't do that with array element values, and (b) if your element 
contains
more than one line, you only see the first line in the debugger and 
there's

no way to see anything else.

Don't get me wrong - I'm happy to see arrays in the debugger, but I 
think it

didn't go far enough, IMHO.

Ken Ray

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution




Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread Pat Trendler

Did you click on testArrayA? - you have to do that to get it to display.

- Original Message - 
From: "Thomas McGrath III" <[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 9:36 PM
Subject: Re: 'seeing' arrays in the variable watcher


I tried the code below and the variable watcher shows blank for 
testArrayA


I don't see what you are seeing.

Tom

On Jun 8, 2005, at 1:50 AM, Pat Trendler wrote:

I don't know if I'm misunderstanding this. But, if I run the handler 
below, in the variable watcher I can see :


left paneright pane
testArrayA 

in the panes below

[1]test1
[2]test2
[3]test3

if the contents don't show, clicking on the name shows them.
You may have to move the dividers to see the different panes.

What else should I be able to see?

Pat
[EMAIL PROTECTED]


- Original Message - From: "Stephen Barncard" 
<[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 1:36 PM
Subject: 'seeing' arrays in the variable watcher



the usual array test in a button...

on mouseUp
  global testArrayA
  put "test1" into testArrayA[1]
  put "test2" into testArrayA[2]
  put "test3" into testArrayA[3]
  repeat with n = 1 to 3
put testArrayA[n]  & return after theOut
  end repeat
  put theOut
end mouseUp

returns in the msg...

test1
test2
test2

but I don't see anything different in the variable watcher. Under 
what conditions does one 'see' the arrays values in Rev 2.6??



stephen barncard


At 7:43 PM -0500 6/7/05, Ken Ray wrote:
Sorry, but one of the things I like about the debugger is that you 
can
select and/or change values of a variable while you're debugging. 
You (a)
can't do that with array element values, and (b) if your element 
contains
more than one line, you only see the first line in the debugger and 
there's

no way to see anything else.

Don't get me wrong - I'm happy to see arrays in the debugger, but I 
think it

didn't go far enough, IMHO.

Ken Ray

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution




Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-08 Thread Thomas McGrath III
I tried the code below and the variable watcher shows blank for 
testArrayA


I don't see what you are seeing.

Tom

On Jun 8, 2005, at 1:50 AM, Pat Trendler wrote:

I don't know if I'm misunderstanding this. But, if I run the handler 
below, in the variable watcher I can see :


left paneright pane
testArrayA 

in the panes below

[1]test1
[2]test2
[3]test3

if the contents don't show, clicking on the name shows them.
You may have to move the dividers to see the different panes.

What else should I be able to see?

Pat
[EMAIL PROTECTED]


- Original Message - From: "Stephen Barncard" 
<[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 1:36 PM
Subject: 'seeing' arrays in the variable watcher



the usual array test in a button...

on mouseUp
  global testArrayA
  put "test1" into testArrayA[1]
  put "test2" into testArrayA[2]
  put "test3" into testArrayA[3]
  repeat with n = 1 to 3
put testArrayA[n]  & return after theOut
  end repeat
  put theOut
end mouseUp

returns in the msg...

test1
test2
test2

but I don't see anything different in the variable watcher. Under 
what conditions does one 'see' the arrays values in Rev 2.6??



stephen barncard


At 7:43 PM -0500 6/7/05, Ken Ray wrote:
Sorry, but one of the things I like about the debugger is that you 
can
select and/or change values of a variable while you're debugging. 
You (a)
can't do that with array element values, and (b) if your element 
contains
more than one line, you only see the first line in the debugger and 
there's

no way to see anything else.

Don't get me wrong - I'm happy to see arrays in the debugger, but I 
think it

didn't go far enough, IMHO.

Ken Ray

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution




Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 'seeing' arrays in the variable watcher

2005-06-07 Thread Pat Trendler
I don't know if I'm misunderstanding this. But, if I run the handler below, 
in the variable watcher I can see :


left paneright pane
testArrayA 

in the panes below

[1]test1
[2]test2
[3]test3

if the contents don't show, clicking on the name shows them.
You may have to move the dividers to see the different panes.

What else should I be able to see?

Pat
[EMAIL PROTECTED]


- Original Message - 
From: "Stephen Barncard" <[EMAIL PROTECTED]>

To: "How to use Revolution" 
Sent: Wednesday, June 08, 2005 1:36 PM
Subject: 'seeing' arrays in the variable watcher



the usual array test in a button...

on mouseUp
  global testArrayA
  put "test1" into testArrayA[1]
  put "test2" into testArrayA[2]
  put "test3" into testArrayA[3]
  repeat with n = 1 to 3
put testArrayA[n]  & return after theOut
  end repeat
  put theOut
end mouseUp

returns in the msg...

test1
test2
test2

but I don't see anything different in the variable watcher. Under what 
conditions does one 'see' the arrays values in Rev 2.6??



stephen barncard


At 7:43 PM -0500 6/7/05, Ken Ray wrote:

Sorry, but one of the things I like about the debugger is that you can
select and/or change values of a variable while you're debugging. You (a)
can't do that with array element values, and (b) if your element contains
more than one line, you only see the first line in the debugger and 
there's

no way to see anything else.

Don't get me wrong - I'm happy to see arrays in the debugger, but I think 
it

didn't go far enough, IMHO.

Ken Ray

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


'seeing' arrays in the variable watcher

2005-06-07 Thread Stephen Barncard

the usual array test in a button...

on mouseUp
  global testArrayA
  put "test1" into testArrayA[1]
  put "test2" into testArrayA[2]
  put "test3" into testArrayA[3]
  repeat with n = 1 to 3
put testArrayA[n]  & return after theOut
  end repeat
  put theOut
end mouseUp

returns in the msg...

test1
test2
test2

but I don't see anything different in the variable watcher. Under 
what conditions does one 'see' the arrays values in Rev 2.6??



stephen barncard


At 7:43 PM -0500 6/7/05, Ken Ray wrote:

Sorry, but one of the things I like about the debugger is that you can
select and/or change values of a variable while you're debugging. You (a)
can't do that with array element values, and (b) if your element contains
more than one line, you only see the first line in the debugger and there's
no way to see anything else.

Don't get me wrong - I'm happy to see arrays in the debugger, but I think it
didn't go far enough, IMHO.

Ken Ray

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution