How to Change the visibility of a parameter in a tag automatically

So i created a Wire tag that displays the circuit Number of the wire and the comment associated to it
there is only 3 types of comment
#1.5
#2.5
#4.0

What i want to do is: if the value of the comment of the wire equal #2.5 than i want to set the comment parameter to invisible
Thanks

Basic steps:

  1. Get all wire elements.

  2. Get parameter value by name for those elements.

  3. Filter the list of all elements for a bool mask comment == 2.5.

  4. Element set parameter by name for the included elements.

Give that a whirl and post back if you get stuck.