Page 1 of 1

anno.svg - really SVG?

Posted: 01 Jul 2009, 23:37
by Peter
Microsoft Livemeeting installs a file C:\Programme\Microsoft Office\Live Meeting 8\Console\Playback\Engine\Anno.svg

It is very small, the content is:

Code: Select all

<?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 id="_svg" width="100" height="100" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg" onload="init(evt);">
<script><![CDATA[
		function init(e) {
			var svgDoc = e.target.ownerDocument;
			svgDoc.addEventListener("click",stopMenu,true);
			svgDoc.addEventListener("mouseup",stopMenu,true);
			svgDoc.addEventListener("mousedown",stopMenu,true);
			svgDoc.addEventListener("dblclick",stopMenu,true);
		}

		function stopMenu(e) {
			e.preventDefault();
		}
	]]></script>
</svg>

There is no result in different viewers - is it really a SVG?

Peter

Re: anno.svg - really SVG?

Posted: 03 Jul 2009, 10:34
by support
Hello Peter.
Yes, this file is really svg. But what did you mean by "no result"? It is opened with CS_SVG.dll. Because it doesn't contain any entities, you see just a blank image.

Alexander.

Re: anno.svg - really SVG?

Posted: 03 Jul 2009, 11:15
by Peter
OK, thanks.

Peter