jack123 has asked for the wisdom of the Perl Monks concerning the following question:
This image is animated one and it runs successfully in IE.#!/usr/bin/perl use warnings; use strict; use Tk; my $mw = MainWindow->new; my $image = $mw->Photo(-file => 'C:/wamp/bin/Perl/bin/ajax_loader.gif' +); $mw->Label(-image=>$image)->pack; $mw->MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to put animated GIF in a perl GUI created using Tk
by Khen1950fx (Canon) on May 08, 2012 at 12:52 UTC | |
|
Re: How to put animated GIF in a perl GUI created using Tk
by ww (Archbishop) on May 08, 2012 at 12:29 UTC | |
|
Re: How to put animated GIF in a perl GUI created using Tk
by Anonymous Monk on May 08, 2012 at 12:27 UTC |