put variables dialog inside of "step through ..."

Features wanted...
Post Reply
paul0
Posts: 137
Joined: 23 Oct 2009 19:26

put variables dialog inside of "step through ..."

Post by paul0 »

put the dialog of "variables on stack" inside of the dialog of "step through a script".

Current view is attached. The popup dialog of "variables on stack" stops user from clicking the "continue" button. it will be great to see value of variables in the same dialog of "step through a script".
Attachments
current view of two dialogs
current view of two dialogs
suggestion.png (37.95 KiB) Viewed 1736 times

PeterH
Posts: 2826
Joined: 21 Nov 2005 20:39
Location: DE W11Pro 24H2, 1920*1200*100% 3840*2160*150%

Re: put variables dialog inside of "step through ..."

Post by PeterH »

First the wrong answer: you should define strings in quotes, i.e.:

Code: Select all

   $lookup="Tags";
Then to the contents of the variables in the Stepping-Window: I think it's a problem with the needed space - you might have many variables with rather long values...

But if the "Variables on Stack" window would be modal you just could keep it open and watch the changing values while stepping. So I think this would be fine.

paul0
Posts: 137
Joined: 23 Oct 2009 19:26

Re: put variables dialog inside of "step through ..."

Post by paul0 »

Thanks, PeterH.
PeterH wrote:First the wrong answer: you should define strings in quotes, i.e.:

Code: Select all

   $lookup="Tags";
You are right. I am helping test the tagCounter, http://www.xyplorer.com/xyfc/viewtopic.php?f=7&t=7741
PeterH wrote: Then to the contents of the variables in the Stepping-Window: I think it's a problem with the needed space - you might have many variables with rather long values...
can be solved using scrolling bar.
PeterH wrote: But if the "Variables on Stack" window would be modal you just could keep it open and watch the changing values while stepping. So I think this would be fine.
"Variables on Stack" window is active, and then "step through..." window is not active until you close the "Variables on Stack" window.

Again, thank you for your comment. :biggrin: :appl:

PeterH
Posts: 2826
Joined: 21 Nov 2005 20:39
Location: DE W11Pro 24H2, 1920*1200*100% 3840*2160*150%

Re: put variables dialog inside of "step through ..."

Post by PeterH »

paul0 wrote:
PeterH wrote: But if the "Variables on Stack" window would be modal you just could keep it open and watch the changing values while stepping. So I think this would be fine.
"Variables on Stack" window is active, and then "step through..." window is not active until you close the "Variables on Stack" window.
Sorry, it seems I've written too fast - and now that's the opposite of what I meant :whistle:
The word should be non-modal, of course - makes no sense as written :oops:

Meant was a window that dynamically shows the values of variables, that you can leave open when running the script, and watch the variables change.

(But I don't know how easy or difficult it is to program this in VB...)

Twisten
Posts: 204
Joined: 27 Apr 2008 10:30

Re: put variables dialog inside of "step through ..."

Post by Twisten »

+1 if this isn't too hard.

Post Reply