actually i m getting display problem while executing the perl code on mozilla browser...like difference in color or allignment...

I have written the code

<div style='position:absolute; top:90; left:110;'> <div style='position:absolute; top:140; left:110; width:360px; height: +160px; background-color:#2E4FB0; filter: Alpha(Opacity=70); '>

but IE generates the following code......

<div style='position:absolute; top:90; left:110;'> <div style='position:absolute; top:140; left:110; width:360px; height: +160px; background-color:#2E4FB0; filter: Alpha(Opacity=70); '>

and Mozilla browser generates the following code

<div style="position: absolute; top: 90px; left: 110px;"> <div style="position: absolute; top: 140px; left: 110px; width: 360px; heig +ht: 160px; background-color: rgb(46, 79, 176);"> </div>

Cud u giv me any solution for that....whether there are some browser settings

20060202 Janitored by Corion: Added formatting

Updated to

Hi I want to find the statistics of a word document through the open office by perl script....I have written the script for this which I attaching with my question...
use OpenOffice::OODoc::Meta; use OpenOffice::OODoc; my $meta = OpenOffice::OODoc::Meta->new("test100.sxw"); my %stat = $meta->statistic; #(Line -- 4) #my $wc = $meta->statistic('meta:word-count'); print "word count = $stat['meta:word-count'] \n "; print " WORD COUNT $wc \n"; #print "This document contains " ."$stat{'meta:tablecount'} table coun +t \n "."$stat{'meta:image-count'} image count \n "."$stat{'meta:objec +t-count'} object count \n "."$stat{'meta:page-count'} page count \n " +."$stat{'meta:paragraphcount'} paragraph count \n "."$stat{'meta:word +-count'} word count \n "."$stat{'meta:charactercount'} character coun +t \n ";
When I am executing the script I am getting the error on Line no 4 i.e.
[OpenOffice::OODoc::XPath::new] No XML content Can't call method "statistic" on an undefined value at test_open1.pl l +ine 4.
Please suggest me some solution for this Thanx

In reply to Statistics of a word document through the open office by denzil_cactus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.