You could also use the menuPick handler

on menuPick m
   if m="Tab1" then
       hide group "tab2"
       show group "tab1"
   else if m="Tab2" then
       hide group "tab1"
       show group "tab2"
   end if
end menuPick


----- Original Message ----- From: "Judy Perry" <[EMAIL PROTECTED]>
To: "docmann" <[EMAIL PROTECTED]>; "How to use Revolution" <use-revolution@lists.runrev.com>
Sent: Sunday, January 02, 2005 1:01 PM
Subject: Re: Tabs



on mouseUp -- of the tabbed button set if the selectedText of me is "Tab1" then --checks for active tab hide image|field "myImageName"|"myFieldName" --hides unwanted stuff show image|field "myImageName"|"myFieldName" --shows wanted stuff end if --... repeat until you've checked for all tabs end mouseUp


_______________________________________________ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to