Re: Javascript and Batik Applet

2010-08-19 Thread Mark Fortner
I think you're missing the rhino jar from your classpath. Hope this helps, Mark On Tuesday, April 6, 2010, Robert Gaschen rgasc...@parkergaschen.com wrote: For too many bureaucratic, security and policy reasons I have been tasked to create an javascript based SVG viewer for IE.  I've been

Re: Squiggle in Ubuntu 8.04

2008-08-19 Thread Mark Fortner
/batik-nightly/webstart/squiggle.pl - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Mark Fortner blog: http://feeds.feedburner.com/jroller/ideafactory

Re: Tooltips/Swing with Batik?

2008-03-27 Thread Mark Fortner
of that. 2008/3/13, Mark Fortner [EMAIL PROTECTED]: To add a tooltip simply surround the object with an anchor tag like this: a href= title=My tooltiprect //a As for creating a table, you might want to consider creating a hybrid solution that is partly SVG and partly HTML. You could

Re: unwanted message

2008-03-19 Thread Mark Fortner
] -- Mark Fortner blog: http://www.jroller.com/phidias

Re: Tooltips/Swing with Batik?

2008-03-14 Thread Mark Fortner
/3/13, Mark Fortner [EMAIL PROTECTED]: To add a tooltip simply surround the object with an anchor tag like this: a href= title=My tooltiprect //a As for creating a table, you might want to consider creating a hybrid solution that is partly SVG and partly HTML. You could then render

Re: Tooltips/Swing with Batik?

2008-03-13 Thread Mark Fortner
me some hints. Thanks for that -- Mark Fortner blog: http://www.jroller.com/phidias

Re: Noob question -- What is Batik?

2008-03-01 Thread Mark Fortner
] For additional commands, e-mail: [EMAIL PROTECTED] -- Mark Fortner blog: http://www.jroller.com/phidias

Re: JApplet .jar compression?

2008-02-12 Thread Mark Fortner
commands, e-mail: [EMAIL PROTECTED] -- Mark Fortner blog: http://www.jroller.com/phidias

Re: JApplet .jar compression?

2008-02-11 Thread Mark Fortner
to compress the jar even further and/or improve applet download times? Thanks. p.s. Production environment is BEA Weblogic 8.1/Java 1.4.2_11. Regards, Marc -- Mark Fortner blog: http://www.jroller.com/phidias -- Mark Fortner blog: http://www.jroller.com/phidias

Re: JSVGCanvas#setOpaque method not working.

2007-10-19 Thread Mark Fortner
: Hi Mark, Mark Fortner [EMAIL PROTECTED] wrote on 10/04/2007 10:35:04 AM: I have a class which extends GearWindow. I initialize the class with the following snippet of code: Well I have no idea what a GearWindow is, so I can't say if it might be part of the problem. I use a g tag

Re: JSVGCanvas#setOpaque method not working.

2007-10-04 Thread Mark Fortner
)); I use a g tag as the top level tag with the following settings: g inkscape:label=Layer 1 inkscape:groupmode=layer id=main_window width=237 height=216 style=fill:#ff00 Any ideas? Mark On 10/4/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Mark, Mark Fortner

Re: rasterize on server

2007-09-12 Thread Mark Fortner
Did you try this: http://xmlgraphics.apache.org/batik/using/transcoder.html Mark On 9/11/07, horstpeter [EMAIL PROTECTED] wrote: OK, I know a lot of people had the same problem, but reading through forums for 2 days now didn't help me at all. I have a basic website with a svg embedded. The

Re: What is the future of batik (and of SVG in general?)

2007-08-29 Thread Mark Fortner
on Plasma is here: http://en.wikipedia.org/wiki/Plasma_(KDE) Regards, Mark On 8/28/07, Kenneth McDonald [EMAIL PROTECTED] wrote: Mark Fortner wrote: * The KDE group is working on a new desktop replacement called Plasma which makes heavy use of SVG. This is sort of like

Re: What is the future of batik (and of SVG in general?)

2007-08-28 Thread Mark Fortner
. Developers want to be able to create something whizzy over the weekend and bring it in and show it off to the boss or to their peers. In order to enable that kind of work, the tools and the widgets need to be in place. Regards, Mark Fortner

Re: XPathEvaluator problem

2007-07-18 Thread Mark Fortner
I'm not sure when the XPathEvaluator class was added to the JDK, but prior to that I used the XPathAPI class to evaluate XPath expressions. The class works in both JDK 5 and 6, and you can find a code example here: http://www.exampledepot.com/egs/org.w3c.dom/xpath_GetAbsElem.html?l=rel Hope

Re: batik wrapper for svg+js

2007-07-12 Thread Mark Fortner
If all you want to do is view SVG + JS you might try using FireFox. Regards, Mark On 7/12/07, benamou [EMAIL PROTECTED] wrote: Hi sorry if my question does not make sense ... I understand it is possible to write a java warpper using Batik to view dynamic svg +JS files. (I mean without

Re: Memory leak?

2007-07-03 Thread Mark Fortner
I don't see any reason for the memory leak. If you're running Java 6 you may want to use jconsole to profile your app and find the leak. Here are some docs on it: http://java.sun.com/javase/6/docs/technotes/tools/share/jconsole.html

Re: Help Regarding Batik

2007-07-02 Thread Mark Fortner
You might try this site. http://www.carto.net/papers/svg/samples/ It has a number of animation-related examples. Hope this helps, Mark On 7/1/07, gunningGunner [EMAIL PROTECTED] wrote: Can any one please reply? gunningGunner wrote: Hello, Sorry to disturb you. I am very new to

Re: Transcoder with image map export

2007-06-27 Thread Mark Fortner
: Hi Mark, Vincent, Mark Fortner [EMAIL PROTECTED] wrote on 06/26/2007 03:33:25 PM: If you're transforming it into an image map, then the tooltip is actually generated by the browser, there's no bounding box to define. The tooltip text is shown in the area tag's alt attribute You need

Re: Problem rendering svg font on a vserver

2007-06-26 Thread Mark Fortner
Christian, Are you sure that the font you're trying to use is available on the Vserver? Mark On 6/25/07, Christian Thieme [EMAIL PROTECTED] wrote: Hello, I am trying to convert the attached svg file to a png image. On my destop it works fine, but on a vserver the font is not used. Setup:

Re: Transcoder with image map export

2007-06-26 Thread Mark Fortner
If you're transforming it into an image map, then the tooltip is actually generated by the browser, there's no bounding box to define. The tooltip text is shown in the area tag's alt attribute One other approach would be to use a bit of javascript to show/hide a div tag containing the text.

Re: Transcoder with image map export

2007-06-24 Thread Mark Fortner
Vincent, I think it's probably easier to run an XSLT against the SVG and transform it into an image map. Mark On 6/23/07, V. de Weger [EMAIL PROTECTED] wrote: Hi, I've been asked to write a program that exports svg as png/jpeg (that is the 'easy' part) and export the tootips in the svg

Re: Mouse over listener??

2007-06-21 Thread Mark Fortner
The other approach would be to add an onmouseover/onmouseout handlers to the particular object. Here's an example: http://www.carto.net/papers/svg/samples/mouse_over_effects.shtml Hope this helps, Mark Fortner On 6/21/07, Bishop, Michael W. CONTR J9C880 [EMAIL PROTECTED] wrote: If you want

Re: SVG scripting beyond SVG itself?

2007-06-21 Thread Mark Fortner
element in html changes its content. To try this, you need prototype.js. Mr Mark Fortner, I read the tutorial in your email. Have you tried things like this before? Thanks. Gang Html