Tagged Questions
2
votes
1answer
264 views
How to undersand the POE-Tk use of destroy?
Here is some test code to illustrate my problem;
use Tk;
use POE qw( Loop::TkActiveState );
use Tk::Toplevel;
POE::Session->create(
inline_states => {
_start => \&ui_start
,top1 => ...
1
vote
1answer
81 views
Understanding name spaces in POE-Tk
I posted "How to undersand the POE-Tk use of destroy?" in an attempt to reduce the bug in my production code to a test case. But it seems that the solution to the test case is not working in the ...