On 1/2/05 7:18 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:

>    I'm surprised that nobody else has come up with this solution to the
> problem of showing/hiding groups yet...
> 
> # in the script of the tabbed button
> on menuPick ChosenOne
>   repeat for each line LL of me
>     set the visible of group LL to (LL = ChosenOne)
>   end repeat
> end menuPick
> 
>    Simple. Easy. Quick. Automatically accomodates any number of tabs. What
> else could a body ask for?

Actually, it's even simpler:

on menuPick pNewTab,pOldTab
  hide group pOldTab
  show group pNewTab
end menuPick


Ken Ray
Sons of Thunder Software
Web site: http://www.sonsothunder.com/
Email: [EMAIL PROTECTED]


_______________________________________________
use-revolution mailing list
[email protected]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to