I mentioned it somewhere else way up the thread, but I'll repeat it here, since it still applies. Some of the SVG files from Illustrator posted in this thread have a node at the beginning that the XML parser I'm using is unable to parse.
If the program doesn't produce a .ldr file at all, open the .SVG file up in a text editor. If you see an XML node near the top with a bunch of stuff enclosed by square brackets ([]), delete the brackets and everything between them. The node should look something like this:
After editing, it should look like so:
Ignore all semicolons in the samples; they appear to be due to a bug in Phorum.
If the program doesn't produce a .ldr file at all, open the .SVG file up in a text editor. If you see an XML node near the top with a bunch of stuff enclosed by square brackets ([]), delete the brackets and everything between them. The node should look something like this:
Code:
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
<!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
<!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
<!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
<!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
<!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
<!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
<!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
]>
After editing, it should look like so:
Code:
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
Ignore all semicolons in the samples; they appear to be due to a bug in Phorum.