Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
This works ok if the program is IDLE. But since im loading something (converting PSD to JPG) the program is busy and does not play the animation. I cannot use the,my $anim = Gtk2::Gdk::PixbufAnimation->new_from_file($img_path); my $image = Gtk2::Image->new_from_animation($anim);
because the process of converting the image is a single line. (no loops)while (Gtk2->events_pending()) {Gtk2->main_iteration();}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Pixbuf Animation
by Anonymous Monk on May 05, 2009 at 02:34 UTC | |
by Anonymous Monk on May 05, 2009 at 02:51 UTC | |
by lostjimmy (Chaplain) on May 05, 2009 at 03:32 UTC |