Re: [svg-developers] Printing small fonts

2005-01-23 Thread "André M. Winter - Carto.net"

hi mr.  no-name-password,

try "text-rendering".  see 
.

andré

-- 
___
andre m. winter,
  SVG consulting and development
  online cartography focusing on SVG
 print and online touristic map solutions 



passwd9 wrote:

>Hi,
>
>I am trying to print some very small fonts from an SVG image and 
>although they are readable they are not as crisp and sharp as they 
>would be from, say, MSWord.  My source looks something like this:
>
>
>
>Does anyone have any ideas on how to improve the clarity of the 
>fonts when printed?
>
>Many thanks,
>passwd9.
>
>
>
>
>
>-
>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 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, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [svg-developers] How to use Find function ?

2005-01-23 Thread Philippe Lhoste

Alex Ost. wrote:
> I created a new Dynamic Context Menu.
> But, now I want to use the build in Find option, but to do some extra 
> stuff after the find will finish.
> For example:
> Create an alert with the Color of the text that was found and the X, 
> Y Axis of the string.

Well, I took a look at 
http://wiki.svg.org/index.php/CustomizingContextMenu and from what I 
read, I fear you cannot do what you want with the built in function, at 
least in ASV3: "It is not possible in ASV3 to access the built-in 
functions of the context menu (such as "CopySVG" or "SaveAs") through 
script. This is a security feature."
If I am wrong, hopefully somebody will correct me.

Perhaps you can do your own search function that iterate through the 
text elements of your SVG, highlight them and perform the custom action.

-- 
Philippe Lhoste
--  (near) Paris -- France
--  http://Phi.Lho.free.fr
--  For servers mangling my From and Reply-To fields,
--  please send private answers to PhiLho(a)GMX.net
--  --  --  --  --  --  --  --  --  --  --  --  --  --


-
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, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [svg-developers] Re: Simple SVG Strip Chart Display

2005-01-23 Thread Philippe Lhoste

Heiko Niemann wrote:
> Philippe Lhoste wrote:
>> I beleive you (Heiko Niemann) shouldn't use
>> 

Re: [svg-developers] Re: path parser - extract path

2005-01-23 Thread Philippe Lhoste

e2mieluv wrote:
> It does work great in extracting the points from the path as I 
> wanted.one thing i would like to know however, will it only abstract 
> the M points and not the rest? since most path drawn by maps would 
> have multiple joints of path in a single drawn path.
> 
> thanks again! 
> i'm trying it as i type =)

As I understand the way Kevin manipulates paths, each particular command 
gets its command handler, ie. M will be treated by a different handler 
than L or even than m.
Now, a M 1,1 1,10 10,1 will be treated as M 1,1 L 1,10 L 10,1, I think.
So yes, the movetoAbs handler will get only M points. But if you have 
something like M 1,1 L 1,10 L10,1 z M 5,20 L 20,10 L 10,20 z, you will 
get two calls to movetoAbs handler.

-- 
Philippe Lhoste
--  (near) Paris -- France
--  http://Phi.Lho.free.fr
--  For servers mangling my From and Reply-To fields,
--  please send private answers to PhiLho(a)GMX.net
--  --  --  --  --  --  --  --  --  --  --  --  --  --


-
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, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: path parser - extract path

2005-01-23 Thread e2mieluv


Thanks philippe!

It does work great in extracting the points from the path as I 
wanted.one thing i would like to know however, will it only abstract 
the M points and not the rest? since most path drawn by maps would 
have multiple joints of path in a single drawn path.

thanks again! 
i'm trying it as i type =)

