in reply to Re: script not working
in thread script not working

also the hash %x is used in:

printf( "Window handle of MyApp application is %x \n", $Mwnd 0 );

but is nowhere declared or initizialized in the application.
use strict might be of great use to the user.

Replies are listed 'Best First'.
Re^3: script not working
by broomduster (Priest) on Sep 25, 2009 at 09:21 UTC
    also the hash %x is used
    Actually, %x in this context is not referring to a hash. It is the printf format directive to print as (unsigned) hexadecimal. See the man page for printf.
Re^3: script not working
by Raj07 (Initiate) on Sep 25, 2009 at 10:11 UTC
    I have tried all the ways suggested by you, but still the window hanlde is displayed as 0.I a m using Perl Express 2.5 IDE for my scripting.