On 12/12/2014 at 09:03, xxxxxxxx wrote:
I have a python tag from witch I run my script.
To keep it simple say I use this:
tip_enable = [1200]
tip_disable = [1100,1300,1400]
#enable morphs in Top_Morph
for item in tip_enable:
tip_L_01.GetFirstTag()[4000,item] = True
#disable morphs in Top_Morph
for item in tip_disable:
tip_L_01.GetFirstTag()[4000,item] = False
c4d.EventAdd()
Now my problem is I want to work this from a Radio Button, but "c4d.EventAdd()" will keep on executing while that Radio Button is active. I want c4d to update only once even though the Radio Button is active.
Is this possible???