--- In svg-developers@yahoogroups.com, Philippe Lhoste <[EMAIL PROTECTED]> 
wrote:
> e2mieluv wrote:
> > i do hope you guys could help me with this. Kevin's path parser is
> > really useful in extracting multiple path.however,i'm finding
> > difficulty to extract the path that has been retrieve by the path
> > parser into 1 points.
> > 
> > in the example it uses tspan which to manipulate text and 1 more 
thing
> > i forgot. but how to extract the path?
> > 
> > ex. path extracted M a,b L c,d
> > would like to extract it as point a,b to be save in an array.
> > anyone knows how the path parser could work that way? please help 
me,
> > thanks!
> > 
> > 
> > the example prog.
> > 
> > 
> >  > "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd";>
> >  >  xmlns="http://www.w3.org/2000/svg";
> >  xmlns:xlink="http://www.w3.org/1999/xlink";>
> > 
> > 
> >  > var stdout;
> > var parser = new PathParser();
> > 
> > function init(e) {
> > if ( window.svgDocument == null )
> > svgDocument = e.target.ownerDocument;
> > 
> > stdout = svgDocument.getElementById("stdout");
> > 
> > parser.setHandler(new SampleHandler());
> > parse("path1");
> > parse("path2");
> > parse("path3");
> var r = '';
> for (var i = 0; i < mNb; i++) { r += mArray[i] + ','; }
> alert(r);
> > }
> > 
> > function parse(id) {
> > var source = svgDocument.getElementById(id);
> > var pathData = source.getAttributeNS(null, "d");
> > 
> > println("Parsing: " + pathData);
> > parser.parseData(pathData);
> > }
> > 
> > function println(msg) {
> > 
> > /*var tspan = svgDocument.createElementNS
(Svg.NAMESPACE, "tspan");
> > tspan.setAttributeNS(null, "x", "3");
> > tspan.setAttributeNS(null, "dy", "1em");
> > tspan.appendChild( svgDocument.createTextNode(msg) );
> > stdout.appendChild(tspan);*/
> > }
> var mArray = {};
> var mNb = 0;
> SampleHandler.prototype.movetoAbs = function(x, y) {
>mArray[mNb++] = x;
>mArray[mNb++] = y;
> };
> > ]]>
> > 
> >  >   d="M300,25 L450,100"
> >   stroke="gold" stroke-width="5" 
> >   fill="none"/>
> >  >   d="M450,100 L250,150"
> >   stroke="blue" stroke-width="5" fill="none"/>
> >  >   d="M250,150 L300,25"
> >   stroke="blue" stroke-width="5" fill="none"/>
> > 
> >  
> > 
> 
> OK, I am not sure of what you can do.
> Perhaps it would be easier to use Kevin's PathData object than 
PathParser.
> 
> But if you want to stick to it for any reason, either you drop the 
> SampleHandler to replace it with your own code, similar but more on 
the 
> aim, or you do as I did above: override the 
> SampleHandler.prototype.movetoAbs function to write your own.
> 
> This function is called each time a M command is found, and there I 
> store the corresponding two coordinates in an array.
> At the end, I just display the content of the array.
> 
> HTH.
> 
> -- 
> Philippe Lhoste
> --  (near) Paris -- France
> --  http://Phi.Lho.free.fr
> --  For servers mangling my From and Reply-To fields,
> --  please send private answers to PhiLho(a)GMX.net
> --  --  --  --  --  --  --  --  --  --  --  --  --  --





-
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, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: Simple SVG Strip Chart Display

2005-01-23 Thread Heiko Niemann


Philippe,

Philippe Lhoste wrote:
> I beleive you (Heiko Niemann) shouldn't use
> 

[svg-developers] How to use Find function ?

2005-01-23 Thread Alex Ost.


Hi,
I created a new Dynamic Context Menu.
But, now I want to use the build in Find option, but to do some extra 
stuff after the find will finish.
For example:
Create an alert with the Color of the text that was found and the X, 
Y Axis of the string.

Help is most wanted.








-
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, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: ANN: Drawing tool

2005-01-23 Thread skatethere


No, it doesn't, but this app works pretty well with Linux + ASV3 +
Konqueror.

Konqueror only uses the older NS4 plugin API, which seems to work
better than the newer Mozilla API WRT mousedown and mouse dragging.

