08.08.14, 15:24
hello
there's a small bug in the tutorial on the page: http://scriptographer.org/tutorials/document-items/working-with-items/
in the first chapter "Selecting, Hiding and Locking Items"
1. var circlePath = new Path.Circle(new Point(50, 50), 25);
2. circlePath = true;
should be
1. var circlePath = new Path.Circle(new Point(50, 50), 25);
2. circlePath.selected = true;