Re: [svg-developers] Re: Is it possible to capture software screens direct into SVG?

2005-07-30 Thread Bart
. I not see what would be so bad about just linking to images. You seem to essentially want a clickable slide show - entirely possible. But your wish of doing it in pure SVG seems too hard for its purpose. --Bart On 7/29/05, Jim [EMAIL PROTECTED] wrote: Hello Holger, Thanks for the link

Re: [svg-developers] Re: SVG Open 2005

2005-07-30 Thread Bart
to, anyhow. --Bart On 7/30/05, Francis Hemsher [EMAIL PROTECTED] wrote: How is the weather in Enschede during August? Here in the States its hot and ugly. Francis --- In svg-developers@yahoogroups.com, jophof007 [EMAIL PROTECTED] wrote: Hi, See http://www.svgopen.org/2005

Re: [svg-developers] Svgz

2005-07-27 Thread Bart
svg file. I'm not sure how much this depends on serving them with the right mime type, though, ot whether Batik/Corel's implementations of the function do this too. --Bart - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click

Re: [svg-developers] viewport and viewBox

2005-07-26 Thread Bart
mixing units is usually a bad idea unless you have a good reason. I hope that's helpful. And, er, correct:) --Bart - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo! Groups Links * To visit

Re: [svg-developers] Transforming Use elements

2005-07-26 Thread Bart
? I'm assuming I'm missing something simple Sounds like it's that its coordinates place it a long way away from transformation origin (meaning rotation is one hell of a sweep). You probably have the displacing x= and y= on the referenced element, not the use. That's my gues, anyhow. --Bart

Re: [svg-developers] ,Protecting the Svg File

2005-07-25 Thread Bart
the menu was too useless to use since only one version of one viewer supports it - even if that's currently the most used one. --Bart On 7/25/05, Muhammad usman [EMAIL PROTECTED] wrote: hi, Well Holger thanks a lot for your kind advice , yet i have find another way of making ur own

Re: [svg-developers] Native SVG Support in IE8

2005-07-25 Thread Bart
so may be missing some points. Thing is, I do not see much centralised drive to standardize, which for me is reason enough to decide not to take SVG too seriously - for a number of things there are probably more practical alternatives. --Bart - To unsubscribe send a message to: [EMAIL

Re: [svg-developers] Re: Highlighting question

2005-07-23 Thread Bart
- since zooming moves the extent of the objects. Cool, it was driving me crazy:) Thanks, --Bart - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo! Groups Links * To visit your group on the web

[svg-developers] Highlighting question

2005-07-22 Thread Bart
of it, apparently only on the right (and bottom) sides of it. Another question: most of it seems to work in Batik, except dragging (which I disabled and reimplemented), which makes squiggle stop drawing. Any idea what could cause it to react like that? Greet, --Bart - To unsubscribe

Re: [svg-developers] Re: SVG for GIS application

2005-07-22 Thread Bart
create a GML viewer in SVG it's not actually all that useful. You may as well do it in your own code as it may be easier to interpret metadata (labels, legends and the like) more specifically. It depends on what exactly you want to make. --Bart - To unsubscribe send a message to: [EMAIL

Re: [svg-developers] SVG for GIS application

2005-07-21 Thread Bart
are in are in your main canvas if you don't do very odd things, but I'm not sure you can avoid rounding or small offset errors. I haven't used it myself because my interface design made it harder yet. --Bart - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group

[svg-developers] styling question

2005-07-20 Thread Bart
is there a cross-viewer way to set CSS styling? Thanks, --Bart - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/svg

Re: [svg-developers] Stand-alone SVG Viewer

2005-07-20 Thread Bart
Batik, or more accurately its viewer, Squiggle, is the best known, implemented in java. See http://xml.apache.org/batik/ --Bart On 7/20/05, sent1729 [EMAIL PROTECTED] wrote: Hi All, I am new to the SVG world. I have read some articles on SVG that says there are stand alone SVG viewers

Re: [svg-developers] styling question

2005-07-20 Thread Bart
On 7/20/05, Holger Will [EMAIL PROTECTED] wrote: Bart schrieb: Hey all, Since SVG mirrors SVG in XML attributes, I expected document.getElementById(id).setAttribute('fill','#822'); ...to do the same as: document.getElementById(id).getStyle().setProperty('fill','#822

Re: [svg-developers] styling question

2005-07-20 Thread Bart
, --Bart - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ * To unsubscribe from this group

Re: [svg-developers] zoom/pan svg image, only inside a frame

2005-07-19 Thread Bart
that are already available, and that getting at viewport coordinates is less accurate as you have to calculate that yourself too. (See http://svg.scarfboy.com/newiface/test.svg but consider I'm actively working on that. If interested, I'll help make sense of the mess of code) --Bart - To unsubscribe

Re: [svg-developers] ,Protecting the Svg File

2005-07-19 Thread Bart
, but generally what's viewable is also reachable through other means. --Bart - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo! Groups Links * To visit your group on the web, go to: http

[svg-developers] CSS class alteration?

2005-07-19 Thread Bart
svg file with the DOM and setting attributes. --Bart - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group

Re: [svg-developers] CSS class alteration?

2005-07-19 Thread Bart
On 7/19/05, Holger Will [EMAIL PROTECTED] wrote: Bart schrieb: Hey all, Does anyone know wheter it is possible to alter/set a CSS class' contents to change the styling of all elements that use that class? I would like to alter the stroke width on many d's, and it seemed it would

Re: [svg-developers] Re: CSS class alteration?

2005-07-19 Thread Bart
I think I'll use getElementsByTagName and setAttribute instead, but thanks all the same. --Bart On 7/19/05, welkerpaul [EMAIL PROTECTED] wrote: Bart and Holger, in order to talk asv3 into realizing stylesheet modifications you'll have to repace the entire stylesheet. At least that's how I did