[svg-developers] Re: full svg website

2004-10-23 Thread jophof007
Still the same. J --- In [EMAIL PROTECTED], Holger Will <[EMAIL PROTECTED]> wrote: > jophof007 wrote: > > > > > Hi, > > > > I got an open save dialogue in IE6 Win2K using ASV3.01 (something with > > Mime type wrong?) > > > > J > > hi jophof > > thanks for the command, the mimetype is correct,

Re: [svg-developers] Re: full svg website

2004-10-23 Thread Mario Vernari
Hi Holger, I've tested your site by using Linux SuSE 9.1, FF and ASV and it works ok. Best congrats for the graphic and for the contents too, of course. I'll managing a new face for my site, but I want to include a link to your home too. Cheers Mario Holger Will wrote: > jophof007 wrote: > > >

Re: [svg-developers] Re: full svg website

2004-10-23 Thread Holger Will
jophof007 wrote: > > Hi, > > I got an open save dialogue in IE6 Win2K using ASV3.01 (something with > Mime type wrong?) > > J hi jophof thanks for the command, the mimetype is correct, i wasnt aware of IE not knowing about the shortcut syntax for the url, try: http://www.treebuilder.de/defaul

[svg-developers] Re: full svg website

2004-10-23 Thread jophof007
Hi, I got an open save dialogue in IE6 Win2K using ASV3.01 (something with Mime type wrong?) J --- In [EMAIL PROTECTED], Holger Will <[EMAIL PROTECTED]> wrote: > hello everyone > > ive just finished a first full-SVG-version of my website. > it should run in ASV3, ASV6, Batik, Konqueror and moz

Re: [svg-developers] Handling Different Screen Resolutions?

2004-10-23 Thread Chris Lilley
On Saturday, October 23, 2004, 8:10:11 AM, Holger wrote: HW> p.s.: the xmlns is required by some userAgents, so allways include it. The xmlns is required by the spec, so always include it, even though some user agents don't complain if it is missing. -- Chris Lilleymail

Re: [svg-developers] Handling Different Screen Resolutions?

2004-10-23 Thread Chris Lilley
On Saturday, October 23, 2004, 4:24:47 AM, tbone58x wrote: t> I written some programs to generate SVG output and am always using the t> followng lines of code: t> t> t> So if I want to center (I always use Pixels) I would use style="text-anchor:middle;">Text Goes here t> However, what h

Re: [svg-developers] Animated Itinerary of Holidays in Japan, SVG.Open Fotos

2004-10-23 Thread Chris Lilley
On Saturday, October 23, 2004, 12:33:46 PM, Andreas wrote: AN> There is also a problem when you don't know whether the bandwidth of AN> the client is fast enough: the sound starts playing only when the AN> mp3 is loaded (which could be at any time during the animation). In AN> my opinion there s

[svg-developers] full svg website

2004-10-23 Thread Holger Will
hello everyone ive just finished a first full-SVG-version of my website. it should run in ASV3, ASV6, Batik, Konqueror and mozSVG. http://www.treebuilder.de/?type=svg enjoy! holger Yahoo! Groups Sponsor ~--> $9.95 domain names from Yahoo!. Regis

Re: [svg-developers] Patent threat

2004-10-23 Thread Philippe Lhoste
Follower: I discovered that String.replace method accepts a function as parameter. Cool, so I can implement Rotate13 in a way similar to the Lua program I first made: // JavaScript 1.2 ROT-13 function with RE function Rotate13(tIn) { var c, offset, b; var byte_A = 'A'.charCodeAt(

[svg-developers] "High Contrast" option

2004-10-23 Thread Jonathan Chetwynd
Accessible html websites offer a "High Contrast" option Does anyone have examples of SVG style controls for "High Contrast" in the wild? http://www.peepo.co.uk/launch/contrast.svg click on 'tools' then 'contrast' there are 3 options, low contrast the default, dark background, or light backgr

Re: [svg-developers] Re: Handling Different Screen Resolutions?

2004-10-23 Thread Philippe Lhoste
tbone58x wrote: > Now let me throw this twist into the equation, what I am really doing > is creating a visual representation of an organizational chart. Each > of the hypathetical boxes across represent a manager that reports to a > single director (top centered - no problem). Below each manage

