Re-reading this post, I'm just going to say sorry. I'm not sure I even understand what I meant. Thanks for everything so far, and if you don't mind, I'll post the offending code and you guys can look over it.
sub go
{
foreach (1..5)
{
&neighbors_non_edge($radiovar);
&neighbors_corners($radiovar);
&neighbors_edge($radiovar);
&update_go_array();
&print_array();
}
}
This sub calls the five subs, in order, to complete a single iteration of the whole program. It's nested in a for loop because I want it to happen five times (printing out each time separately, clearing/refreshing the previous printout on the screen as it goes). This sub is outside the tk gui (so outside MainLoop) as are the five subs it calls.
The code for the button in the gui that calls sub go is
$start_button =$top->Button(-text => "Start the Process", -foreground
+=>"red", -command => sub{go()});
I've been looking into the tk::after module. Is that something that I should implement here? If so, where?
thanks again,
john
Faster, faster, faster....till the thrill of speed overcomes the fear of death -Daniel Keys Moran
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.