collections { group { name: "blah"; min: 150 150; parts { part { name: "rect"; type: RECT; description { state: "default" 0.0; color: 255 0 0 255; rel1 {relative: 0.5 0.5; offset: -20 -20;} rel2 {relative: 0.5 0.5; offset: 20 20;} } description { state: "smelly" 0.0; color: 255 255 0 255; rel1 {relative: 0.5 0.5; offset: -20 -20;} rel2 {relative: 0.5 0.5; offset: 20 20;} } } part { name: "invisi-magic"; type: RECT; repeat_events: 1; description { state: "default" 0.0; color: 0 0 0 0; } } } programs { program { name: "magic pants"; signal: "mouse,out"; source: "invisi-magic"; action: STATE_SET "default" 0.0; target: "rect"; } program { name: "magic pants2"; signal: "mouse,in"; source: "invisi-magic"; action: STATE_SET "smelly" 0.0; target: "rect"; } } } }