Re: [svg-developers] Re: Handling Different Screen Resolutions?

2004-10-23 Thread Holger Will
hi tbone >Wow I am really liking this SVG stuff - can't believe others are not >as excited about it... yeah, svg rocks ! >Is there a better more optimal set of settings that I should be using? im not sure i understand correctly, but optimal concerning the aspect ratio w

[svg-developers] Re: Handling Different Screen Resolutions?

2004-10-23 Thread tbone58x
That was AWESOME! Ufortunately, I did not understand the purpose of the viewBox and that is truly incredible - thank you s much! I reran my code and the width works perfectly as far as the width is concerned. My height has some white space above and below it - kinda like a letterbox movie

Re: [svg-developers] Re: Handling Different Screen Resolutions?

2004-10-23 Thread Holger Will
hi tbone let me try to explain a bit clearer. 1) http://www.w3.org/2000/svg";> 2) 3) line 1) the width and height attribute determin the physical height of your svg (i.e. if you do width="1000px" your svg will be 1000px wide). in this case 100% means that your svg will fit into the userAgen

[svg-developers] Re: Handling Different Screen Resolutions?

2004-10-23 Thread tbone58x
That makes sense but causes other issues. Here is what I am trying to do. Visualize a series of rectangles going accross horizontally - right now I have 6 across and each are 150 pixels wide. If I constrain my SVG width (I will leave height out for now) to 1,000 pixels at max that means at mos

[svg-developers] Animated Itinerary of Holidays in Japan, SVG.Open Fotos

2004-10-23 Thread Andreas Neumann
Hi all, at http://www.carto.net/papers/svg/samples/japan_map_itinerary/japan.svgz you may find an animated itinerary (map) of our holidays in Japan. Attention: it contains sound (adjust your speakers volume settings) Depending on the speed of the computer, it happens that the sound may stutte

Re: [svg-developers] Handling Different Screen Resolutions?

2004-10-23 Thread Holger Will
hi tbone set the width/height to 100% and use viewBox . (you wont need preserveAspectRatio since "xMidYMid" is the default value, but you should at least try a value of "none") like this: http://www.w3.org/2000/svg";> hth holger p.s.: the xmlns is required by some userAgents, so allways inclu

[svg-developers] Re: source for Chris Peto SVG editor/run locally

2004-10-23 Thread jophof007
Hi, See also other thread (if interested). We send an XML file to the client with symbol information and line information. The client is doing the editing and send an XML stream back to a server (using posturl). Save it as flat file or in database. Here an example of the start of an XML stream:

Re: [svg-developers] Re: source for Chris Peto SVG editor/run locally

2004-10-23 Thread Philippe Lhoste
Chris Peto wrote: > The php and apache are needed to write/read from the harddrive. If you > plan on not read and writing then is will work without the server and > php, which is pretty useless. Well, I believe there are several ways to save a drawing without server. They need IE and ASV though,

Re: [svg-developers] Audio on SVG

2004-10-23 Thread Philippe Lhoste
techitoutuk wrote: > How can you put audio clips on SVG? > > Tony Bell Theoritically, you have to wait for SVG 1.2, as Chris answered. (Well, ASV6 may already implement this part.) Now, you can do it with ASV3 too, but it is a specific Adobe extension, ie. it is not portable to other viewers.

Re: [svg-developers] Handling Different Screen Resolutions?

2004-10-23 Thread Philippe Lhoste
Holger Will wrote: > set the width/height to 100% and use viewBox . > (you wont need preserveAspectRatio since "xMidYMid" is the default > value, but you should at least try a value of "none") > like this: > preserveAspectRatio="xMidYMid" xmlns="http://www.w3.org/2000/svg";> > > > p.s.: the x

Re: [svg-developers] Patent threat

2004-10-23 Thread Philippe Lhoste
Mario Vernari wrote: > Philippe!...Always happy to hear from you! :-P Thank you! > I don't know if the new is true or not...(of course, not because you!) I fear that you have not decoded the spoiler... There are several JavaScript ROT-13 decoders on the Net, but I chose to provide one in SVG+J