Click twice to open drawer?

2008-07-26 Thread william humphrey
When I do the following it works as expected except the first time right after you open the stack in that case you have to click the button twice for it to work. The button is on the main stack. What can I do to make it so the button only has to be clicked once the first time. (this is hard to

Re: Click twice to open drawer?

2008-07-26 Thread Éric Miclo
Try this: on mouseUp if Consignees is among the lines of the openStacks then close stack Consignees else drawer stack Consignees at right of this stack end mouseUp Le 26 juil. 08 à 16:58, william humphrey a écrit : When I do the following it works as expected except the first time

Re: Click twice to open drawer?

2008-07-26 Thread Éric Miclo
Well it seems that it does not work as expected. Use this: on mouseUp if Consignees is among the lines of the openStacks then close stack Consignees else drawer stack Consignees at right end mouseUp Le 26 juil. 08 à 16:58, william humphrey a écrit : When I do the following it works

Re: strip chars

2008-07-26 Thread J. Landman Gay
Richard Gaskin wrote: I hope I didn't give the impression that repeat for each is always faster than RegEx. No, not at all. The trick is finding the precise dividing line, the code complexity/data complexity/depth ratio that benefits one method over another. If there was a quantified

Re: Click twice to open drawer?

2008-07-26 Thread william humphrey
Thanks that is the ticket. So when I first open the stack the first click that appeared to do nothing was opening the stack and then the second click showing it? Kind of weird. I'm glad there is always another way to do it. On 7/26/08, Éric Miclo [EMAIL PROTECTED] wrote: Well it seems that it

Re: Click twice to open drawer?

2008-07-26 Thread william humphrey
As a further note. If you use this method and the stack to open as a drawer has never been opened as a drawer it doesn't work until you open it in the application browser first. Then after that this works. Kind of strange ... On 7/26/08, Éric Miclo [EMAIL PROTECTED] wrote: Well it seems

Re: Click twice to open drawer?

2008-07-26 Thread Éric Miclo
An even better way to manage the drawer is: on mouseUp if (Consignees is among the lines of the openStacks) and (the Left of stack Consignees the left of this stack) then -- or right/ bottom when drawer is opened at right/bottom close stack Consignees drawer stack Consignees

Re: Click twice to open drawer?

2008-07-26 Thread Éric Miclo
Well, I only use substacks as drawers. If you don't want to do that you can add the Consignees to the stacks of the main stack (File menu - Standalone settings - Stacks or use the full path name of the Consignees stack. Best, ÉrIC Le 26 juil. 08 à 19:31, william humphrey a écrit : As

Re: Click twice to open drawer?

2008-07-26 Thread william humphrey
They were and are substacks. It was just a weird bug I think. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Contextual Menus

2008-07-26 Thread Bill Vlahos
What would be the command for Select All? Bill Vlahos On Jul 21, 2008, at 6:45 PM, J. Landman Gay wrote: J. Landman Gay wrote: If you just want to operate on the text, you can do things like copy the selection. Actually (she said, replying to herself) it's even easier than that. Rev

Re: Contextual Menus

2008-07-26 Thread Mark Schonewille
select all :-) -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com http://www.salery.biz Benefit from our inexpensive hosting services. See http://economy-x-talk.com/server.html for more info. On 27 jul 2008, at 01:57, Bill Vlahos

Problem with focusIn and a substack

2008-07-26 Thread Bill Vlahos
I have a field that when a user clicks on it a calendar picker stack appears to let the user click on a date. The field is locked to allow the mouseUp to work. The script below works fine when the user clicks on the field. The date is selected from the popup and put into the field. It is

Re: Contextual Menus

2008-07-26 Thread Bill Vlahos
Nope. Doesn't work. Bill On Jul 26, 2008, at 5:05 PM, Mark Schonewille wrote: select all :-) -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com http://www.salery.biz Benefit from our inexpensive hosting services. See

[ANN] StackRunner 1.8.1 Released

2008-07-26 Thread Ken Ray
Hey everyone, Just a quick announcement that a minor upgrade to StackRunner based on a suggestion by David Bovill (thanks, David!) - to provide support for the ability to deploy single-icon applications for OS X by providing access to and storage of stacks inside the application bundle. The

Re: Contextual Menus

2008-07-26 Thread Ken Ray
On 7/26/08 6:57 PM, Bill Vlahos [EMAIL PROTECTED] wrote: What would be the command for Select All? select the text of the selectedField But you want to make sure it has a context (i.e. an open field, otherwise you'll get an error since the selectedField would return empty): if the

Re: Contextual Menus

2008-07-26 Thread Bill Vlahos
Ken, Thanks. This works. I have another problem. If I right-click on a field that doesn't have the focus, both paste and your select all command won't do it to the correct field. It will either paste the clipboard or select all in the field that still has the focus (I'm on a Mac). Bill

Re: Contextual Menus

2008-07-26 Thread Bill Vlahos
I added the command: focus on target just before the popup command and that mostly works. It doesn't put the insertion point (for pasting) where I clicked. Is there a better way to do this? Bill On Jul 26, 2008, at 10:18 PM, Bill Vlahos wrote: Ken, Thanks. This works. I have another