January 1999
Beginner
373 pages
9h 43m
English
When we talked about the scrolling region of a canvas, we saw an example of the bboxmethod. The bboxmethod returns a list with four elements that define the area in which all the specified tags exist. The example used the special "all" tag, which refers to every item in the canvas. This was how we used it to define our scrolling region. You can specify more than one tag/ID to search for as follows:
($l, $r, $t, $b) = $canvas->bbox("blue", "red");
Assuming that you have been assigning the tags "blue" and "red" to appropriately color items, this code would return the region in the canvas that encloses all blue and red items.