Fwd: Re: [svg-developers] Did i miss a reason that can cause an SVG file to not result in an image?

2009-01-14 Thread Samuel Dagan
Hi Christophe, You are not the only one. I get such an email every time I reply to a message from our group. Now that we are more than one, I looked in Google for daisy svg, and got the following URL: http://www.daisy.org/projects/svg/ It belongs to a so called Daisy Consortium, which apparently

Re : Re : [svg-developers] Re: Firefox2 vs Firefox3 (code)

2008-12-24 Thread Samuel Dagan
Hi Julie, Sorry for the delay, but the use of the same subject for different subjects is misleading. I have the solution for the cursor. Look on the message number 60714. Good luck! --- In svg-developers@yahoogroups.com, julie gautier juliegaut...@... wrote: Hi again, .. Does anyone know

[svg-developers] Re: Flash to SVG

2008-12-24 Thread Samuel Dagan
Hi Rakesh, I don't know about such converter, and I believe there is none. Since Adobe bought Macromedia, Adobe stopped its support for SVG (remember the ASV plugin) and is now concentrating in the Macromedia's vector graphics: Flash. You should try to get an answer from Adobe. Cheers, Samy ---

[svg-developers] Re: Firefox2 vs Firefox3 (code)

2008-12-16 Thread Samuel Dagan
Hi Julie, Just by a superficial look on your code, you better change: fill = symbole.getAttribute(fill); with : fill = symbole.getAttributeNS(null,fill); (Look at http://jwatt.org/svg/authoring/ ) Hope that this will do the job. Cheers, Samy --- In svg-developers@yahoogroups.com, jgfa92004

[svg-developers] Re: Inverted mask?

2008-11-22 Thread Samuel Dagan
Hi SVG Prof, As David, I am also not sure what do you mean exactly, but have another interpretation: If you have a filled circle, and you have another shape which partially overlaps this circle, then the overlapping part of this shape will be cut out. In such a case put the circle / at the

[svg-developers] Re: ASV Detection script fail

2008-11-21 Thread Samuel Dagan
Hi Thomas, I am using with IE7 (I guess it works also with IE6): var asv=navigator.appName; if(asv==Adobe SVG Viewer)return true; else{return false;} Good luck, Samy --- In svg-developers@yahoogroups.com, tpifre [EMAIL PROTECTED] wrote: Hello, I'm using the following code: function

[svg-developers] Re: svg on webserver

2008-11-15 Thread Samuel Dagan
Hi Kristien, It could be due to the Activex problem of MS. Try the following: In IE open Tools and choose: Internet Options, Advanced, Security. If Allow active content to run on My Computer is marked, click to remove the mark, choose: Apply, OK, and restart IE. If I am right you'll be able to

[svg-developers] Re: Is inline svg the only option in IE

2008-11-05 Thread Samuel Dagan
Hi Dupemenot, There was a bug once with one of the MS Service Packs (number one, if I am not mistaken). If you mean that IE works only offline (on files on your computer only), than try the following: Open Tools in IE, choose Advanced, look for Security, if Allow active content to run in files on

[svg-developers] Re: SVG Horizontal scroll

2008-10-31 Thread Samuel Dagan
Hi Chandra, I guess that if it exists a scripted vertical scroll, one can look on the source and modify it for horizontal. Instead of scroll bar one can use zoom and pan, which I find much more useful than scrolling for SVG. Cheers, Samy --- In svg-developers@yahoogroups.com, pcr_reddy [EMAIL

Fw: [svg-developers] Re: SVG Horizontal scroll

2008-10-31 Thread Samuel Dagan
file, html file and svg file. (implemetation like svg file embed in html) thanks chandra shaker _ _ __ From: Samuel Dagan [EMAIL PROTECTED] ac.il To: svg-developers@ yahoogroups. com Sent: Friday, October 31, 2008 2:48:30 PM Subject: [svg-developers] Re: SVG

[svg-developers] Re: problems with RTL and text encoding

2008-10-15 Thread Samuel Dagan
Hi Armin, As far as FF3 is concerned, I remember that some bugs about RTL languages were reported. All the bug reports are filed and their archive can be searched at http://bugzilla.mozilla.org/ As you know ASV3 in fact is not anymore supported. So you have to wait for a native support of SVG in

[svg-developers] Re: IE woes: reload does not work

2008-10-03 Thread Samuel Dagan
Hi Andreas and Helder, WindowsXP, IE7, and ASV3.03 work fine for me. Are you using Vista? or ASV earlier version? If not, I cannot think of a rational explanation. May be Helder is right. IF this is the case, you can add an interactive restart button, that just calls the initialization

[svg-developers] Re: efficient method for calculating min distance from point to curve

2008-09-28 Thread Samuel Dagan
-developers@yahoogroups.com, Samuel Dagan dagan@ wrote: Hi! I am not kidding. Your example is what I meant by inflection points. I forgot to add that the curve should be continuous. Cheers, Samy Are you kidding? Let's try to imagine 5 points- P1, P2, P3, P4 and P5. P1 and P5

[svg-developers] Re: A question on rotation

2008-09-27 Thread Samuel Dagan
Hi Pen, Try the following code: g text-anchor=middle text x='120' y='60' id='red' stroke='red' fill='red' style='font-size:200%; letter-spacing:2px; font-family:sans-serif;'pinyinology/text descturning up side down/desc g transform=translate(120,80) rotate(180)

[svg-developers] Re: efficient method for calculating min distance from point to curve

2008-09-27 Thread Samuel Dagan
Hi! I am not kidding. Your example is what I meant by inflection points. I forgot to add that the curve should be continuous. Cheers, Samy --- In svg-developers@yahoogroups.com, a_matseevsky [EMAIL PROTECTED] wrote: --- In svg-developers@yahoogroups.com, Samuel Dagan dagan@ wrote: Hi

[svg-developers] Re: efficient method for calculating min distance from point to curve

2008-09-13 Thread Samuel Dagan
On Thu, Sep 11, 2008 at 3:37 PM, Samuel Dagan [EMAIL PROTECTED]dagan%40post.tau.ac.il wrote: Hi Jake, If the curve is known analytically, it is an elementary minimization exercise of calculus. If your curve is just a bunch of points, then you do it numerically in JavaScript. The time

[svg-developers] Re: Internet Explorer no longer displaying SVG's on line

2008-09-13 Thread Samuel Dagan
Hi Richard, I guess that you did lately some Window's updating. If so try the following, which sounds ridiculous but it may work: On IE: Tools, Internet options, Advanced, Security, make UNMARKED Allow ActiveX content to run in files on my computer, click OK, and restart IE. You won't be able to

[svg-developers] Re: efficient method for calculating min distance from point to curve

2008-09-11 Thread Samuel Dagan
Hi Jake, If the curve is known analytically, it is an elementary minimization exercise of calculus. If your curve is just a bunch of points, then you do it numerically in JavaScript. The time depends on the number of points and the accuracy depends on the density of the points. There is no better

[svg-developers] Re: Negative Coordinates?

2008-09-09 Thread Samuel Dagan
Hi John, I am using successfully negative coordinates all the time. The problem you have is not the negative coordinate, but you wrote y=-12 instead of y=-12 . Have you noticed the blank after the number? Firefox is right not to accept it. This is not a Firefox bug! Make the change and try

[svg-developers] Re: how to draw splines with an arbitrary number of control points

2008-09-02 Thread Samuel Dagan
Hi Jake, I am not entirely clear about your request, but I did some work that might help you. I am drawing functions with known mathematical expressions, by using quadratic Bezier paths. You can find the algorithm and a java program that does it, also an example of the sine function at

[svg-developers] Re: how to draw splines with an arbitrary number of control points

2008-09-02 Thread Samuel Dagan
Hi Jake, Sorry for a mistake in the first web address of my previous message. It should be http://alzt.tau.ac.il/~dagan/tools/Bezier2/readMe.html Cheers, Samy --- In svg-developers@yahoogroups.com, Samuel Dagan [EMAIL PROTECTED] wrote: Hi Jake, I am not entirely clear about your request

[svg-developers] Re: Showing the mouse position

2008-08-29 Thread Samuel Dagan
Hi Julien, I don't believe that there is a simpler solution. This should work also with Firefox3. It does not work with IE+ASV3 since ASV3 does not support getScreenCTM(). Holger Will has a workaround in such a case, which you can find at

[svg-developers] Re: A question on IE browser

2008-08-29 Thread Samuel Dagan
Hi Fulio, It is not known if and when ASV will be not any more available for downloading. As far as I know MS does not plan to implement native support for SVG in IE for the near future. I would advise people using SVG to switch to Firefox and Opera. Cheers, Samy --- In

[svg-developers] Re: Math Animated

2008-08-09 Thread Samuel Dagan
when abandoning SMIL? for instance your controls do not appear to be keyboard navigable. had you considered WAI-ARIA regards Jonathan Chetwynd [EMAIL PROTECTED] http://www.openicon.org/ +44 (0) 20 7978 1764 On 4 Aug 2008, at 15:03, Samuel Dagan wrote: Hi folks, I would

[svg-developers] Math Animated

2008-08-04 Thread Samuel Dagan
Hi folks, I would like to announce that the second version of the calculus courseware Math Animated has been released (three years after the first). Here are some points that could be of interest for this community: 1. Since MathML is also used in the courseware, the recommended browser is now

[svg-developers] Re: Providing for multiple browsers

2008-06-30 Thread Samuel Dagan
Hi Charles, SVG files can be seen by the following browsers, if the files are authored according to the rules: http://jwatt.org/svg/authoring/ . 1) IE 6 (or higher) on Windows needs ASV (Adobe SVG Viewer) plug-in. You can see that way also SVG files that are not conformed to the above rules. ASV

[svg-developers] Re: Unicode graphics

2008-02-22 Thread Samuel Dagan
Hi Jerry, The URL you gave woks fine for me in the beta version of Firefox Minefield/3.0b4pre with STIX fonts. I am not sure these fonts are necessary, but I have them just as default for SVG. You can download the STIX fonts from: http://www.mozilla.org/projects/mathml/fonts/stix/STIXBeta.zip;

[svg-developers] Re: transform question

2008-02-20 Thread Samuel Dagan
Hi Peter, Don't apply the scale transformation on the text, but just translate the text by -2y, where y is the original y position. Welcome to the group, Samy --- In svg-developers@yahoogroups.com, Peter Thompson [EMAIL PROTECTED] wrote: Everyone knows that by default, the y-axis increases

[svg-developers] Re: getBBox in firefox problem

2008-01-02 Thread Samuel Dagan
Hi John, For Firefox you need to use getAttributeNS and setAttributeNS instead of getAttribute and setAttribute and may be make some more changes. See http://jwatt.org./svg/authoring/ for more details. Cheers, Samy --- In svg-developers@yahoogroups.com, johnbaronreid1972 [EMAIL PROTECTED]

[svg-developers] Re: CSS: audio on event

2007-12-08 Thread Samuel Dagan
Hi Jonathan, I've tried your CSS audio on event with a WindowsXP PC. The bad news are that it does not work in Minefield (version 3.0b2pre). The good news are that it works on Opera version 9.5beta (build 9681). Congratulations! Cheers, Samy --- In svg-developers@yahoogroups.com, ~:''

[svg-developers] Re: IE7 to FireFox

2007-10-07 Thread Samuel Dagan
Hi Julie, I want to add to the answers you've got that IE+ASV support SMIL animations, which are supported also by Opera, but are not - by FireFox. For FireFox you have to animate by scripting. Cheers Samy --- In svg-developers@yahoogroups.com, jgfa92004 [EMAIL PROTECTED] wrote: Hi all,

[svg-developers] Re: How to access/manipulate SVG from FoxPro

2007-06-11 Thread Samuel Dagan
Hi Paul, As far as I understand, you have a SVG file. SVG is open source, so you can open it with any editor and look at his content. The changes you want to make can be done in different ways: by hand, by scripting, etc. Why do you need a Microsoft tool, while MS does not support SVG?

[svg-developers] Re: Sites That Utilize SVG

2007-06-08 Thread Samuel Dagan
Hi Amsteve, You'll find many links for sites using svg for elearning purpose in Andreas Neumann's article: http://www.carto.net/papers/svg/articles/paper_use_of_svg_and_ecmascri pt_for_elearning_isprs_workshop_potsdam_2005.pdf Cheers, Samy --- In svg-developers@yahoogroups.com, amsteve23

[svg-developers] Re: SVG Examples

2007-04-04 Thread Samuel Dagan
Hi Jaime, Interesting idea and well done. It can be used for promoting SVG. For people that don't know SVG, it should contain some details of how to be able to see SVG, for instance browsers with native support, as FireFox. Cheers, Samy --- In svg-developers@yahoogroups.com, Jaime García

[svg-developers] Re: onresize event-listener in FF2/3

2007-03-06 Thread Samuel Dagan
Hi Andr' and Andreas, event-listener works for me with FF2 (have not check yet FF3). Look for an example how to use it at http://alzt.tau.ac.il/~dagan/tools/panZoom.svg open it with FF. Does not work with IE+ASV. Cheers, Samy --- In svg-developers@yahoogroups.com, André M. Winter -

[svg-developers] Re: ActiveX security warning with Adobe SVG viewer

2007-03-01 Thread Samuel Dagan
Hi Harvey and Bierkraft This issue was discussed on this list when people started to use IE7. Have a look on my message number 57891, where I've tried to summarize different suggested solutions. Good luck, Samy --- In svg-developers@yahoogroups.com, Harvey Rayner [EMAIL PROTECTED] wrote:

[svg-developers] pan and zoom for Firefox

2007-01-21 Thread Samuel Dagan
Hi, Anyone intersted in using zoom and pan for svg files under Firefox is invited to try, modify and use the file http://alzt.tau.ac.il/~dagan/tools/panZoom.svg Here are some details: The file http://jwatt.org/svg/tests/zoom-and-pan-controlsViewBox.svg of Jonathan Watt was used as a

[svg-developers] Re: onresize event handler

2007-01-11 Thread Samuel Dagan
that argues that onresize does not belong to top level elements. David - Original Message - From: Samuel Dagan To: svg-developers@yahoogroups.com Sent: Wednesday, January 10, 2007 8:23 AM Subject: [svg-developers] onresize event handler With FireFox2 I am trying

[svg-developers] IE7, ASV3.03 and workaround

2006-11-12 Thread Samuel Dagan
as The saved file runs without any problem. I know that Adobe is providing solutions for flash plugins, but since ASV is still supported, I would expect them to provide something also for us. I hope Adobe is reading our list. Please! Samuel Dagan - To unsubscribe send a message to: [EMAIL

[svg-developers] IE7, ASV3.03 and workaround

2006-11-12 Thread Samuel Dagan
as The saved file runs without any problem. I know that Adobe is providing solutions for flash plugins, but since ASV is still supported, I would expect them to provide something also for us. I hope Adobe is reading our list. Please! Samuel Dagan - To unsubscribe send a message to: [EMAIL

[svg-developers] Re: IE7, ASV3.03 and workaround

2006-11-12 Thread Samuel Dagan
--- In svg-developers@yahoogroups.com, pilatfr [EMAIL PROTECTED] wrote: Hi Michel, Was surprised to receive such a fast reply on Sunday. --- In svg-developers@yahoogroups.com, Samuel Dagan dagan@ wrote: Hi, Lately there were messages about the inability to see svg web files

[svg-developers] Re: IE7, ASV3.03 and workaround

2006-11-12 Thread Samuel Dagan
to activate this control message, making the SVG interactive, right from the start. Unfortunately in my couseware http://mathanimated.com/ I don't embed the svg in the HTML pages. Thanks, -J Cheers, Samy Dagan --- In svg-developers@yahoogroups.com, Samuel Dagan dagan@ wrote

[svg-developers] Re: Opening svg files in China with IE and FF

2006-10-07 Thread Samuel Dagan
Hi Fuli Zhang, I looked at your file. If I am not mistaken, you are using SMIL animations, which are not yet supported by FireFox. For more details about the support of SMIL see message #57053 and the answers. Cheers, Samy --- In svg-developers@yahoogroups.com, Fuli Zhang [EMAIL PROTECTED]

[svg-developers] Re: Firefox Animation

2006-10-04 Thread Samuel Dagan
Hi J. Voytovich, Fire-Fox does not support SMIL animations yet. Try Opera. Good luck, Samy --- In svg-developers@yahoogroups.com, jvoytovich [EMAIL PROTECTED] wrote: Hi, I can't seem to get Firefox to display the animation in various files. I've downloaded the most recent version, and

[svg-developers] Re: Zoom in/zoom out

2006-09-26 Thread Samuel Dagan
Hi Nazar, If you look at a SVG file from the web, I don't have the answer, but if you have the SVG file, then add inside the svg ... both: width=100% height=100% Cheers, Samy --- In svg-developers@yahoogroups.com, Nazar [EMAIL PROTECTED] wrote: Hi, My question is about feature zoom

[svg-developers] Re: sudden JS errors (???)

2006-08-10 Thread Samuel Dagan
Hi Stian, Please explain! IE does not support SVG. ASV does. Cheers, Samy --- In svg-developers@yahoogroups.com, skrellkolja [EMAIL PROTECTED] wrote: Hi! Has IE come with some relevant updates lately. I suddenly get loads of JavaScript errors in my SVG apps. On printNode i get Object

[svg-developers] Re: loadProjectSpecific - - - - carto.net

2006-07-09 Thread Samuel Dagan
Hi Marcel, I am not very clear about what you want exactly, but I'll try. If you are using zoom-in and out of ASV, then everything is changed in proportion, e.g. for a line: length in addition to the stroke- width, etc. If you want to zoom a group of objects only, then you can do scale

[svg-developers] Re: Internet error message

2006-07-07 Thread Samuel Dagan
Hi Csorba, Did you have the correct mime type at the server side? If you don't know, look at: http://www.svgfaq.com/ServerGen.asp Good luck Samy --- In svg-developers@yahoogroups.com, csorba_edith [EMAIL PROTECTED] wrote: Hi, I tried to publish my SVG map, but the server gave me the

[svg-developers] Re: Problem with displaying svg files by Firefox

2006-06-20 Thread Samuel Dagan
Hi Fulio, It seems that the mime type in your server is not set for SVG. Look at: http://www.svgfaq.com/ServerGen.asp Good luck! Samy --- In svg-developers@yahoogroups.com, Fulio Pen [EMAIL PROTECTED] wrote: Hello, When opening an svg file OFFLINE with the Firefox browser, it

[svg-developers] Re: escape characters in text

2006-05-30 Thread Samuel Dagan
Hi Bart, I use text#60; 90%/text It should work in all cases. Cheers, Samy --- In svg-developers@yahoogroups.com, bstuycke [EMAIL PROTECTED] wrote: Hi, textlt; 90%/text produces a text lt; 90% in asv, where I expected 90%. How do I get a less-than symbol in a text node to display

[svg-developers] Re: Vote for SVG Support in IE7

2006-04-26 Thread Samuel Dagan
Thanks Francis, So far 48 out of 64 voted for the highest support (5) of SVG. In view of the importance of the issue for the members of this group, I hope that much more will join. Cheers, Samy --- In svg-developers@yahoogroups.com, Francis Hemsher [EMAIL PROTECTED] wrote: The Internet

[svg-developers] Re: Text on a path

2006-04-18 Thread Samuel Dagan
Hi Bill Tutu Gates, Usually it does not help to invent rules, better stick to the existing ones. If you want to get the text centered midway along the path then use: text . text-anchor=middle textPath . startOffset=50%gaga/textPath /text Have fun, Samy --- In

[svg-developers] Re: An SVG Tutorial

2006-04-13 Thread Samuel Dagan
Hi Alex, A very nice comparison of SVG with other kind of graphics software. I would add only, that any file of raster graphics is far bigger, than a corresponding SVG file. This is important when downloading animations from the web. If someone is interested, I can show this with few

[svg-developers] Re: flipping text on a path

2006-04-04 Thread Samuel Dagan
Hi Darryl, If there are only few such arrows, you can just define, within defs.../defs, paths of straight lines in the right direction. Then you use them as a path for textPath, but without rendering these paths (no use..). This procedure works fine for me. Cheers, Samy --- In

[svg-developers] Re: events Zoom in

2006-02-21 Thread Samuel Dagan
Hi Omzeta, You can use the scale transformation, and by scripting change the value of the scale attribute. Cheers, Samy --- In svg-developers@yahoogroups.com, omzeta [EMAIL PROTECTED] wrote: Hi all, can I control the events Zoom in with SVG/ecmascript? and I am working with the viewer of

[svg-developers] Re: Varying line width with different x and y scaling

2006-02-16 Thread Samuel Dagan
Hi Robert, If you use scripting to make the scaling instead of the transformation, just by changing the values of the coordinates, according to your request for the scaling, then you have solved the problem. Cheers, Samy --- In svg-developers@yahoogroups.com, Phi Tran [EMAIL PROTECTED]

[svg-developers] Re: scaling stroke width

2006-02-16 Thread Samuel Dagan
Hi Andreas, Yes, but is not simple. Look at my message 54458. Cheers, Samy --- In svg-developers@yahoogroups.com, Andreas Neumann [EMAIL PROTECTED] wrote: no, but SVG 1.2 introduces a non-scaling stroke, since so many people require this. See:

[svg-developers] Saving SVG

2005-12-21 Thread Samuel Dagan
For the last few weeks, a debate is going on among the people of this group, about the future of SVG. Some of the people sound pessimistic, and some optimistic, but the vast majority of them have a common goal, of saving the idea of the open source policy, based on the recommendations of the

[svg-developers] Re: Splines in SVG

2005-11-29 Thread Samuel Dagan
Hi Risto, Take a look at http://alzt.tau.ac.il/~dagan/tools/index.html under the title Plotting mathematical functions. Good luck, Samy --- In svg-developers@yahoogroups.com, Risto Pohjonen [EMAIL PROTECTED] wrote: Hi, I am writing export/import feature between the GF/ST graphic

RE : [svg-developers] Re: Scrolling in browser

2005-11-20 Thread Samuel Dagan
(zoomAndPan=disable in the svg tag). I would prefer scrollbars instead of using pan if the svg is larger than the window. Is it possible ? Thanks for your help. Julie -Message d'origine- De : svg-developers@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Samuel Dagan

[svg-developers] Re: Scrolling in browser

2005-11-19 Thread Samuel Dagan
Hi Julie, What do you mean by the zoom and pan is disabled in the svg ? Don't you have the right-click ASV menu, or does the ctrl or the alt key do nor respond? Samy --- In svg-developers@yahoogroups.com, jgfa92004 [EMAIL PROTECTED] wrote: Hi all, I use IE6 to see my svg files. If the svg

[svg-developers] Re: issues in zoom and pan

2005-11-17 Thread Samuel Dagan
Hi Chandrasekar, If you are using ASV, you can use the right-click menu. In any case, the scale transformation will do the zoom and the translate - the panning, according to your specifications. Cheers, Samy --- In svg-developers@yahoogroups.com, chandrasekar s [EMAIL PROTECTED] wrote:

[svg-developers] Re: open svg files on Xp SP2

2005-11-05 Thread Samuel Dagan
Hi Julie, The SP2 requires better security. Adobe already upgraded its SVG viewer by version 3.03 . You have to uninstall your previous version of ASV, and install the 3.03 (or higher, if exists). This should solve the problem of reading SVG from a server. Please let us know if it works.

[svg-developers] Re: svg applications

2005-11-02 Thread Samuel Dagan
Hi Alwinovicz, Have a look on the courseware of calculus using SVG (and MathML): http://mathanimated.com/ A free subscription for two weeks id provided. Samy --- In svg-developers@yahoogroups.com, alwinovicz [EMAIL PROTECTED] wrote: Hi, I still need some more help for my diploma. Does

[svg-developers] Re: SMIL vs scripting was [ Need help with animation]

2005-10-16 Thread Samuel Dagan
Hi John, I've noticed that a SMIL animation needs more resources (cpu), than animation by scripting (I am using 40msec timing between displays for scripting). Probably for that reason if you display two different animations simultaneously (different SVG files on the same computer), by SMIL, it

[svg-developers] Re: Access is denied from SVG in Win XP

2005-10-16 Thread Samuel Dagan
Hi TBone (steak?) I guess, that the reason is the SPack2, which have a very high security requirements. If my diagnostics is correct, then : open the IE, click Tools, Internet Options, Advanced, choose security, and check : Allow active content to run in files on My Computer, click Apply,

[svg-developers] Re: Scale and Translate

2005-10-05 Thread Samuel Dagan
Hi Gary, You have to keep in mind that the order of transformations is done in SVG from the last to the first. So you have first to write first: translation back from the origin to the original location next: scale last: translate the orginal location (that should not move) to the origin. By

[svg-developers] Re: reading SVG file via IE

2005-10-03 Thread Samuel Dagan
Hi Sam CC Tan In IE: tools, Internet Options, Security, Custom level, Activex controls and plugins Cheers, Samy --- In svg-developers@yahoogroups.com, samcctan [EMAIL PROTECTED] wrote: Hi Eduard, How could I check and change the security setting of IE, which might help my SVG file

[svg-developers] Re: preserveAspectRatio='none' and text

2005-09-21 Thread Samuel Dagan
Hi Sean, If I understand correctly you want to stretch the x,y axes by using the scale-transformation. In order to keep the text without distorsion, you have to apply on the text, an apropriate translate-transformation, instead of the scale-transformation. Cheers, Samy --- In

[svg-developers] Re: very urgent

2005-09-21 Thread Samuel Dagan
Hi Arty Charm, I would use scripting. Cheers, Samy --- In svg-developers@yahoogroups.com, arthycharm [EMAIL PROTECTED] wrote: hi , i have a program done in svg. it looks like this, you have four circles,each designed by means of a group id as g id =2 circ. title

[svg-developers] Re: SVG doesn't open correctly

2005-09-05 Thread Samuel Dagan
Hi dfi10x, It seems that the MIME type for SVG is not defined correctly at your server. Look at http://www.svgfaq.com/ServerGen.asp for more details. By the way, do you have a regular name? Cheers and good luck, Samy --- In svg-developers@yahoogroups.com, dfi10x [EMAIL PROTECTED] wrote:

[svg-developers] Re: Linux and the Adobe SVG Plugin

2005-09-02 Thread Samuel Dagan
Hi Joshua, I am very lucky, to be able to run on Linux RedHat™ vs 8.0, SVG with the Adobe™ SVG Viewer vs 3.0 beta 1. I am using Mozilla™ vs 1.0.1. There are some bugs, but in general the performance is not bad. Good luck, Samy --- In svg-developers@yahoogroups.com, Joshua Woodward [EMAIL

[svg-developers] Re: SVG Essentials Animation

2005-08-22 Thread Samuel Dagan
Hi Andrew, ASV has a version for Linux, but it is dependent of the Linux system. I am using it with Red-Hat, but there are some bugs. If you switch to MS-windows, there is no problem to use IE with ASV. Have fun! Samy --- In svg-developers@yahoogroups.com, Neiderer, Andrew \(Civ,

[svg-developers] Re: SVG complex elements

2005-07-15 Thread Samuel Dagan
Hi Kastrupaki, What do you mean by complex elements? If you want to see some SVG animations, than you have to download ASV (Adobe SVG viewer): http://www.adobe.com/svg/ Cheers, Samy --- In svg-developers@yahoogroups.com, kastrupaki [EMAIL PROTECTED] wrote: Hello, I was trying to find

[svg-developers] Re: Adobe SVG Viewer Plugin in Linux

2005-07-07 Thread Samuel Dagan
Hi Phil, I am using ASV3-beta with Mozilla at RedHat Linux, and it works OK except some small bugs of the ASV-beta. You have to open the http://www.adobe.com/svg/viewer/install/main.html and follow the instructions : 1. Double-click the downloaded installer. 2. Follow the on-screen

[svg-developers] Re: Adobe SVG Viewer Plugin in Linux

2005-07-07 Thread Samuel Dagan
Hi Phil, I saw that Andreas answered you also. Seems that, what is OK for RedHat does not work with other Linux systems. In any case, I wrote you by mistake, that you need to download some fonts, so disregard this part. Good luck, Samy --- In svg-developers@yahoogroups.com, Samuel Dagan

[svg-developers] Re: What am I doing wrong?

2005-07-06 Thread Samuel Dagan
Hi Dom, It looks to me that the MIME type for SVG is not set correctly at your server. Have a look at: http://www.w3.org/TR/SVG/intro.html#MIMEType Cheers, Samy --- In svg-developers@yahoogroups.com, annoyingmouse2001 [EMAIL PROTECTED] wrote: Hi there. Worked on an interactive image and

[svg-developers] Re: New on this, trying to do something new...

2005-07-04 Thread Samuel Dagan
Hi Travsam, As an answer to your question, many things are wrong in your script: where are the end marks of the command lines(;) ? What is: d1.visibility(hidden) ? This is not an ecmascript command! I undeststand that this is your mid-term project, so you have to pick up a book from the

[svg-developers] Re: How to show a sequence of frames as a movie?

2005-07-01 Thread Samuel Dagan
Hi Michael, Unfortunately the web-sites you gave, were not available. If I understand correctly, you want to apply SVG for mathematical animations. I am using such things, but with pure SVG and Ecma script. In order to see a smooth animation you need a refresh time of about 40 msec. Other

[svg-developers] Re: E-Learning article

2005-06-25 Thread Samuel Dagan
Hi Andreas, Read your paper. Very nice and thorough work. It gives really an extensive snapshot of the present situation of SVG, with a rich list of references. Chapeau, as the french say. Regards, Samy --- In svg-developers@yahoogroups.com, Andreas Neumann [EMAIL PROTECTED] wrote: Hi

[svg-developers] Re: SVG files work with browsers in my PC but not from my web site

2005-06-05 Thread Samuel Dagan
Hi Ive-waves fellow, It seems, that you don't have the correct MIME type for SVG in your server. Take a look at : http://www.svgfaq.com/ServerGen.asp Cheers, Samy --- In svg-developers@yahoogroups.com, icewavesfellow [EMAIL PROTECTED] wrote: Hi, I tested SVG files in Win XP SP1 PC with

[svg-developers] Re: animated and interactive SVG

2005-05-26 Thread Samuel Dagan
Hi Peter, For entering in http:/mathanimated.com/ 1. You can see two animations without signing up: The first two of the table of figures (linked to the table of contents). By the way anything, that is not from the chapters (one and two), is open without signing up. 2. For signing up you

[svg-developers] animated and interactive SVG

2005-05-25 Thread Samuel Dagan
Hi, Few weeks ago I posted a note, that seems to pass unnoticed. You don't have to be a mathematician, in order to enjoy the SVG in action, especially for this community. Here is my note for those who missed it: Some of you may remember a talk, I gave at the SVGOpen2003 under the name Animated

[svg-developers] Re: Rotating Text 45degrees vertically

2005-05-19 Thread Samuel Dagan
Hi Dushi, Have you tryed text-anchor ? Cheers, Samy --- In svg-developers@yahoogroups.com, DJ [EMAIL PROTECTED] wrote: Hi All. The following is my svg path data to represent small linear boxes. path d= M 0.6 50 4.6 50 M 4.6 50 10.350 M 10.450

[svg-developers] Animated mathematics

2005-04-30 Thread Samuel Dagan
For those interested in e-learning of math: Hi, Some of you may remember, a talk I gave at the SVGOpen2003 under the name Animated mathematics. In the mean time, the part of the project, including differentiation and integration with one variable was completed, and it is now on the web at

[svg-developers] Re: SVG Elearning Examples?

2005-04-30 Thread Samuel Dagan
Hi Andreas, Look at the massage 49453, I've just posted (Animated mathematics). I guess this may help you. Cheers, Samy --- In svg-developers@yahoogroups.com, Andreas Neumann [EMAIL PROTECTED] wrote: Hi all, I have to write an article on SVG for E-Learning and give a presentation

[svg-developers] Re: Problem installing Adobe SVG Viewer-urgent please

2005-04-27 Thread Samuel Dagan
Hi Sam C Ctan, In order to install a different version of ASV, you have to uninstall first the previous version. Did you do that? Samy --- In svg-developers@yahoogroups.com, samcctan [EMAIL PROTECTED] wrote: Hi all, I installed adobe SVG Viewer ages ago, and it works perfectly with

[svg-developers] Re: SVG WorkStation - alpha Feedback

2005-04-15 Thread Samuel Dagan
Hi Francis, As you probably know, there are many tools for SVG drawing, and you have to overcome a fierce competition. I've looked on your MobiusPortal, and tryed to use the grid of coordinates. For a simple grid I've obtained a huge number of lines. You could make it much shorter by

[svg-developers] Re: Introduction and question about parabolas

2005-04-11 Thread Samuel Dagan
Hi Peter, You better look at a good introduction for Bezier curves: http://graphics.cs.ucdavis.edu/CAGDNotes/Bezier-Curves/Bezier- Curves.html Good luck, Samy --- In svg-developers@yahoogroups.com, pilatfr [EMAIL PROTECTED] wrote: --- In svg-developers@yahoogroups.com, hubby2debbie

[svg-developers] Re: Convert Ellipse to Cubic Bezier

2005-04-10 Thread Samuel Dagan
Hi Joe, I don't have the answer for your question, but I did a lot of work converting curves as a chain of quadratic Bezier paths. Take a look at my message number 48789. Good luck, Samy --- In svg-developers@yahoogroups.com, Joe Gammad [EMAIL PROTECTED] wrote: I have been struggling

[svg-developers] Re: Introduction and question about parabolas

2005-04-09 Thread Samuel Dagan
Hi Peter, You've already got the answer for parabola from Pilatfr. If you are interested in graphical presentations of more complicated functions, look at my presentation given at the SVGOpen2003: http://www.svgopen.org/2003/papers/AnimatedMathematics/index.html Since I am developing a

[svg-developers] Re: How to change the mouse-cursor when moving over text-elements?

2005-04-04 Thread Samuel Dagan
Hi Christian, For ASV3: put the object, that you want the cursor to change shape as a hand, between the a and /a elements (without any attributes). Good luck! Samy --- In svg-developers@yahoogroups.com, Christian [EMAIL PROTECTED] wrote: Hi I still haven't managed to reach this effect.

[svg-developers] Re: Algorithm for Ellipse

2005-03-19 Thread Samuel Dagan
Hi Senthil, You have two choices: 1.Use the basic shape ellipse and do a rotation. 2.Use two elliptic paths (the rotation angle is one of the parameters). What do you want more? Or did I misunderstood your question? Cheers, Samy --- In svg-developers@yahoogroups.com, raghu raman [EMAIL

[svg-developers] Re: Newbie Question - Lines/Paths

2005-03-09 Thread Samuel Dagan
, Samuel Dagan [EMAIL PROTECTED] wrote: Hi Chris, A simple way could be a path, formed by a combination of many elliptical arcs. Good luck, Samy --- In svg-developers@yahoogroups.com, th3moog [EMAIL PROTECTED] wrote: Can someone tell me if it is possible to repeat

[svg-developers] Re: Newbie Question - Lines/Paths

2005-03-08 Thread Samuel Dagan
Hi Chris, A simple way could be a path, formed by a combination of many elliptical arcs. Good luck, Samy --- In svg-developers@yahoogroups.com, th3moog [EMAIL PROTECTED] wrote: Can someone tell me if it is possible to repeat a symbol along a path? I understand that you can create

[svg-developers] Re: Polygon Rotation

2005-02-05 Thread Samuel Dagan
Hi Pavan, If you want to rotate in 3D a rectangle along the side, that is on the x or y axis, you just do an animated scale transformation from 1 to -1. For a more complicated rotation, as rotation along a diagonal, take a look on my animation presented at the SVGOpen2003 at

[svg-developers] Re: Sending SVG to the printer

2004-12-03 Thread Samuel Dagan
something obvioulsy wrong, I would be glad if someone could point it at me :) Cheers -Jean-Loup PS: Is anyone doing anything about CERT??? Everytime I post on this list I get a reply from them and that's quite annoying. --- In [EMAIL PROTECTED], Samuel Dagan [EMAIL PROTECTED] wrote

[svg-developers] Re: Hi Help Needed

2004-11-18 Thread Samuel Dagan
Hi Ramu, You need ASV (Adobe SVG Viewer). Samy --- In [EMAIL PROTECTED], Ram Prasad Alisam [EMAIL PROTECTED] wrote: Hi, In my application i have to compress svg and dipaly that in the browser. Can anybody say how to do this? My web server:WebLogic My browser:Microsoft Internet

[svg-developers] Re: Programming SVG using Java and ILOG JVeiws

2004-11-01 Thread Samuel Dagan
--- In [EMAIL PROTECTED], sudheerpujar [EMAIL PROTECTED] wrote: Hi All I want to know how do i start. I would like to do Programming in SVG using Java and ILOG JViews [Saw an article Bringing SVG Power to Java Applications at http://java.sun.com/developer/technicalArticles/GUI/svg/ ]

[svg-developers] Re: Composite paths

2004-10-27 Thread Samuel Dagan
Endpoint of conjugate diameter 1: 350, 400 You think this can be represented with svg path? No transform? I hope so! -Original Message- From: Samuel Dagan [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 26, 2004 8:37 AM To: [EMAIL PROTECTED] Subject: [svg-developers] Re

  1   2   >