i am trying to put a code into a button that will print the values of some parameters, i was able to make a list with
t = [x for x in hou.pwd().parms() if x.name().startswith("blend")];
then i can print the list of the parameters that i want with
print t;
but if i want to do something to each one is when starts to break:
t = [x for x in hou.pwd().parms() if x.name().startswith("blend")]; print t; for i in t: print i.eval();
the funny thing is if i print all directly with out doing the filter list does work =(
for i in hou.pwd().parms(): print i.eval();
any cool tip that might work?
thanks.