[svg-developers] UK critical threat level: SVG drone over London?

2006-08-10 Thread Jonathan Chetwynd
it's amazing what an email can do.

full story:

http://news.bbc.co.uk/2/hi/uk_news/4778575.stm

cheers

Jonathan Chetwynd



On 8 Aug 2006, at 22:44, Jonathan Chetwynd wrote:

SVG drone over London?

http://www.isoma.net/games/GogglesBeta09.swf

do we have such a thing?

cheers

Jonathan Chetwynd






-
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] sudden JS errors (???)

2006-08-10 Thread skrellkolja
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 expected 
and it seems like mouseevents are causing errors.
What is even more frustrating is that suddenly IE has stopped telling 
what type of error that occurs and on what line. I just get prompt 
with Object doesn't support this porperty or method or simliar.

Need help! Thanks! :)

Stian





-
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: set attributeName to group?

2006-08-10 Thread zedkineece
For some reason, when I tried the javascript method, I could only 
get some of the functionality. I couln't figure out why. For 
instance, I could get mouseover but not clicks. Then when I removed 
mouseovers, clicks worked. No script errors.

Hmm.
--- In svg-developers@yahoogroups.com, ddailey [EMAIL PROTECTED] wrote:

 If I understand what you are trying to do you can also do 
something like 
 this
 
 g id=Q fill=red
 rect x=0 y=0 height=30 width=30 fill=inherit/
 rect x=40 y=0 height=30 width=30 fill=inherit/
 /g
 
 then later on, with JavaScript, you can say something like
 SVGDocument.getElementById(Q).setAttribute(fill, green)
 --or to be more namespace aware, --
 SVGDocument.getElementById(Q).setAttributeNS
(null,fill, green)
 --
 to dynamically change the fill values of all objects in the g
 
 The 'inherit' value takes its cue from the container (g or 
use, I think)
 that it is in.
 
 There have been times when I wished one could send multiple values 
through 
 this way (like fill1=green and fill2=red) that could be 
plopped into 
 inheriting elements in the order they are encountered, but I 
suppose that's 
 what scripting is for.
 
 cheers,
 David
 
 - Original Message - 
 From: zedkineece [EMAIL PROTECTED]
 To: svg-developers@yahoogroups.com
 Sent: Wednesday, August 09, 2006 12:29 PM
 Subject: [svg-developers] set attributeName to group?
 
 
 I am new to SVG, and would like to know if there is a way similar 
to
  set attributeName to a group of paths. I am playing around with
  highilighting paths on a schematic, and I can do it for 
individual
  paths, but haven't got it working for an entire group. Could 
someone
  point me in the right direction?
 
 
 
 
 
 
  -
  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/
 




[svg-developers] Base64 encoded Gif in Firefox and IE

2006-08-10 Thread Kris Berckmans
Hello

I need to load base64 encoded gif images into an html embedded SVG.
I am now trying out to correctly display an svg with base64 encoded gif 
into firefox , IE and Opera.
When i load the attached svg into opera, it is correctly displayed but 
in firefox and IE i see nothing.
When i replace the base64 string with a url to a gif image, it works in 
all 3 browsers.
Is this a known problem. Does anyone know a sollution?
Thanks

Greetings.


Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm



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




[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 
expected 
 and it seems like mouseevents are causing errors.
 What is even more frustrating is that suddenly IE has stopped 
telling 
 what type of error that occurs and on what line. I just get prompt 
 with Object doesn't support this porperty or method or simliar.
 
 Need help! Thanks! :)
 
 Stian








-
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] Base64 encoded Gif in Firefox and IE

2006-08-10 Thread Phi Tran
Hello Kris. FYI

I only can provide you the info on my strong background that I have tempered
a lot with Data Protocol. It then includes the base64 data protocol.

- FF know nothing about the data base64 format but the front-end Data
protocol module (a .SO in Linux or DLL in Windows In the Mozilla build tree
it is at /mozilla/netwerk/protocol/data/src directory). Unfortunately the
module (the source code) does not do the work of checking MIME type. Just an
educated guess: Please check the format of of your data base64 protocol. It
should works on small base64 string (2000?).

-ASV:in IE:  Internally ASV did pass the call to windows system DLL.It does
not does not support base64 data format.unless ASV support base64 format - I
doubt?.

However there is a work around using Pluggable Data Protocol. You can
download and from.
http://www.codeproject.com/internet/DataProtocol.asp?print=true. It should
work on small base64 string (about 2000 byte) It also does not check MIME
type. But you can do by working on its source code. (it's small).

- Opera. I have no clue how it handle base64 data protocol- It is a close
system. Not as open as FF and IE.


Hope this helps


On 8/10/06, Kris Berckmans [EMAIL PROTECTED] wrote:

Hello

 I need to load base64 encoded gif images into an html embedded SVG.
 I am now trying out to correctly display an svg with base64 encoded gif
 into firefox , IE and Opera.
 When i load the attached svg into opera, it is correctly displayed but
 in firefox and IE i see nothing.
 When i replace the base64 string with a url to a gif image, it works in
 all 3 browsers.
 Is this a known problem. Does anyone know a sollution?
 Thanks

 Greetings.

 Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm

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

  




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

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