my $dialog = $mw->DialogBox(-title => "Is $host trusted?", -buttons => ["Yes", "No"]); $dialog->geometry("600x100+0+0"); $dialog->deiconify(); my $answer = $dialog->Show(-global, -popover=>"cursor"); if ($answer eq "Yes") { $trusted_site->{$host} = 1; } else { $trusted_site->{$host} = 0; }