Example #1
0
 def setAutoDraw(self, value, log=None):
     """Sets autoDraw for Form and any responseCtrl contained within
     """
     for i in self.items:
         if i['responseCtrl']:
             i['responseCtrl'].setAutoDraw(value)
     BaseVisualStim.setAutoDraw(self, value, log)
Example #2
0
 def setAutoDraw(self, value, log=None):
     """Sets autoDraw for Form and any responseCtrl contained within
     """
     for i in self.items:
         if i['responseCtrl']:
             i['responseCtrl'].__dict__['autoDraw'] = value
             self.win.addEditable(i['responseCtrl'])
     BaseVisualStim.setAutoDraw(self, value, log)