From: Jonathan S. <jso...@al...> - 2002-06-18 16:18:32
|
Thanks Aldo. It works now. Jonathan At 6/18/2002 05:35 PM, you wrote: >Jonathan Southwick wrote: > > I have a file that contains some information that is used to create a >menu, > > almost like a Recently Opened Files list. I tried using the code from the > > podview,pl sample but it is not working for me. Can anyone see anything I > > am doing wrong? > > > > [...] > > *$subname = eval(qq( > > sub { > > print "got a click\n"; ## this is for testing, but > > I don't get a click > > $MainWindow->Message->Text($MESSAGE{$key}); > > return; > > } > > )); > >if you're using qq() to quote the sub, you need to escape sigils: > > \$MainWindow->Message->Text(\$MESSAGE{\$key}); > >NOTE: please forward this msg to the mailing list, because SourceForge >is refusing to receive mail from me :-( > >cheers, >Aldo > >__END__ >$_=q,just perl,,s, , another ,,s,$, hacker,,print; |