AW: What to do to get a selected TAB-Button into the foreground?

2007-05-08 Thread Tiemo Hollmann TB
Thank you Eric, very helpful!
Tiemo

> -Ursprüngliche Nachricht-
> Von: [EMAIL PROTECTED] [mailto:use-revolution-
> [EMAIL PROTECTED] Im Auftrag von Eric Chatonet
> Gesendet: Dienstag, 8. Mai 2007 09:21
> An: How to use Revolution
> Betreff: Re: What to do to get a selected TAB-Button into the foreground?
> 
> Hi Tiemo,
> 
> You got , as usual :-) the right answer from Ken.
> In addition, the "How to Manage Tabbed Buttons" tutorial might help
> you to get started with all methods, tricks and tips when managing
> tabbed buttons:
> How to manage tabbed buttons with 2 methods: Multiple cards method
> (each tab is a card) and Groups method (show/hide groups based on tab
> selection).
> And, by script, how to set the tabs names, how to select a tab, how
> to disable or enable a tab, etc.
> 
> You will access this tutorial through "Tutorials Picker" a free
> plugin that interfaces with the So Smart Software website in order to
> display all available tutorials stacks directly from the web.
> You will find it by going to http://www.sosmartsoftware.com/.
> Revolution/Plugins or Tutorials section.
> 
> Le 7 mai 07 à 18:17, Tiemo Hollmann TB a écrit :
> 
> > I just tried my first time a tab panel. As I see it, I put on each
> > card the
> > same tab menu and set the code to:
> >
> > On menuPick . switch "foo" go to card "foo"
> >
> > So far it works, now I am missing a little thing. If I click on a
> > tab, I
> > switch to the selected card, but the clicked tab doesn't come into the
> > foreground not until I have clicked a second time onto the same
> > tab. I have
> > a pass menuPick in my script, and I don't see any property in the
> > btn Tab
> > Menu to set.
> >
> > What am I missing?
> >
> > Thanks for any hint
> 
> Best regards from Paris,
> Eric Chatonet.
> 
> http://www.sosmartsoftware.com/
> [EMAIL PROTECTED]/
> 
> 
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: What to do to get a selected TAB-Button into the foreground?

2007-05-08 Thread Eric Chatonet

Hi Tiemo,

You got , as usual :-) the right answer from Ken.
In addition, the "How to Manage Tabbed Buttons" tutorial might help  
you to get started with all methods, tricks and tips when managing  
tabbed buttons:
How to manage tabbed buttons with 2 methods: Multiple cards method  
(each tab is a card) and Groups method (show/hide groups based on tab  
selection).
And, by script, how to set the tabs names, how to select a tab, how  
to disable or enable a tab, etc.


You will access this tutorial through "Tutorials Picker" a free  
plugin that interfaces with the So Smart Software website in order to  
display all available tutorials stacks directly from the web.

You will find it by going to http://www.sosmartsoftware.com/.
Revolution/Plugins or Tutorials section.

Le 7 mai 07 à 18:17, Tiemo Hollmann TB a écrit :

I just tried my first time a tab panel. As I see it, I put on each  
card the

same tab menu and set the code to:

On menuPick . switch "foo" go to card "foo"

So far it works, now I am missing a little thing. If I click on a  
tab, I

switch to the selected card, but the clicked tab doesn't come into the
foreground not until I have clicked a second time onto the same  
tab. I have
a pass menuPick in my script, and I don't see any property in the  
btn Tab

Menu to set.

What am I missing?

Thanks for any hint


Best regards from Paris,
Eric Chatonet.

http://www.sosmartsoftware.com/
[EMAIL PROTECTED]/



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


AW: What to do to get a selected TAB-Button into the foreground?

2007-05-07 Thread Tiemo Hollmann TB
Thank you Ken, that’s it. I wouldn't have got that in lightyears :)
Tiemo

> -Ursprüngliche Nachricht-
> Von: [EMAIL PROTECTED] [mailto:use-revolution-
> [EMAIL PROTECTED] Im Auftrag von Ken Ray
> Gesendet: Montag, 7. Mai 2007 19:20
> An: How to use Revolution
> Betreff: Re: What to do to get a selected TAB-Button into the foreground?
> 
> On Mon, 7 May 2007 18:17:16 +0200, Tiemo Hollmann TB wrote:
> 
> > I just tried my first time a tab panel. As I see it, I put on each card
> the
> > same tab menu and set the code to:
> >
> > On menuPick . switch "foo" go to card "foo"
> >
> > So far it works, now I am missing a little thing. If I click on a tab, I
> > switch to the selected card, but the clicked tab doesn't come into the
> > foreground not until I have clicked a second time onto the same tab. I
> have
> > a pass menuPick in my script, and I don't see any property in the btn
> Tab
> > Menu to set.
> >
> > What am I missing?
> 
> It sounds to me like you have a copy of the tab panel on each card.
> What you need to do is put the tab panel into a group, and check on the
> "Behave like a background" of the group in the Inspector. Then delete
> all the other tab panels on the other cards, and then go to each of the
> cards you've already created and place the new background group on the
> card (Object menu, choose Place Group, and then pick the group). Any
> new cards you create will automatically inherit the background group.
> 
> This way all the cards are sharing the same group object so the changes
> to the tab panel is reflected on all cards at once.
> 
> HTH,
> 
> Ken Ray
> Sons of Thunder Software, Inc.
> Email: [EMAIL PROTECTED]
> Web Site: http://www.sonsothunder.com/
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: What to do to get a selected TAB-Button into the foreground?

2007-05-07 Thread Ken Ray
On Mon, 7 May 2007 18:17:16 +0200, Tiemo Hollmann TB wrote:

> I just tried my first time a tab panel. As I see it, I put on each card the
> same tab menu and set the code to:
> 
> On menuPick . switch "foo" go to card "foo"
> 
> So far it works, now I am missing a little thing. If I click on a tab, I
> switch to the selected card, but the clicked tab doesn't come into the
> foreground not until I have clicked a second time onto the same tab. I have
> a pass menuPick in my script, and I don't see any property in the btn Tab
> Menu to set.
> 
> What am I missing?

It sounds to me like you have a copy of the tab panel on each card. 
What you need to do is put the tab panel into a group, and check on the 
"Behave like a background" of the group in the Inspector. Then delete 
all the other tab panels on the other cards, and then go to each of the 
cards you've already created and place the new background group on the 
card (Object menu, choose Place Group, and then pick the group). Any 
new cards you create will automatically inherit the background group.

This way all the cards are sharing the same group object so the changes 
to the tab panel is reflected on all cards at once.

HTH,

Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


What to do to get a selected TAB-Button into the foreground?

2007-05-07 Thread Tiemo Hollmann TB
I just tried my first time a tab panel. As I see it, I put on each card the
same tab menu and set the code to:

On menuPick . switch "foo" go to card "foo"

So far it works, now I am missing a little thing. If I click on a tab, I
switch to the selected card, but the clicked tab doesn't come into the
foreground not until I have clicked a second time onto the same tab. I have
a pass menuPick in my script, and I don't see any property in the btn Tab
Menu to set.

What am I missing?

Thanks for any hint

Tiemo

 

 

 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution