|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: adding variables
Hi Bryan,
there are many different possible solutions.
> I want to have an offset stored so that I can move
> around all off my components based on this offset. I
> have created a variable:
>
> <xsl:variable name="y_offset">
> <xsl:value-of select="20"/>
> </xsl:variable>
This can be shortened to <xsl:variable name="y_offset" select="20"/>
> and want to add to the offset. Something to the effect
> of:
>
> <path d="M 35, {$y_offset} + 25 ....
1. very close to the solution: <path d="M 35, {$y_offset + 25} ..."/>
> The output of this command is 20 + 25 though and not
> 45 like I would like it to be. I can't use the
> <xsl:valueof> because it is an attribute.
2. That's not quite correct:
<path>
<xsl:attribute name="d">
<xsl:text>M 35,</xsl:text>
<xsl:value-of select="$y_offset + 25"/>
...
</xsl:attribute>
</path>
But I would prefer the first method using attribute value template.
3. And a complete different solution using SVG: You must group all elements
with the $y_offset and translate() them:
<g transform="translate(0 {$y_offset})">
<path d="M35,25 ..."/>
</g>
Maybe this is the cleanest and easiest solution.
Regards,
Joerg
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








