[svg-developers] movable window

2006-08-03 Thread Nazar
Hello, I am new to SVG and seeking for help. I have SVG document with semi-transparent object You see onmouseup, onmousemove, onmousedown attributes are assigned to javascript functions moving = false; function pickup(evt){ moving = true; } function dropoff(evt){ movin

[svg-developers] Re: movable window

2006-08-03 Thread Nazar
clientY; origX = parseInt(ctl.getAttribute("x")); origY = parseInt(ctl.getAttribute("y")); draggedCtl = ctl; } function dropdown(e){ var bg = e.target.ownerDocument.getElementById("background"); bg.setAttributeNS(null,"onmousemove",null); draggedCtl =

[svg-developers] modifying SVG in java servlet

2006-08-07 Thread Nazar
Hello, I have java servlet which is used to modify and output svg file. The svg itself is stored in some sort of database, and before printing it to output I need to add javascript function to it. Which way can I "programmatically edit" SVG using java language? - To unsubscribe send a

[svg-developers] DOM script to position element

2006-08-14 Thread Nazar
tes for correct positioning. Thanks Nazar - 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

[svg-developers] rect with text incide

2006-08-29 Thread Nazar
Hello I need to display text which is contained incide a rect. How is it possible using dom.createTextElement make text wrap to occupy rect object space and not cross boundaries? - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-develope

[svg-developers] relative element positioning

2006-08-30 Thread Nazar
Hello, I use DOM to add some of the elements to SVG. Currently I use element.setAttribute("x", _x); to position element absolutely. What I am interested in is how to position elements relative to its parent element ? - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit h

[svg-developers] Re: relative element positioning

2006-08-31 Thread Nazar
svg-developers@yahoogroups.com, Antoine Quint <[EMAIL PROTECTED]> wrote: > > On 30 août 2006, at 14:48, Nazar wrote: > > > I use DOM to add some of the elements to SVG. Currently I use > > element.setAttribute("x", _x); to position element absolutely. > >

[svg-developers] Re: relative element positioning

2006-08-31 Thread Nazar
Thanks Doug, its an exhaustive answer. --- In svg-developers@yahoogroups.com, "Doug Schepers" <[EMAIL PROTECTED]> wrote: > > Hi, Nazar- > > Nazar wrote: > | > | Hello, > | I use DOM to add some of the elements to SVG. Currently I use > | element.se

[svg-developers] Zoom in/zoom out

2006-09-25 Thread Nazar
Hi, My question is about feature zoom in/zoom out found in most graphics viewers or editors. On a web page view I have iframe wchich displays SVG graphics. The SVG is itself a diagram of a business process. Size of the diagram is big enough and scrollbars are displayed. So I need to implement

[svg-developers] floating behavior of graphic element

2006-09-25 Thread Nazar
I have big svg graphics. Web page displays it in area which is smaller and scrollbars are rendered Is it possible to make some graphic element always stayed in visible area despite the scrollbar position? - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.

[svg-developers] Internet Explorer users without plugin

2006-10-04 Thread Nazar
http://www.adobe.com/svg/viewer/install/"; /> However Internet Explorer displays missing image screen. Appreciate any ideas. Nazar - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership

[svg-developers] Display adobe plugin download page

2006-10-04 Thread Nazar
Hello How can I get ASV plugin installed object codebase attribute http://download.adobe.com/pub/adobe/magic/svgviewer/win/3.x/3.03/en/SVGView.exe"; classid="clsid:78156a80-c6a1-4bbf-8e6a-3cd390eeb4e2">

[svg-developers] Re: Display adobe plugin download page

2006-10-04 Thread Nazar
and codebase attribute in that way? --- In svg-developers@yahoogroups.com, "Nazar" <[EMAIL PROTECTED]> wrote: > > Hello > > How can I get ASV plugin installed object codebase attribute > >

[svg-developers] Re: Internet Explorer users without plugin

2006-10-04 Thread Nazar
n svg-developers@yahoogroups.com, "Nazar" <[EMAIL PROTECTED]> wrote: > > Hello all, > I need to display download page with link to svg plugin if it is not > installed. > >data="diagram.svg" width=&

[svg-developers] Re: Internet Explorer users without plugin

2006-10-05 Thread Nazar
" > http://www.adobe.com/svg/viewer/install/"; > which should work in most browsers. Note the embed tag which is oriented to pre 6th generation browsers. --- In svg-developers@yahoogroups.com, John Dowdell <[EMAIL PROTECTED]> wrote: > > Nazar wrote