Martin,
I've finally been able to get back to this. I did have some scripting working toward setting the points in the pointslist, but wasn't getting any where. I was concerned that I might be breaking something with the script, too.
So, I rebuilt a scene from scratch...and recomposed the script. Then I keyframed the LineList percentage from 0 to 100 to draw on the graph. I put the scene in the sequence and tried to play it out---and it crashed Xpression. I commented out the entire script and tried playing it out...and Xpression crashed. I tried inserting a new instance in the sequence, and Xpression crashed as soon as I dragged it in.
I started over with a fresh scene and was able to draw on the graph by keyframing LineList percentage from 0 to 100 in layout mode and in sequence mode.
The script I was attempting was OnOnline. Although earlier I tried to use text fields to set x,y coordinates for the pointlist, this time I used quads (since I saw that it would be helpful to the producer to have a visual representation of what they were building) and attempted to use their position to set the points in the pointlist.
dim Line1 as xpLinesObject
dim Line1List as xpPointList
dim Line1Point1, Line1Point2, Line1Point3 as xpQuadObject
self.GetObjectByName ("Line1", Line1)
self.GetObjectByName ("Line1List", Line1List)
self.GetObjectByName ("Line1Point1", Line1Point1)
self.GetObjectByName ("Line1Point2", Line1Point2)
self.GetObjectByName ("Line1Point3", Line1Point3)
Line1List.pointlist(Line1Point1.position,Line1Point2.position,Line1Point3)
Any ideas what section of the script broke my Xpression Designer? Is there any hope for what I want to do?
Thanks,
James.
#XPression