#!/usr/bin/perl -w #-------------------- Package Definition -------------------- #----------------------- Dependencies ----------------------- use Tk; #---------------- User Defined Declarations ----------------- #------------------------ Main Window ----------------------- my $mw = MainWindow->new( -height => 213, -width => 318); $mw_imageptr = $mw->Photo( -data => ImageResource1()); $mw->Icon( -image => $mw_imageptr); #---------- Adding Button my $Button0 = $mw->Button( -text => "Run Me", -relief => "raised", -background => "#F75037" ); $Button0->place( -x => 7, -y => 10, -height => 40, -width => 50); $Button0->bind( "