If you want to toggle effects, I am afraid there is no "simple" way of doing it. It is not terribly difficult, but you will need to do a few extra things asides from toggling a variable.
Here is how I would attempt to do that.
dropbox.com/s/ujxik0hl3trlfu9/ToggleEffects.c3p
The project has two functions, ToogleEffects and ToggleEffects2.
ToogleEffects is the generalized case, you can send in a "main" effect and a list of the other effects in the instance you are targeting and the function takes care of enabling and disabling effects according to an instance variable.
ToogleEffects2 is conceptually the same as ToogleEffects but it has all the names for the effects it can handle hardcoded in it, it's easier to understand what it is doing, but less useful.