Hi,
I am using panel execute inside a button and trying to some continuous values between 0.1 and 1. I want to export these values to a constant chop. For that I stored the x values in var1. When I tried to use this expression me.parent().fetch(‘var1’) inside constant CHOP (which is inside the button) its only taking the last value ie, 1, all other values are not showing. I also used an examine DAT to know the values. In that also only one value is showing ie, 1. But when i print inside textport all values between 0.1 and 1 is showing up.
Any solution to get all the values out of DAT?
Thanks in advance
def whileOn(panelValue):
x = .1
while x<1:
x = x+.01
me.parent().store(‘var1’,x)
print(me.parent().fetch(‘var1’))
return