-Q2.C.8- bind the ResizeRequest event?

From: -II-  Tk Questions and Answers - How can I:

A2.C.8.  huffi@dutncp8.tn.tudelft.nl (Martijn Figee Huffi Marcel Huefken)
says:

: I'm having trouble with...
:    bind .frame <ResizeRequest> {puts stdout "resise\n"}
: that is I can resize .frame and NEVER see "resize" at stdout.
 
Try 
        bind .frame <Configure> {puts...}
 
It'll work.

Parent document is top of "FAQ: comp.lang.tcl Tk Toolkit Usage Questions And Answers (1/1)"
Previous document is "-Q2.C.7- mix interactions between Xt and Tk/Tcl?"
Next document is "-Q2.C.9- avoid that 'bad geometry "+0+0": expected widthxheight' error message?"