View Single Post
  #4  
Old 07-14-2014, 10:51 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
That error means there are more than 8 values being returned. You could save the values to a list and then extract the first 8.

Code:
data = tracker.getData()
x = data[0]
Reply With Quote