[svg-developers] Re: FF equiv of top

2006-07-10 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, "Sayed Arian Kooshesh"
<[EMAIL PROTECTED]> wrote:
>
> With i.e. you use top to get to the browser. How do you do similarly
in FF?

If you have an SVG document embedded in a HTML document with the embed
element or the object element or the iframe element then with both IE
and Firefox
  parent
in Script in the SVG document gives you the parent window (or frame)
the HTML document sits in.
On the other hand
  top
is useful with framesets/frames to take you to the top most window
with deeply nested frames.

Only Adobe SVG viewer 6 preview has a bug where you need to use top
instead of parent. But with the release version 3 of Adobe viewer
parent works fine.







 Yahoo! Groups Sponsor ~--> 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/1U_rlB/TM
~-> 

-
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: JavaScript Over SVG in FF1.5

2006-07-10 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, "Fernando Kogik"
<[EMAIL PROTECTED]> wrote:

> What I have is this: i have an svg image with no 

[svg-developers] passing params to SVG

2006-07-10 Thread Guy Morton
Hi all

Someone must have encountered this before (I hope so anyway).

I'm trying to pass parameters to an SVG app. I can do this using URLs  
(eg /my.svg?param1=1¶m2=2) and this works fine, until you hit the  
IE 5.5 bug talked about as bug 3a on this page: http:// 
www.swiftview.com/tech/tests/ie_bugs.htm. In IE 5.5, as soon as my  
query string gets longer than about 20 characters, the activeX  
control fails to start. This is extremely irritating, as this  
approach is otherwise successful in every platform and browser we've  
tested.

So, I'm now trying to figure out a workaround.

How successful have people been getting browser<->plugin  
communication working with SVG? Could someone please point me in the  
direction of any good resources and info about this?

Guy




 Yahoo! Groups Sponsor ~--> 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/1U_rlB/TM
~-> 

-
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: Notify

2006-07-10 Thread thomas . deweese

Bad Gateway: The message has been attached.




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



 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/1U_rlB/TM
~-> 

-
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: Need for SVG Transport

2006-07-10 Thread Doug Schepers
Hi, Francis-

This is very simple, as John indicated.  You simply serialize (using
printNode in ASV, otherwise using XMLSerializer()) the node you are looking
for, which will probably be the SVG root, or some select portion thereof,
and then send it up to the server to be rasterized with Batik or the like.
You can either deliver it via email, or provide a web location that the user
can print out. 

Some UAs will let you print SVG very nicely, without the need for this extra
step, and I imagine this functionality will only improve in the near future.

Regards-
Doug

[EMAIL PROTECTED]
www.vectoreal.com ...for scalable solutions.
 

jophof007 wrote:
| 
| Hi,
| 
| If you are running in a browser you can got to the DOM tree of an
| element and can convert DOM to svg automaticly (by means of small
| javascript routine scanning the DOM tree) and save it or send 
| it by email.
| If the display is not SVG it will be harder to do.
| 
| John Ophof
| http://open-modeling.sourceforge.net
| 
| --- In svg-developers@yahoogroups.com, "Francis Hemsher"
| <[EMAIL PROTECTED]> wrote:
| >
| > There is a  need to transport SVG displays: for print or email.
| > Anyone who has the talent to take a 'snapshot' of a dynamic 
| display of 
| > the SVG image and package it for transport for both 
| printing and email 
| > will be much appreciated.
| > Thanks,
| > Francis
| > P.S. Phi, do you understand?
| >



-
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] passing params to SVG

2006-07-10 Thread Phi Tran
I have worked with the way IE handle protocol. This what I found it:

1-URL length is limited to about 1024 char not 20s;

2-Before pass the URL's string to An app. (Custom protocol in my case.) IE
often (but not always) 'escape' with some weird formula such as & for an
"&" or even &&. specially when you are using XMLHTTP. I don't know how
to fix In your case  but I believe that what happened as it does to me,

Recommendation: Not using '&', 'space', '<'; '>'; in your URL.

Or you can put your param1, param2 inside your SVG such as


SVG player will ignore it anyway but you can retrieve it from the XML DOM

Hope this will help you a little.

Thanks

Phi


On 7/10/06, Guy Morton <[EMAIL PROTECTED]> wrote:
>
>   Hi all
>
> Someone must have encountered this before (I hope so anyway).
>
> I'm trying to pass parameters to an SVG app. I can do this using URLs
> (eg /my.svg?param1=1¶m2=2) and this works fine, until you hit the
> IE 5.5 bug talked about as bug 3a on this page: http://
> www.swiftview.com/tech/tests/ie_bugs.htm. In IE 5.5, as soon as my
> query string gets longer than about 20 characters, the activeX
> control fails to start. This is extremely irritating, as this
> approach is otherwise successful in every platform and browser we've
> tested.
>
> So, I'm now trying to figure out a workaround.
>
> How successful have people been getting browser<->plugin
> communication working with SVG? Could someone please point me in the
> direction of any good resources and info about this?
>
> Guy
>
>  
>



-- 
Phi - Tran
Hugely increase your speed, saving your band-width with ZipProtocol
plus crystal clear SVG Rendering image at
HTTP://oneplusplus.com


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



 Yahoo! Groups Sponsor ~--> 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/1U_rlB/TM
~-> 

-
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] passing params to SVG

2006-07-10 Thread guy
can you use params inside an embed? I've not had any luck using object - it
seems to fail in the cases that I thought it ought to work in, so I 
gave up and
just use embed now.

Guy

Quoting Phi Tran <[EMAIL PROTECTED]>:

> I have worked with the way IE handle protocol. This what I found it:
>
> 1-URL length is limited to about 1024 char not 20s;
>
> 2-Before pass the URL's string to An app. (Custom protocol in my case.) IE
> often (but not always) 'escape' with some weird formula such as & for an
> "&" or even &&. specially when you are using XMLHTTP. I don't know how
> to fix In your case  but I believe that what happened as it does to me,
>
> Recommendation: Not using '&', 'space', '<'; '>'; in your URL.
>
> Or you can put your param1, param2 inside your SVG such as
> 
> 
> SVG player will ignore it anyway but you can retrieve it from the XML DOM
>
> Hope this will help you a little.
>
> Thanks
>
> Phi
>
>
> On 7/10/06, Guy Morton <[EMAIL PROTECTED]> wrote:
>>
>>   Hi all
>>
>> Someone must have encountered this before (I hope so anyway).
>>
>> I'm trying to pass parameters to an SVG app. I can do this using URLs
>> (eg /my.svg?param1=1¶m2=2) and this works fine, until you hit the
>> IE 5.5 bug talked about as bug 3a on this page: http://
>> www.swiftview.com/tech/tests/ie_bugs.htm. In IE 5.5, as soon as my
>> query string gets longer than about 20 characters, the activeX
>> control fails to start. This is extremely irritating, as this
>> approach is otherwise successful in every platform and browser we've
>> tested.
>>
>> So, I'm now trying to figure out a workaround.
>>
>> How successful have people been getting browser<->plugin
>> communication working with SVG? Could someone please point me in the
>> direction of any good resources and info about this?
>>
>> Guy
>>
>>
>>
>
>
>
> --
> Phi - Tran
> Hugely increase your speed, saving your band-width with ZipProtocol
> plus crystal clear SVG Rendering image at
> HTTP://oneplusplus.com
>
>
> [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
>
>
>
>
>
>
>
>





 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/1U_rlB/TM
~-> 

-
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/