Dear Dr. Olaf Schnabel, I need your suggestion again. If I have to put some code for panning using mouse wheel events how can I do it? Please suggest me if I...
62995
profileofpradeep
profileofpra...
Nov 1, 2009 2:26 pm
Hi Brad, The panning and zooming scripts look very impressive. Do you have tutorials to configure your scripts (Original View) for svg diagrams. How would your...
62996
Cameron McCormack
heycam_yg
Nov 1, 2009 9:42 pm
Hi Thomas. ... Ah, Batik doesn’t support “expando” properties on host objects like Nodes. So assigning to .lastClick is throwing an exception. If you...
62997
Bradley Neuberg
bradneuberg
Nov 2, 2009 6:52 am
Thanks Pradeep; this work will go into the Wikipedia Commons soon. Just have to finish things up. I'm not sure how it will deal with large maps. Do you have a...
62998
Andi Neumann
neumannandreas
Nov 2, 2009 7:48 am
Hi Pradeep, I have a version of the carto.net navigation tools that support panning through keyboard and zooming with the mouse wheel. Are you sure you want to...
62999
th_w@...
th_w@ymail.com
Nov 2, 2009 8:15 am
... Mh, I mean, strictly speaking, is this conformant to JavaScript/ECMAScript specs? Are they saying that node objects are to be treated specially? ... ...
63000
th_w@...
th_w@ymail.com
Nov 2, 2009 11:25 am
... Sorry, of course I meant "JavaScript implementation"....
63001
th_w@...
th_w@ymail.com
Nov 2, 2009 1:12 pm
... It seems like it's not a Rhino issue, since this HTML runs just fine in the Lobo browser which AFAIK as well uses Rhino: <!DOCTYPE HTML PUBLIC "-//W3C//DTD...
63002
Cameron McCormack
heycam_yg
Nov 2, 2009 11:32 pm
... It is conformant. Host objects need not behave the same as regular, native objects when getting and setting properties. (Web IDL[1] will, when it is...
63003
profileofpradeep
profileofpra...
Nov 3, 2009 3:32 am
Dear Andreas, Thank you very much for your reply. Panning and Zoom with mousewheel events would be a user friendly function. Your description about the...
63004
th_w@...
th_w@ymail.com
Nov 3, 2009 9:24 am
Cameron, thanks so much for your in-depth information and your patience with me! I think I'm finally beginning to understand. ... I wasn't really aware that...
63005
Paulo Ortolan
phortolan
Nov 3, 2009 3:52 pm
Hi, all I have a polygon object that will be showed to showed on the screen. A have another object defined on <g></g> that is small and I wish this to be the...
63006
Cameron McCormack
heycam_yg
Nov 4, 2009 12:53 am
Hi Thomas. ... (Yes sorry, “native objects” in ECMAScript-parlance are user created objects.) ... Host objects are allowed to behave (mostly) however they...
63007
Bryan Berry
bryanbryanb
Nov 4, 2009 5:21 am
... by "other" I mean css class names already in use in the webapp. I am assuming that when a webapp is first created that the developer didn't make any...
63008
Bruce Lawson
lawsonbruce15
Nov 4, 2009 5:21 am
On Tue, 20 Oct 2009 23:02:09 +0100, jeff_schiller ... wow, that's amazing. I like it when you get to thinking! How does it work? What I'm looking to do is (1)...
63009
Erik Dahlstrom
erida539
Nov 4, 2009 7:55 am
On Tue, 03 Nov 2009 14:22:46 +0100, Paulo Ortolan <phortolan@...> ... Yes, that can be done with a <pattern> element. See...
63010
th_w@...
th_w@ymail.com
Nov 4, 2009 2:20 pm
Hi Cameron, ... Yes, I find them convenient, too (that's why I posted). Bit now that I'm aware of the problems they have I'll certainly be more careful with...
63011
lpmlabs9
Nov 4, 2009 5:43 pm
I have defined some gradients inside a DEFS tag and use them in styles as fill:url(#gradientname1) This works great until someone adds a BASE HREF to the...
63012
heldermagalhaes
Nov 5, 2009 4:22 pm
Hi Larry, ... Humm... I haven't double check the whole SVG specification for sure regarding this, but I assume you are creating inline SVG into HTML and...
63013
lpmlabs9
Nov 9, 2009 5:26 pm
Thanks for the reply. Guess I'm batting 500 which in baseball would be great; in software, not so hot. Safari and Chrome work fine with the BASE tag being...
63014
Bradley Neuberg
bradneuberg
Nov 9, 2009 6:55 pm
Hi folks. When using SVG on Windows text is not antialiased, while on Mac OS X is. I assume that that most browsers simply have the OS render text. Is there a...
63015
longsonr
Nov 9, 2009 9:05 pm
Brad, If they implement it then this should do it: http://www.w3.org/TR/SVG/painting.html#TextRenderingProperty Firefox has some code to tell its cairo...
63016
ddailey
ddailey@...
Nov 10, 2009 12:26 am
I always assumed that the anti-aliasing present in IE/ASV was inherited from ASV rather than from the OS. The reason for this is that early releases of FF and...
63017
profileofpradeep
profileofpra...
Nov 10, 2009 1:38 am
Dear Sir, Can you please provide me the version of the carto.net navigation tools that supports panning through keyboard and zooming with the mouse wheel. I...
63018
Jon Ferraiolo
jon_ferraiolo
Nov 10, 2009 3:41 am
ASV used the same Adobe-written graphics and type engines as Acrobat/Adobe Reader. On Windows, look for AGM.dll and Cooltype.dll in the distributions of...
63019
profileofpradeep
profileofpra...
Nov 15, 2009 12:30 am
Dear Carto.net group, I want to change between Mode=info,manual pan mode on using a keyboard event. For example: while in info mode by key press event (eg Alt...
63020
Cameron_Laird
Nov 15, 2009 7:00 am
I embed SVG instances with <object id = "my_svg_image" ... data = "mine.svg" ...> How do I communicate back out to the enclosing window from within...
63021
Guy Morton
guy_mmmmmm
Nov 15, 2009 7:10 am
Your object is in the DOM. You talk back out by calling methods in the parent DOM elements. A common way to do this is to put some sort of dispatching code in...
63022
ddailey
ddailey@...
Nov 15, 2009 3:07 pm
In addition to what Guy wrote, see also http://www.w3.org/Graphics/SVG/IG/resources/svgprimer.html#scripting_HTML David ... From: Cameron_Laird To:...
63023
Bryan Berry
bryanbryanb
Nov 15, 2009 3:54 pm
svg buddies, does an svg element emit any kind of event when embedded in an html page so that I can tell it is loaded? i am writing a little html5 helper...