I managed to solve this by playing with the Hyperlinks collection using the VB Add method. It works somewhat the same as in Win32::OLE. Now I am able to display textual data independently of the URI. I appreciate your help anyway.
=cut Object The object in which you want to insert the hyperlink. Anchor The object the user will click to follow the hyperlink. This co +uld be a section of text, a Range object, or a graphic. Address The address of the link, which can be a file path, a UNC path, + or a URL. SubAddress (optional) A named location within the linked file ScreenTip (optional) A string that specifies the banner text that appe +ars when the user hovers the mouse pointer over the link. If you omit this argument, the Addres +s is displayed. TextToDisplay (optional) A string that specifies the hyperlink text th +at appears in the document. =cut my $object = $sel->Range; my $address ="$i"; my $subaddress ="subaddress"; my $screentip ="screentip"; my $texttodisplay ="texttodisplay"; ##Hyperlinks collection Add method to insert Hyperlinks into Word $sel->Hyperlinks->Add( $object,$address,$subaddress,$screentip,$textto +display);

In reply to Re: NetWallah Where Art Thou or $o->Hyperlinks->Add( $o->Range, $i)/ by Anonymous Monk
in thread NetWallah Where Art Thou or $o->Hyperlinks->Add( $o->Range, $i)/ by Anonymous Monk

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.