Hi list, i am absolutly new to svg and try to access elements inside the svg. Waht i have now ist the following, but that won't work.
> <?xml version="1.0" standalone="no"?> > <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" > "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> > <svg width="1000px" height="1000px" viewBox="0 0 1000 1000" > xmlns="http://www.w3.org/2000/svg" version="1.1" > xmlns:xlink="http://www.w3.org/1999/xlink"> > <title>VGA Planets Starmap v0.1a</title> > <desc>the actual planets shown as circles</desc> > <g id="1" class="planet"> > <title>Ceti Alpha one</title> > <circle cx="100" cy="300" r="5" style="fill:gray;stroke:black;"/> > <text text-anchor="middle" x="100" y="315">Ceti Alpha one</text> > </g> > > <g id="2" class="planet"> > <title>Orionis I</title> > <circle cx="50" cy="50" r="5" style="fill:gray;stroke:black;"/> > <text text-anchor="middle" x="50" y="65">Orionis I</text> > </g> > <desc>some text as links to planets</desc> > <a xlink:href="starmap.svg#xpointer(id('1'))"> > <text text-anchor="middle" x="700" y="100">Ceti Alpha one</text> > </a> > <a xlink:href="starmap.svg#xpointer(id('2'))"> > <text text-anchor="middle" x="700" y="120">Orionis I</text> > </a> > </svg> Could anyone of you point me into the right direction? TIA, Tom ------------------------ Yahoo! Groups Sponsor --------------------~--> AIDS in India: A "lurking bomb." Click and help stop AIDS now. http://us.click.yahoo.com/9QUssC/lzNLAA/TtwFAA/1U_rlB/TM --------------------------------------------------------------------~-> ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