For the life of me, I can't get reliable mousedown events in Linux
Firefox + ASV3, but with Konqueror my apps work well.

Thanks,
  --kirby files

--- In svg-developers@yahoogroups.com, Mario Vernari <[EMAIL PROTECTED]>
wrote:
> Does not exist ASV 6 for Linux...
> Ciao
> Mario
> 
> 
> On Sunday 23 January 2005 09:44, pilatfr wrote:
> >  --- In svg-developers@yahoogroups.com, Mario Vernari
<[EMAIL PROTECTED]>
> >  wrote:
> >
> >  Do you try Linux+FF+ASV6 ?
> >
> >  Michel
> >
> >  > Hi Michel,
> >  > your work looks amazing, but I must say that it is not working
on
> >  > Linux+FF+ASV3.
> >  > I see the whole screen, but it is not possible any interaction.
> >  > Cheers
> >  > Mario
> >  >
> >  > On Friday 21 January 2005 17:44, pilatfr wrote:
> >  > >  Hi
> >  > >
> >  > >  I post drawing tool ( SVG only with JS and some PHP )
always to
> >
> >  try
> >
> >  > >  to show that we can use svg to build applications ...
> >  > >  Some features
> >  > >  - All shapes and pencil
> >  > >  - HSL colors, gradients and patterns
> >  > >  - Menus - icons + tooltips - contextual menus
> >  > >  - Save Load and print
> >  > >  - Create patterns from drawing
> >  > >  
> >  > >
> >  > >  Tested with Win + IE + ASV 3 or 6 beta
> >  > >  With Firefox + ASV 6, only popup window don't run
> >  > >  ( If some guru know how use popup from svg using Adobe JS
> >
> >  engine in
> >
> >  > >  Firefox ... )
> >  > >
> >  > >  To try
> >  > >  http://pilat.free.fr/dessin_loc/draw.svg
> >  > >  In french
> >  > >  http://pilat.free.fr/dessin_loc/draw.svg?l=french
> >  > >
> >  > >  To load all components in zip file
> >  > >  http://pilat.free.fr/english/svgdraw/index.htm
> >  > >  In french
> >  > >  http://pilat.free.fr/svgdraw/index.htm
> >  > >
> >  > >  If you want more, make propositions for next version
> >  > >
> >  > >  Michel
> >  > >
> >  > >
> >  > >
> >  > >
> >  > >
> >  > >
> >  > >  -
> >  > >  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, send an email to:
> >  > > [EMAIL PROTECTED]
> >  > >  
> >  > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> >
> >  Service.
> >
> >
> >
> >
> >
> >  -
> >  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, send an email to:
> > [EMAIL PROTECTED]
> >  
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.





-
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, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Pluralistic SVG Foundation

2005-01-23 Thread Michael Bolger

In the hope of understanding,
clarity and reconciliation.

The last 2 weeks have been brutal
for me and the SVG Foundation.
so many wounds in my back, hard
to sleep. Joy absent from my work.

Much tension in the SVG World,
to those in the past that I may have
inadvertently ignored or to the likes
of fine individuals like Ron  De Serranno
and JD/MX fame who I may have
"clichlike-piled on-un sensitive jerk"
my apology's.

The SVG Foundation is an Pluralistic,
Inclusive and Independent  non- profit
California Corporation/Legal Entity.
to those who conspire against us,
please stop.

Pluralistic: As the Internet is built of packets
flowing on their merry way, compound documents
wish to be merry in a granular way.
We advocate a SVG Community that promotes
diversity and creativity.  Building Sites as Monolithic
entities is not the vision of the Web, it leads to
power trips and tyranny. We respect and
support those who have the courage to build,
from svg-cafe to svg.pagina to svg.org to .
let us respect one another.

Inclusive: Everyone is welcomed and free to contribute.
Let us raise SVG above the petty anti flash, anti Microsoft
anti-CSS/whatever it only hurts SVG and makes it look
like some "little man complex". 

