Re: Go back no longer works

2015-02-18 Thread Bob Sneidar
Works fine in 6.7.2. Apparently someone saw this in the initial release of 6.7 and fixed it. Looks like my issue with “holes” where controls should have been will also be resolved. Bob S On Feb 18, 2015, at 08:09 , Bob Sneidar mailto:bobsnei...@iotecdigital.com>> wrote: Okay I created a simp

Re: Go back no longer works

2015-02-18 Thread Bob Sneidar
Okay I created a simple stack in version 6.7 (I could have sworn I was using 6.7.1 but apparently not and I am not being offered any new version.) I have 2 cards. In the card script of one, I have: on openCard set the height of this stack to 300 end openCard In the second card script I have

Re: Go back no longer works

2015-02-17 Thread Bob Sneidar
For this test, I realized I was causing a recursion problem. Bob S > On Feb 17, 2015, at 18:40 , J. Landman Gay wrote: > > On 2/17/2015 6:25 PM, Bob Sneidar wrote: >> on openStack >> go card 2 >> go back >> end openCard >> >> I end up on card 2. Ideas?? > > I wonder if openStack doesn't pus

Re: Go back no longer works

2015-02-17 Thread Bob Sneidar
Okay I have positively isolated it to setting the height of the stack in an openCard handler. That was the change I made today that borked the whole stack. For whatever reason, going to a card, changing the height, and then going back does something to the stack that prevents the card from actua

Re: Go back no longer works

2015-02-17 Thread J. Landman Gay
On 2/17/2015 6:25 PM, Bob Sneidar wrote: on openStack go card 2 go back end openCard I end up on card 2. Ideas?? I wonder if openStack doesn't push the first card onto the recentcards list, since the card isn't technically open yet at that point. What happens if you execute the sequence on o

Re: Go back no longer works

2015-02-17 Thread Bob Sneidar
omething very odd has happened to my Livecode Install. The command Go Back >> no longer works. Was working up until about a half hour ago. To test it I >> created a new stack with two cards, each marked card 1 and card 2 >> respectively. In the first card I have a handler in the

Re: Go back no longer works

2015-02-17 Thread Eric Corbett
Try: on openStack go card 2 go back 1 end openCard Eric On Feb 17, 2015, at 4:25 PM, Bob Sneidar wrote: > Something very odd has happened to my Livecode Install. The command Go Back > no longer works. Was working up until about a half hour ago. To test it I > created a new stack

Go back no longer works

2015-02-17 Thread Bob Sneidar
Something very odd has happened to my Livecode Install. The command Go Back no longer works. Was working up until about a half hour ago. To test it I created a new stack with two cards, each marked card 1 and card 2 respectively. In the first card I have a handler in the card script on