The activate method sets the Listbox item at index to the active element. This allows you to access this item later using the "active" index. Figure 7-5 shows two windows with active elements underlined. Each Listbox also has the black highlight rectangle around it that indicates it has the keyboard focus (the active element isn't seen as marked unless the Listbox has focus).
# The first window activates the item "four" $lb->activate(3); $lb->focus(); # The second window activates the item "three" $lb2->activate(2); $lb2->focus();
Copyright © 2002 O'Reilly & Associates. All rights reserved.