Hi, Thanks for the advice... but my svg is not embedded within an html doc, it is viewed on its own. However, I have tried using window, document, and...
4666
helma.spona@...
Jun 1, 2001 7:12 am
... No Problems! Helma...
4667
helma.spona@...
Jun 1, 2001 7:20 am
Hallo together, I think it would be great to use SVG-documents as navigationbars in websites. To configure them I wish to use XML-Files which contains the ...
4668
simon.bradley@...
Jun 1, 2001 7:31 am
"Copy SVG" seems only to capture the visible extent of the diagram - is there any way to capture the entire image (short of zooming out to the full extent)? ...
4669
T LB
tanki@...
Jun 1, 2001 8:05 am
Hi, I found an example which use an SVG graphic and a XML file. They are bounded with a script (JavaScript). They're on the zip file part-catalog. Regards. ......
4670
MK
mk@...
Jun 1, 2001 8:21 am
Hi, 1. HTML-document is created even if your svg is viewed on its own. ... <?xml version="1.0"> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" ...
4671
helma.spona@...
Jun 1, 2001 8:25 am
Thank you, for this example, but this is not exact what i want. I thought it should be possible to write a script within the svg-file which read the xml-file...
4672
Ian Tindale
ian_tindale@...
Jun 1, 2001 8:38 am
... Better would be to use XSLT to fish out the button details held in XML, and transform them into the appropriate tspan and xlink elements. This would be a...
4673
David Pollitt
david.pollitt@...
Jun 1, 2001 9:25 am
______________________________________________ David Pollitt - Senior Consultant t +44 (0)20 7909 1423 | m +44 (0) 7989 603260 | f +44 (0) 20 7440 3441 ...
4674
benjamin pignier
benjamindtw@...
Jun 1, 2001 10:52 am
Hi ! I have a problem concerning SVG with images. I have a script which changes directly the opacity of the SVG elements (rectangle, circles,...). It works...
4675
Philip Lean
phillean@...
Jun 1, 2001 1:12 pm
Kevin I have both examples working, thanks. I do now want to use one element eg a rectangle to hold the control "mouseover" for a second element eg another...
4676
Michael Bierman
mbierman@...
Jun 1, 2001 3:49 pm
I'm afraid I don't understand the question. Adobe is the name of the company, not a product.Can you be more specific about what you are trying to do? ...
4677
Michael Bierman
mbierman@...
Jun 1, 2001 4:01 pm
See the Help file: Copying: The Copy SVG and Save SVG as commands let you copy the SVG image to the clipboard and save the image to a local file. The copy...
4678
Andrei Rubina Thomaz
andrei@...
Jun 1, 2001 4:47 pm
you have to write: window.anotherFunction = anotherFunction bye andrei ... De: sjb@... <sjb@...> Para: svg-developers@yahoogroups.com...
4679
Michael Bierman
mbierman@...
Jun 1, 2001 4:49 pm
Currently Adobe Illustrator does not import SVG. We are well aware that this limitation puts constraints on certain workflows and while we do not comment on...
4680
Michael Bierman
mbierman@...
Jun 1, 2001 5:02 pm
The problem here seems to be that you are using what appears to be an invalid method that happened to work in previous builds. Instead of using ...
4681
Shelly
shellykelly@...
Jun 1, 2001 9:46 pm
I know it may be a simple question but all this stuff is new to me!! Are there any good books or tutorials to work with? I checked out Adobe and their stuff is...
4682
r_diblasi@...
Jun 1, 2001 9:54 pm
Hello SVG community, SVG in in the news again!.....XMLHack news that is: http://www.xmlhack.com/read.php?item=1241 Christian Nentwich has created BOX, a tool...
4683
Max Dunn
maxdunn@...
Jun 1, 2001 10:29 pm
Hi Shelly, To my knowledge no books exclusively on SVG have been published yet, but I believe Andrew Watt and Jon Frost are both working on books. SVG has ...
4684
r_diblasi@...
Jun 1, 2001 11:01 pm
Shelly. Max is right about no books specificlly on SVG yet ;-) there are many sites to look at that have SVG tutorials... This is the address of the SVG...
4685
Kevin Lindsey
kevin@...
Jun 1, 2001 11:53 pm
Phil, ... If you give the <rect> a unique id attribute, then you can find it using the SVG Document. The example below shows you: 1.. How to find the SVG...
4686
Philip Lean
phillean@...
Jun 2, 2001 12:03 am
Kevin again thanks for the script ps I posted the question about creating a "mirror" of an object late at night and this morning realised it was a simple...
4687
Kevin Lindsey
kevin@...
Jun 2, 2001 12:07 am
Benjamin, From what it looks like to me, your code is refering to "fill-opacity" but you need to modify the <image> element's opacity attribute (or the style's...
4688
Shelly
shellykelly@...
Jun 2, 2001 7:33 pm
I'm goign to try an describe my problem as best I can.. I've been developing pages for an internal site that uses javascript and brings in XML data. Currently...
4689
Kevin Lindsey
kevin@...
Jun 3, 2001 2:36 am
Shelly, There's always more than one way to achieve things. Here's how I would do it. Initially, one would think that <use> elements would be ideal here....
4690
lionel.raharinosy@...
Jun 3, 2001 5:34 pm
Hi, is it possible to call a function implemented inside your SVG document from outside ? (e.g from a Html page or a external Javascript file) Lionel...
4691
Kevin Lindsey
kevin@...
Jun 3, 2001 7:10 pm
Lionel, I've seen this approach: 1.. Attach an onload event to the <svg> element 2.. In you onload handler (in the SVG document) set a window property to point...
4692
larry fredrickson
larry_fredrickson@...
Jun 3, 2001 8:34 pm
I'm trying to dynamically generate javascript that's embedded within an element. For example, a user makes a selection on a web page, hits 'Submit', an svg...
4693
manuel_bauwens@...
Jun 3, 2001 8:57 pm
Hallo Larry, You can add the following tag to your SVG: <script xlink:href='yourJavaScript.js'/> where yourJavaScript.js is a predefined file witch contains...
4694
larry fredrickson
larry_fredrickson@...
Jun 3, 2001 11:11 pm
Manuel, Thanks for the idea, but how do I add that line within the <svg> </svg> tags if the svg is dynamically generated, e.g. an svg diagram is produced by ...