Card Question

2010-09-12 Thread Warren Kuhl
Is there a way to open a stack without the title bar? Basically the card should be a square box. Currently the stack is opened as modeless. Thanks for any help! Warren ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this

Re: Card Question

2010-09-12 Thread Klaus on-rev
Hi Warren, Is there a way to open a stack without the title bar? Basically the card should be a square box. Currently the stack is opened as modeless. Stack script (or script of card 1): on preopenstack set the decorations of this stack to empty end preopenstack You can also set this in

Re: Card Question

2010-09-12 Thread Richard Gaskin
Warren Kuhl wrote: Is there a way to open a stack without the title bar? Basically the card should be a square box. Currently the stack is opened as modeless. set the decorations of stack StackName to none See the Dictionary entry for the decorations stack property for details. -- Richard

Re: Card Question

2010-09-12 Thread Warren Kuhl
Klaus/Richard, Thanks for your help. This worked exactly as I was hoping. Warren On Sun, Sep 12, 2010 at 11:45 AM, Richard Gaskin ambassa...@fourthworld.com wrote: Warren Kuhl wrote: Is there a way to open a stack without the title bar? Basically the card should be a square box.

Re: Card Question

2010-09-12 Thread Andre Garzia
just give your stack some code to be moved and closed. On Sun, Sep 12, 2010 at 1:55 PM, Warren Kuhl warrenk...@gmail.com wrote: Klaus/Richard, Thanks for your help. This worked exactly as I was hoping. Warren On Sun, Sep 12, 2010 at 11:45 AM, Richard Gaskin ambassa...@fourthworld.com

Re: Copy card question from 1 stack file to another

2005-06-21 Thread David Squance
Jim, Perhaps it would work to copy one card, make sure the menu and field are grouped and the background behaviour is on and then clone the card with a repeat loop, either in the message box or with a button which could later be hidden or deleted, if this is a one-shot affair. The button /

RE: Copy card question from 1 stack file to another

2005-06-21 Thread Lynch, Jonathan
stack, then delete any cards that you do not wish to keep in the new stack. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Squance Sent: Sunday, June 19, 2005 6:48 PM To: [EMAIL PROTECTED]; How to use Revolution Subject: Re: Copy card question from

Re: Copy card question from 1 stack file to another

2005-06-20 Thread Eric Chatonet
Hi Jim, When you paste any object, Rev can't know it is the same as a previous one you have pasted (even the ID is the same some properties could have been changed in the meantime in the source object). So it's a normal behaviour to see new objects created with new IDs allocated. To avoid

RE: Copy card question from 1 stack file to another

2005-06-20 Thread Jim Bufalini
]; How to use Revolution Subject: Re: Copy card question from 1 stack file to another Hi everyone, This has to be simple, but it has me stumped. I am running rev 2.51 on WinXP I am copying 20 cards from one stack file to a separate stack in another file. The cards have two objects I am

Copy card question from 1 stack file to another

2005-06-19 Thread Jim Bufalini
Hi everyone, This has to be simple, but it has me stumped. I am running rev 2.51 on WinXP I am copying 20 cards from one stack file to a separate stack in another file. The cards have two objects I am interested in, an option menu button and a scrolling field. Selecting the option menu switches

Re: Copy card question from 1 stack file to another

2005-06-19 Thread Robert Brenstein
Hi everyone, This has to be simple, but it has me stumped. I am running rev 2.51 on WinXP I am copying 20 cards from one stack file to a separate stack in another file. The cards have two objects I am interested in, an option menu button and a scrolling field. Selecting the option menu

open card question

2004-09-02 Thread Yves COPPE
Hi list, I have a mainstack A and 2 substacks B and C the user can browse through stack B which contains multiple cards how can I know when the user clicks a btn in stack C which card is the open card of stack B ? thank you for your help... Greetings. Yves COPPE [EMAIL PROTECTED]

Re: open card question

2004-09-02 Thread Éric Chatonet
Le 2 sept. 04, à 09:38, Yves COPPE a écrit : Hi list, I have a mainstack A and 2 substacks B and C the user can browse through stack B which contains multiple cards how can I know when the user clicks a btn in stack C which card is the open card of stack B ? thank you for your help... Bonjour

Re: open card question

2004-09-02 Thread Jeanne A. E. DeVoto
At 9:41 AM +0200 9/2/2004, Yves COPPE wrote: I have a mainstack A and 2 substacks B and C the user can browse through stack B which contains multiple cards how can I know when the user clicks a btn in stack C which card is the open card of stack B ? Use this card: get the name of this card of

Basic Stack/Card Question

2004-04-05 Thread David Burgun
Hi, This is probably a very silly question, but as I'm a relative newbie and am trying to get my head around some of the RR concepts I thought I'd just ask this basic question here: I have a Stack (window) that is setup so that there are some controls that are constant within the window, and

Re: Basic Stack/Card Question

2004-04-05 Thread Dar Scott
On Monday, April 5, 2004, at 10:28 AM, David Burgun wrote: I had thought that I could use a seperate Card for each Tab, but it seems that a card covers the whole area of the Stack (window). Is this correct? Look at the idea of a shared group containing the constCtrln. Place that group on each

Re: Basic Stack/Card Question

2004-04-05 Thread Klaus Major
Hi David, i sent this mail yesterday evening, but it looks like it vanished in the haze somehow... Hi, Sorry, it is difficult to explain, I'll try harder: I have a number of Tabs. When the user presses a Tab, I want the controls under that Tab to be displayed and the ones on the old Tab to

Re: Basic Stack/Card Question

2004-04-05 Thread David Burgun
Hi, Look at the idea of a shared group containing the constCtrln. Place that group on each of the tab. See 'place' in the Transcript dictionary. Thanks this works, I implemented it like this: In the Stack Script, I added the lines: on preOpenStack place background GroupConstant on card

Re: Basic Stack/Card Question

2004-04-05 Thread David Burgun
Hi Klaus, I saw this and was trying to make it work, but I can't figure out how to actually create the groups in the IDE. For instance the controls for Tab1 will be in the same postion as for Tab2. How do I get around this? Thanks a lot for all your help All the Best Dave Hi David, i sent

Re: Basic Stack/Card Question

2004-04-05 Thread Klaus Major
Hi David, Hi Klaus, I saw this and was trying to make it work, but I can't figure out how to actually create the groups in the IDE. For instance the controls for Tab1 will be in the same postion as for Tab2. How do I get around this? No problem... 1. create all the objects for your first

Re: Basic Stack/Card Question

2004-04-05 Thread Dar Scott
On Monday, April 5, 2004, at 11:53 AM, David Burgun wrote: This all works fine, the problem I have now is that when I re-run the Stack, I get an error since the group is already included in Cards CardTab1 and CardTab2. How to do I supress this? You only need to place once during development. I

Re: Basic Stack/Card Question

2004-04-05 Thread David Burgun
Hi Again, Sorry if I am being dense but what is the Application Overview ? Do you mean the Application Browser ? Actually I just tried it and it's SOO obvious that I feel embarrassed. I just didn't Get It, I understand now. Ok, I now have two ways to do this, one using a separate card