You are setting the variable and all, however you are not showing how you're using this variable to expand the menu. If you're only using the !ToggleMeter bang to hide/show the meters then the variable is not needed at all. Also, if you have properly set the groups on the meters then there's no reason for the other group to toggle.
So you should be able to simply click one and toggle that group specifically without affecting the other.
However if what you want is to hide a group when you show the other, then don't use toggle, use show and hide and set your conditions based on a single variable.
Let's say we call the variable #menu#
1 will be for security group and 2 will be for games group. Then set your condition like this:
Code:
IfCondition=#menu# = 1IfTrueAction=[!ShowMeterGroup Security]IfFalseAction=[!HideMeterGroup Security]IfCondition2=#menu# = 2IfTrueAction2=[!ShowMeterGroup Games]IfFalseAction2=[!HideMeterGroup Games]
Then simply set the menu variable to 1 or to 2 when clicking on each tab, don't forget to update the measure you set the conditions on.
That should work.