Mike,

> I've generated PDF that features internal hyperlinks, but I'd like to 
> be able to hyperlink external URLs.  Any way to do this?  Thanks in 
> advance,

FO: see fop-0.20.5\examples\fo\basic\link.fo

XSLT:
<xsl:if test="normalize-space(Header/Company/URL)">
  <fo:block>
    <xsl:variable name="URL">
      <xsl:value-of select="Header/Company/URL"/>
    </xsl:variable>
    <fo:basic-link color="blue" external-destination="{$URL}">
      <xsl:value-of select="$URL"/>
    </fo:basic-link>
  </fo:block>
</xsl:if>

Cheers,
Roland

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to