Re: basic-link

  How could i read a variable in the basic-link object ?
  <fo:basic-link external-destination="$strCodeGTA"/>


FO itself doesn't have variables. Assuming that this is an Xpath
variable and you are generating the FO in an XSLT stylesheet, the
attribuute of any literal result element is an attribute value template
and Xpath expressions will be evaluated if they are surrounded by {} so
you would use

  <fo:basic-link external-destination="{$strCodeGTA}"/>
                                       ^           ^
                                       ^           ^

The generated FO would then have the value of that variable as its 
external-destination attribute.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Received on Friday, 10 September 2004 13:58:31 UTC