[svg-developers] SVG custom viewer project

2006-05-23 Thread sholla
Hi, I'm looking for proposals from suitable companies or capable individuals who can build the following: 1. Custom SVG viewer which could be somewhere between SVG Mobile and SVG Full 2. Custom attributes/features 3. Research optimizations as needed 4. Partitioning processing between software

Re: [svg-developers] JPG to SVG programm

2005-11-29 Thread sholla
Well! If you have such a tool that tool wouldbe a revolution because you are talking of direct conversion of raster to vector. There are lots of programs around that achieve some of that - but they are not perfect and can only do some portions of the JPG and to me they are

Re: [svg-developers] Re: Shadow Tree

2005-07-05 Thread sholla
I agree with that. But, I think the way the drawing happens is the last element overwrites any previous element by that id. So, though you'd get the first element by that id the effective display shows the last element - which means it overwrites the earlier elements when drawing. Additionally,

Re: [svg-developers] Shadow Tree

2005-07-02 Thread sholla
Let me add my bit here - since I recently explored using the shadow tree for the sue element itself: By directly replacing content into the main tree you lose modularity. Here is my situation embed an SVG file within a parent SVG file. No big deal. But, what if you have styling and other defs

Re: [svg-developers] Embedding SVG Image and its shadow tree

2005-06-29 Thread sholla
Hi Holger, That was a really good tip. I think this should work for me. I tried it out and it so far appears to have the potential. The use element along with correspondingElement is what I'm planning to use. I had tried the second approach you mentioned of loading the SVG using getURL(). The

[svg-developers] Embedding SVG Image and its shadow tree

2005-06-28 Thread sholla
Hi, I have a question on image embedding: I wish to embed my SVG pieces as an image element. But, I also need it to be alive. Currently, the image element is opaque i.e. the internal shadow tree is hidden and I cannot access it. Any idea of how to access the shadow tree of the embedded image

[svg-developers] ASV and Gradients

2005-04-25 Thread sholla
Hi, I have an interesting situation with ASV and gradients When I use ASV3.01 - gradients come real smooth ASV3.02 and ASV6Pr1 shows these gradients as with graduating lines. The same is the result on any other viewers I use like Batik etc. Also, ASV3.01 is installed on another computer

Re: [svg-developers] ASV and Gradients

2005-04-25 Thread sholla
Hi all, I think I have found the solution. It has nothing to do with ASV and is more with monitor capability. I need to change my Display Color quality setting to High(32 bit) and I see that smoothness again. So I guess this is now a FYI for anyone facing this problem. Shreesh

Re: [svg-developers] readXML with .readyState .status for SVG

2005-04-24 Thread sholla
It looks like you are really duplicating getURL() functionality. If that is true - unless there is some reason you need to get the XML through your routine - you could use the getURL() itself right?

Re: [svg-developers] Re: ASV6 and events

2005-04-16 Thread sholla
Hi Paul, Thanks, Works perfectly now. I shall continue to explore ASV6 now - now that my mouse events can function. Thanks again, Shreesh

[svg-developers] Question on external styling

2005-04-15 Thread sholla
HI, I have a question on using the style attribute. I want to store my styles externally . For example I have all my gradients defined in 1 SVG file. I want to reference them from my user SVG file. This appears to work for line elements but does not work for rect elements.

Re: [svg-developers] Re: Question on external styling

2005-04-15 Thread sholla
Thanks for clarifying it, Andreas. Now I've to figure out the issues with ASV6 Andreas Neumann

Re: [svg-developers] Adobe SVG control - displaying SVG held in memory

2005-03-22 Thread sholla
I guess you can use parseXML(). I assume that by having the SVG document in memory you have read it using MSXML or something similar? If this is the case - why don't you let ASV itself load it up and display it? If you need to modify the SVG data - you anyway need access to the SVG DOM which

[svg-developers] Question on tspan and text

2005-03-14 Thread sholla
Hi, I have been trying to create a tspan entry for an existing text node i.e. do the following: - create a clone of a certain span element - update the text of this CLONED tspan element - APPEND THIS MODIFIED CLONE ONTO THE TEXT NODE This just does not work. Essentially, I

Re: [svg-developers] dynamic Metadata-DOMTree

2005-03-04 Thread sholla
Check out SvgComposer.com Burkhard

Re: [svg-developers] dynamic Metadata-DOMTree

2005-03-04 Thread sholla
Yeah! I tried to subscribe too - but did not work. If you say Cancel when the app. comes up, you get to view the DOM in a readonly manner. It does show the corresp. SVG element displayed when you click on an element in the tree.

Re: [svg-developers] Re: Executing Java/C# server method from svg

2005-03-02 Thread sholla
I'd posted some information on this a while back. What I'm doing is this: Write COM component which you can embed in a parent HTML doc. Embed the SVG doc. in this HTML doc. In you event handler you can refer to the COM component interface methods as: parent.COMCompID.SendEvent(evt) where

[svg-developers] Re: Executing Java/C# server method from svg

2005-03-02 Thread sholla
Jan

Re: [svg-developers] Tranforming Raster Image in SVG Image

2005-01-14 Thread sholla
If you intend to save a raster image as a an SVG document, this is what I did: - Use Visio. Insert your raster image in a Visio document. Save as SVG. - I believe ASV3.0 also support the spec. by allowing embedding a raster image Hope this helps. Shreesh

[svg-developers] FYI: Solution to C++ integration and ASV3.0

2005-01-14 Thread sholla
HI, I believe some people had posted about attaching event handlers using C++ instead of JS. I'd like to pass on information I have found out in integrating all this: Used IE( not tried others) Have a parent HTML document and embed an ActiveX control which contains your event handler