Tried window.scrollBy(0, -window.innerHeight);. didn't work, told to retry it, it worked. SOB! Also found this. This should clear things up for those...
Hi all, I am batch converting a bunch of raster images to SVG using inkscape. I get a dialog for some images asking me if I want to link or imbed the images ...
Hello I have the following function triggered by mousewheel event handler for zooming. function ZoombyWheel(SVG_Name, ZoomChangePercent, ZoomCenterX,...
Hello developers, I've written a thing for my game that other people might find useful. It allows you to change the colours in an svg document. It does so by...
well, yes I'm using IE9.0 but the problem solved in an odd way. I think this happened after I added JQuery to my project. now this block starts in IE: if...
David, the following link: http://www.cadsofttools.com/en/products/abviewer.html has a product called ABViewer, I have copied the first paragraph below: ...
I doubt there is any way for this to work, but I thought I'd ask anyway. Our cross-platform app exports to svg. When we export text using certain music symbol...
This is part of a list of things that are 'in the standard' but not 'implemented by the viewer'. It would be nice if viewers implemented all the standard's...
65665
David Dailey
ddailey@...
May 2, 2012 1:49 am
Just a reminder to all you good folks that May 7th is the deadline for submission of abstracts for this year's conference in Zurich in September: ...
As Erik suggested you need three lines if the line follows the diagonal. But if you want to use two lines, each must cross one adjacent pair of sides only...
To see an example of a reflection in a puddle view: http://irony-maiden.com/SVG/Puddle.htm ( Best viewed in Mozilla Firefox or Seamonkey ) regards, ...
I am a new bea to SVG,Basically i'm a java developer.And Currently i have got a requirement to create a POC with JAVA and SVG which includes generating Floor...
Hi, I am trying to add current time to the svg file I have using Ecmascript. following is the code I have. Unfortunately its not working . can someone help me...
I now have a Chrome / webkit compliant example of the puddle effect example below - see: Â Â Â Â Â Â Â Â http://irony-maiden.com/SVG/Cr-Puddle.htm [ Â Â all...
65674
David Dailey
ddailey@...
May 16, 2012 4:55 am
You've used document.write to try to insert SVG content. I think that will only work in HTML. For SVG, you'll have to use DOM methods to do that. There are a...
On Sun, 13 May 2012 01:54:18 +0200, Arif Burhan <aburhan2000@...> ... See e.g http://www.colorzilla.com/gradient-editor/ for something that will work...
65676
David Dailey
ddailey@...
May 16, 2012 9:57 am
I have put a video in an HTML5 document and have succeeded in having it clipped by an SVG clip-path (and also filtered) as follows: <style>video...
Dear All, I've tried to apply a drop-shadow filter, but encountered the following inheritance issue, see this small test case http://hroska.cz/other/filter.svg...
Hi Jan, ... This is according to the spec. Specifically, this part: "When applied to container elements such as ‘g’, the ‘filter’ property applies to...
I have a project I'm working on. My goal is to display 18 images in a single HTML document in the same space. The first is just text and is put in using...
Hello, I just joined your SVG group. I'm working on a web application which is based on SVG. I have a little problem concerning the rotate parameters of a text...
65682
yannick.bochatay@...
May 22, 2012 7:33 am
Hi, you'd better use the transform property of the SVG DOM elements. Here is a little function to get the angle properly :...
... What exactly do you mean by this? You can create, modify, delete and insert nodes using the standard DOM methods. I'm not sure what's a good English...
Hello SVGers, The getBBox method (by design) doesn't take into account clipping. Is there a method that does, or failing that, has anyone written some...
Andrew, You could get the bounding box of the clip path and then just work out the intersection of the two rectangles. See the answer here for more details ...