Independent:  The only connection from my
start-up Company(SOA stuff) in Irvine area
is to provide me and servers with Network,
Office and Attorneys (:))  I advocate SVG in business
to many CEO's/Presidents from Bax Global to
Western Digital, they want to talk about SOA/Security.
They all currently have close to Zero interest
in SVG at this time.

As we move forward ownership will be many
http://www.packers.com/stockholders/

Hopefully I can get some rest.
Have lots of work to do.

Michael Bolger
Director
SVG Foundation






-
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, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [svg-developers] Re: ANN: Drawing tool

2005-01-23 Thread Mario Vernari

Does not exist ASV 6 for Linux...
Ciao
Mario


On Sunday 23 January 2005 09:44, pilatfr wrote:
>  --- In svg-developers@yahoogroups.com, Mario Vernari <[EMAIL PROTECTED]>
>  wrote:
>
>  Do you try Linux+FF+ASV6 ?
>
>  Michel
>
>  > Hi Michel,
>  > your work looks amazing, but I must say that it is not working on
>  > Linux+FF+ASV3.
>  > I see the whole screen, but it is not possible any interaction.
>  > Cheers
>  > Mario
>  >
>  > On Friday 21 January 2005 17:44, pilatfr wrote:
>  > >  Hi
>  > >
>  > >  I post drawing tool ( SVG only with JS and some PHP ) always to
>
>  try
>
>  > >  to show that we can use svg to build applications ...
>  > >  Some features
>  > >  - All shapes and pencil
>  > >  - HSL colors, gradients and patterns
>  > >  - Menus - icons + tooltips - contextual menus
>  > >  - Save Load and print
>  > >  - Create patterns from drawing
>  > >  
>  > >
>  > >  Tested with Win + IE + ASV 3 or 6 beta
>  > >  With Firefox + ASV 6, only popup window don't run
>  > >  ( If some guru know how use popup from svg using Adobe JS
>
>  engine in
>
>  > >  Firefox ... )
>  > >
>  > >  To try
>  > >  http://pilat.free.fr/dessin_loc/draw.svg
>  > >  In french
>  > >  http://pilat.free.fr/dessin_loc/draw.svg?l=french
>  > >
>  > >  To load all components in zip file
>  > >  http://pilat.free.fr/english/svgdraw/index.htm
>  > >  In french
>  > >  http://pilat.free.fr/svgdraw/index.htm
>  > >
>  > >  If you want more, make propositions for next version
>  > >
>  > >  Michel
>  > >
>  > >
>  > >
>  > >
>  > >
>  > >
>  > >  -
>  > >  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, send an email to:
>  > > [EMAIL PROTECTED]
>  > >  
>  > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>
>  Service.
>
>
>
>
>
>  -
>  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, send an email to:
> [EMAIL PROTECTED]
>  
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


-
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, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [svg-developers] ANN: Drawing tool

2005-01-23 Thread Chris Peto

HI,
 
Try this:
 
SVG editor:  
http://www.resource-solutions.de/svgeditor.html

 

Mit freundlichen Grüßen/Regards
Chris Peto
Freelance System Development, Resource Solutions
Founding Partner, Vectoreal
-
Germany
Mobile: +49 (0) 173 308 7843
Tel:+49(0) 6103 80 21 98
http://www.resource-solutions.de  
http://www.vectoreal.com  
SVG editor: http://www.resource-solutions.de/svgeditor.html
mailto:[EMAIL PROTECTED]

Member of: SPARK - SVG Programmers' Application Resource Kit
SVG site:  http://www.schemasoft.org/svg/main.svg
HTML site: http://www.schemasoft.org/





