Reply To: script needed to remove background colour

#81156
Peter Kahrel
Participant

Paul,

The forum software played a trick on Keith’s script. In this line:

for (var j = myRectangleArray.length – 1; j >= 0; j–) {

the two minuses in j-- were replaced by an en-rule. Line 3 should be

for (var j = myRectangleArray.length – 1; j >= 0; j--) {

Peter

This article was last modified on January 27, 2016

Comments (0)

Loading comments...