I'm trying to parse though an SVG file in vbscript. When using a normal XML-file my code is working but when using a SVG file no tags can be found. Is it possible to parse trough a SVG file or even manipulate it?
Set xmlDoc = CreateObject("Msxml2.DOMDocument.6.0")
xmlDoc.Async = False
xmlDoc.setProperty "ProhibitDTD", False
xmlDoc.resolveExternals = False
xmlDoc.validateOnParse = False
xmlDoc.load("pathToSVG/XML")
Set root = xmlDoc.GetElementsByTagName("svg")
for each elem in root
msgBox elem.Tagname
Next