-Original Message-
From: pilatfr [mailto:[EMAIL PROTECTED] 
Sent: Freitag, 21. Januar 2005 17:44
To: svg-developers@yahoogroups.com
Subject: [svg-developers] ANN: Drawing tool



Hi

I post drawing tool ( SVG only with JS and some PHP ) always to try 
to show that we can use svg to build applications ...
Some features
- All shapes and pencil
- HSL colors, gradients and patterns
- Menus - icons + tooltips - contextual menus
- Save Load and print 
- Create patterns from drawing


Tested with Win + IE + ASV 3 or 6 beta
With Firefox + ASV 6, only popup window don't run 
( If some guru know how use popup from svg using Adobe JS engine in 
Firefox ... )

To try
http://pilat.free.fr/dessin_loc/draw.svg
In french
http://pilat.free.fr/dessin_loc/draw.svg?l=french

To load all components in zip file
http://pilat.free.fr/english/svgdraw/index.htm
In french
http://pilat.free.fr/svgdraw/index.htm

If you want more, make propositions for next version 

Michel






-
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, send an email to:
[EMAIL PROTECTED]
 
  

*   Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service  . 




[Non-text portions of this message have been removed]



-
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, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [svg-developers] ANN: Drawing tool

2005-01-23 Thread Philippe Lhoste

pilatfr wrote:
> I post drawing tool ( SVG only with JS and some PHP ) always to try 
> to show that we can use svg to build applications ...
> Some features
> - All shapes and pencil
> - HSL colors, gradients and patterns
> - Menus - icons + tooltips - contextual menus
> - Save Load and print 
> - Create patterns from drawing
> 
> 
> Tested with Win + IE + ASV 3 or 6 beta
> With Firefox + ASV 6, only popup window don't run 
> ( If some guru know how use popup from svg using Adobe JS engine in 
> Firefox ... )
> 
> To try
> http://pilat.free.fr/dessin_loc/draw.svg
> In french
> http://pilat.free.fr/dessin_loc/draw.svg?l=french
> 
> To load all components in zip file
> http://pilat.free.fr/english/svgdraw/index.htm
> In french
> http://pilat.free.fr/svgdraw/index.htm
> 
> If you want more, make propositions for next version 
> 
> Michel

Testing, writing remarks as I go...
French version, run on IE5.5+ASV3 on Win98SE, PII300.

- On 1024x768 display, I don't see the end of the drawing area, if it 
has one, even with IE on full screen. Perhaps it is on purpose, there is 
the scrollbar after all. But perhaps you should make it end on a border, 
and scroll within.

- I expect a menu to disappear when I click again on the menu name or go 
on next menu header. Mmm, disappears when I go into the menu area then exit.

- Palette: clicking on the swash doesn't do anything, I expected the 
cross to jump on click position. Ah, OK, I can drag the cross. Slowly, 
otherwise I loose it (when I go out of the BB). Same for luminance 
cursor. I think there are ways to drag'n'drop shapes without this 
problem. Curiously, it works better when drag'n'dropping shapes in the 
drawing zone.

Mmm, I thought I could edit HSL values, given the look of the area, but 
I can't, typing goes to palette name. I suggest dropping the borders 
around the HSL values (shows them as labels) and adding one to the 
palette name. I deleted chars in the palette name using Del. If I hit 
Del when there is no more char, I see a rectangle char, deleted on next 
Del hit.

Save palette with empty name. Go a dialog stating that .pal already 
exists... Click on No, type Foo, Save... No confirmation/feedback that 
operation is OK. Reclick on Save, overwrite dialog, OK.

- Palette change is OK. I expected the dropdown list do display when 
clicking on the text area, but that's a minor glitch. Arrows for list 
scrolling are inverted to what I am used to (and to the scrollbar of the 
drawing zone). No scroll when I click on the scroll bar outside the 
scroll grip, same on the drawing area.

- Draw a rectangle. Found the Shape tab (I thought it was the one 
activated), seems fine. It would be nice to be able to hand-edit the 
numerical values (x, y, h, w, etc.).

- Draw a circle, I see the operations on existing shapes (Delete, 
Modify...) works by first choosing the tool, then the shape, unlike the 
operations on the Shape tab. Well, it leaves less ambiguity on which 
shape we work on, since there is no way to see the active shape, beside 
data on the Shape tab.
The handle to resize circle has the same D'n'D problem (move slowly).

- Rotate, by increments. Can I change the increment value?

- Draw a bitmap image. Nice image chooser, only one image currently. Go 
up in dir. doesn't work, this is OK (security).
Oh, if I click on the blank area (list) below the bateau.jpg name, I get 
a MS JScript error:
'list_files[...]' a la valeur Null ou n'est pas un objet.
line: 147, column: 2
Click on OK, similar error:
'list_files[...]' a la valeur Null ou n'est pas un objet.
line: 2091, column: 3
Do again, if bateau.jpg is select, behaves correctly. Wow, it is small! 
I can resize it. No way to preserve aspect ration?
I can change the rounded corners, but it affects only the border around 
the image, it doesn't clip the bitmap.

- Create polygon. I add a node on each click, but how do I stop? If I 
click on the selector, the last node is wrong. Trying to modify the 
shape, I have handles on each node, but moving them around doesn't 
change the shape...

- Trying to draw a Bézier shape (missing an accent in the tooltip). Go:
'polygo' a la valeur Null ou n'est pas un objet.
line: 1203, column: 3
repeatidly, as soon as I am in the drawing area and each time I move the 
mouse inside this zone... I have to move the mouse out the drawing area 
and hit Return to get rid of the error messages.

- Create pattern isn't active yet?

- Click on Help, get a secondary window. Ah, I end polygons by clicking 
on same node? I try, get:
'svgdoc.getElementById(...)' a la valeur Null ou n'est pas un objet.
line: 1175, column: 3
when I go to drawing area... Mmm, polygon, polyline and freehand drawing 
seems broken now.

- Trying Save (PhiLho01.svg), seems OK. Erase drawing. Load drawing. 
Same problem when clicking in empty area of the list. I get another error:
Not found
line: 2429, column: 3
whatever it means. The drawing is loaded OK. No such problem when 
loading another drawing. Peop

[svg-developers] Re: ANN: Drawing tool

2005-01-23 Thread pilatfr


--- In svg-developers@yahoogroups.com, Mario Vernari <[EMAIL PROTECTED]> 
wrote:

Do you try Linux+FF+ASV6 ?

Michel

> Hi Michel,
> your work looks amazing, but I must say that it is not working on 
> Linux+FF+ASV3.
> I see the whole screen, but it is not possible any interaction.
> Cheers
> Mario
> 
> 
> On Friday 21 January 2005 17:44, pilatfr wrote:
> >  Hi
> >
> >  I post drawing tool ( SVG only with JS and some PHP ) always to 
try
> >  to show that we can use svg to build applications ...
> >  Some features
> >  - All shapes and pencil
> >  - HSL colors, gradients and patterns
> >  - Menus - icons + tooltips - contextual menus
> >  - Save Load and print
> >  - Create patterns from drawing
> >  
> >
> >  Tested with Win + IE + ASV 3 or 6 beta
> >  With Firefox + ASV 6, only popup window don't run
> >  ( If some guru know how use popup from svg using Adobe JS 
engine in
> >  Firefox ... )
> >
> >  To try
> >  http://pilat.free.fr/dessin_loc/draw.svg
> >  In french
> >  http://pilat.free.fr/dessin_loc/draw.svg?l=french
> >
> >  To load all components in zip file
> >  http://pilat.free.fr/english/svgdraw/index.htm
> >  In french
> >  http://pilat.free.fr/svgdraw/index.htm
> >
> >  If you want more, make propositions for next version
> >
> >  Michel
> >
> >
> >
> >
> >
> >
> >  -
> >  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, send an email to:
> > [EMAIL PROTECTED]
> >  
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service.





-
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, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/