<HTML><BODY STYLE="font:10pt verdana; border:none;"><DIV>Yes you can.</DIV> <DIV>it is very common to use array in linear way</DIV> <DIV>x = new array(25, 18,12,8,5,2, 120,100,80,39,400,420....)</DIV> <DIV>y = new array(....................some array values...........)</DIV> <DIV><BR>&nbsp;</DIV> <DIV><BR></DIV> <BLOCKQUOTE style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px"> <DIV style="FONT: 10pt Arial">----- Original Message -----</DIV> <DIV style="BACKGROUND: #e4e4e4; FONT: 10pt Arial; FONT-COLOR: black"><B>From:</B>&nbsp;TomMallard</DIV> <DIV style="FONT: 10pt Arial"><B>Sent:</B>&nbsp;Thursday, April 05, 2001 10:57 PM</DIV> <DIV style="FONT: 10pt Arial"><B>To:</B>&nbsp;javascript@LaTech.edu</DIV> <DIV style="FONT: 10pt Arial"><B>Subject:</B>&nbsp;Re: [Javascript] Passing data</DIV> <DIV><BR></DIV>This is a backend question...you'll need to read the file and build the<BR>array there as a web service or save a file with it for static data. A<BR>webservice can be wrapped around the array builder function to make the data<BR>available to the client page as a stream. It's worth it for so much data for<BR>web applications to reduce the over-the-wire size, so keep working on this.<BR><BR>Most services are coded as dll's or cgi's and have url's like<BR>http://www.domain.com/some.dll?methodName. Then on your client you set a<BR>javascript variable equal to this address to populate it. Also consider an<BR>xml file be created on the server and then an xmldom.open can create it on<BR>the client to use it in a similar way...<BR><BR>tom<BR>----- Original Message -----<BR>From: "Steve White" &lt;steve@VirtualMechanics.com&gt;<BR>To: &lt;javascript@LaTech.edu&gt;<BR>Sent: Thursday, April 05, 2001 1:33 PM<BR>Subject: RE: [Javascript] Passing data<BR><BR><BR>&gt; Thanks, I will take a look at it.<BR>&gt;<BR>&gt; I understand the security problem which is why I was asking if JS has a<BR>file<BR>&gt; read operation. As it is I am simply looking for a way to pass data in<BR>more<BR>&gt; more compact form than a long ASCII list of array assignments. Instead of<BR>&gt;<BR>&gt; array[0].x = 22;<BR>&gt; array[0].y = 12;<BR>&gt; array[1].x = 10;<BR>&gt; array[1].y = 5;<BR>&gt; array[2].x = 200;<BR>&gt; array[2].y = 120;<BR>&gt; ..... and so on for 1 or 2 meg<BR>&gt;<BR>&gt; or can I find a way to do:<BR>&gt; 22,12 10,5 200,120 ...and so on for 1 or 200k and then parse it after the<BR>&gt; onload event. ( better still as a binary stream)<BR>&gt;<BR>&gt; Thanks<BR>&gt;<BR>&gt; Steve White<BR>&gt; www.VirtualMechanics.com<BR>&gt; www.DHTMLMagic.com<BR>&gt; www.SVGMagic.com<BR>&gt; www.IMSWebTips.com<BR>&gt;<BR>&gt;<BR>&gt; -----Original Message-----<BR>&gt; From: javascript-admin@LaTech.edu [mailto:javascript-admin@LaTech.edu]On<BR>&gt; Behalf Of BEKIM BACAJ<BR>&gt; Sent: Wednesday, April 04, 2001 8:28 PM<BR>&gt; To: javascript@LaTech.edu<BR>&gt; Subject: Re: [Javascript] Passing data<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp; THis is what I assked you to be more precize for.<BR>&gt;&nbsp;&nbsp; Because if I understod well, You wan't datda to be read from another<BR>file<BR>&gt; and to be displayed on youre current page. That is my friend a security<BR>&gt; problem that has been very well solved and currently is unbreakable unles<BR>&gt; you use some ASP activity, and even some remote Db that is safe. You can't<BR>&gt; brake the security protocol.<BR>&gt;&nbsp;&nbsp; I have had the same problem and it took me a whole month to find some<BR>way<BR>&gt; to display newr data in the current window withour having to refresh or<BR>&gt; reload the page, correction: moving to another page. The problem was how<BR>to<BR>&gt; read the data (content) of some &lt;DIV&gt; or &lt;LAYER&gt; object into this page<BR>from<BR>&gt; another separate file, and pass it as innerText for instance. There is no<BR>&gt; simple solution, or no solution at all. But there is a simple work-around.<BR>&gt;&nbsp;&nbsp; Pease visit the link above<BR>&gt;&nbsp;&nbsp; http://www.dardaniaonline.com/members/trojani2000/<BR>&gt;&nbsp;&nbsp; You will find a simple Test of dinamicity. And how i solved this problem<BR>&gt; for IE. /it has a little bug but it works after the second click/<BR>&gt;&nbsp;&nbsp; After you view the page go in you're tempIntFolder and find JavaSripts<BR>&gt; asociated you have the names in the bottom of the referencial<BR>&gt;&nbsp;&nbsp; script tags in the page.<BR>&gt;&nbsp;&nbsp; &lt;script language="JavaScript" id=Fili src=""&gt; !<BR>&gt;&nbsp;&nbsp; &lt;/script&gt;<BR>&gt;&nbsp;&nbsp; &lt;script src="anima.js"&gt;&lt;/script&gt;<BR>&gt;&nbsp;&nbsp; &lt;script src="paleta.js"&gt;&lt;/script&gt;<BR>&gt;&nbsp;&nbsp; &lt;script src="pullat.js"&gt;&lt;/script&gt;<BR>&gt;&nbsp;&nbsp; &lt;script src="dinamika.js"&gt;&lt;/script&gt;<BR>&gt;&nbsp;&nbsp; &lt;script src="lokatori.js"&gt;&lt;/script&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; !<BR>&gt;&nbsp;&nbsp; And also the text files named Fajlli.txt with prefix 1, 2, 3, if you try<BR>&gt; to find them with Find files and folders plese specify for example<BR>&gt;&nbsp;&nbsp; anima[1].js or for the text file 1Fajlli[1].txt; That are written and<BR>&gt; named like JS strings.<BR>&gt;&nbsp;&nbsp; And if you have any further question, ask!<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; ----- Original Message -----<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; From: Steve White<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Sent: Wednesday, April 04, 2001 7:31 AM<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; To: javascript@LaTech.edu<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Subject: RE: [Javascript] Passing data<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt; The problem to know what is you're aim here What do you wan't to do<BR>&gt; exactly?<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Its graphics and animation data to be used with JavaScript functions<BR>&gt; that drive DHTM and SVG (Scalable Vector Graphics). It is probably a lot<BR>&gt; like Flash and we will output to that as well but I assume Flash uses its<BR>&gt; own encoding/decoding format. There is really no limit to how much data<BR>you<BR>&gt; could have so compacting it as much as possible is important. At this<BR>point<BR>&gt; we don't want to get into streaming but I suppose there is no reason why<BR>the<BR>&gt; data could not be sent in packets. At the moment just putting it into a<BR>file<BR>&gt; (could even be in the HTML or SVG file if that makes sense) and then using<BR>a<BR>&gt; standard JavaScript operation to read it. Decoding or parsing should not<BR>be<BR>&gt; a problem for us if we can find and read it.<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Thanks<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Steve White<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; www.VirtualMechanics.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; www.DHTMLMagic.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; www.SVGMagic.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; www.IMSWebTips.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -----Original Message-----<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; From: javascript-admin@LaTech.edu<BR>&gt; [mailto:javascript-admin@LaTech.edu]On Behalf Of BEKIM BACAJ<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sent: Tuesday, April 03, 2001 5:58 PM<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; To: javascript@LaTech.edu<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Subject: Re: [Javascript] Passing data<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Hi, Steve!<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; The problem to know what is you're aim here<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; What do you wan't to do exactly?<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Yes you can put anything in a .txt file. But how do you load it, and<BR>&gt; what type of data do you need.<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; JS has a FileSysObject that can read files, and also write to files.<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; The split is a command used in strings, why do you need it for?<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Be more specific!<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Regards<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ----- Original Message -----<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; From: Steve White<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sent: Tuesday, April 03, 2001 11:37 PM<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; To: javascript@LaTech.edu<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Subject: RE: [Javascript] Passing data<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I am not familiar with Split() but I assume that it is some type<BR>of<BR>&gt; string<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; parser. If so the problem I am trying to figure out is how do I<BR>pass<BR>&gt; the<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data? If I have a SCRIPT in a HTML file how do I include the code<BR>or<BR>&gt; can I<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; just put it in a .txt file and read it. Does js even have a Read<BR>&gt; File<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; operation?<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I need to get a good reference book.<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Thanks<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Steve White<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; www.VirtualMechanics.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; www.DHTMLMagic.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; www.SVGMagic.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; www.IMSWebTips.com<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -----Original Message-----<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; From: javascript-admin@LaTech.edu<BR>&gt; [mailto:javascript-admin@LaTech.edu]On<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Behalf Of TomMallard<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sent: Tuesday, April 03, 2001 2:23 PM<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; To: javascript@LaTech.edu<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Subject: Re: [Javascript] Passing data<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If you used ASCII and kept your key=value pairs it would make<BR>&gt; parsing it out<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; on the client pretty simple with split().<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Just a thought,<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tom<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ----- Original Message -----<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; From: "Ian Turner" &lt;ian.turner@romseyassoc.com&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; To: &lt;javascript@LaTech.edu&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sent: Tuesday, April 03, 2001 9:26 AM<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Subject: RE: [Javascript] Passing data<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Certainly the latter is possible. Though your parsing routine<BR>&gt; might be<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; complex and therefore large in its own right.<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; It could be done as a server side include file or by putting a<BR>&gt; string into<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; the HTML file.<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; All the best<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Ian<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; -----Original Message-----<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; From: javascript-admin@LaTech.edu<BR>&gt; [mailto:javascript-admin@LaTech.edu]On<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Behalf Of Steve White<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Sent: 03 April 2001 16:47<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; To: javascript@LaTech.edu<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Subject: [Javascript] Passing data<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; We generate large graphic data structures to be processed by our<BR>&gt; included<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; js<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; code. I would like to reduce the size of the data as much as<BR>&gt; possible.<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Instead of passing the data as variable assignments it would be<BR>&gt; better to<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; pass it as binary or if that is not possible at least as a<BR>&gt; sequence of<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ASCII<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; values. So instead of:<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][0].dis=0;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][0].cout=43431132;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][0].rgb1=33593818;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][0].rgb2=10066329;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][0].lwid=0;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][1] = new Array();<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][1].sclx=1.00;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][1].scly=1.00;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][1].rot=-91.00;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][1].tim=363;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][1].dis=238;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Mctl[2][1].cout=43431132;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; I could do something like:<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; 0,<BR>43431132,33593818,10066329,0,1.00,1.00,91.00,363,238,43431132;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Can JavaScript be used to read an attached binary or ASCII file?<BR>&gt; Or could<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; it<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; be included within the SVG/HTML document as a huge string and<BR>then<BR>&gt; parsed<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; following the onload event?<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Thanks<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Steve White<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; www.VirtualMechanics.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; www.DHTMLMagic.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; www.SVGMagic.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; www.IMSWebTips.com<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; _______________________________________________<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Javascript mailing list<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Javascript@LaTech.edu<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; http://www.LaTech.edu/mailman/listinfo/javascript<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; _______________________________________________<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Javascript mailing list<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; Javascript@LaTech.edu<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt; http://www.LaTech.edu/mailman/listinfo/javascript<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; _______________________________________________<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Javascript mailing list<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Javascript@LaTech.edu<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; http://www.LaTech.edu/mailman/listinfo/javascript<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; _______________________________________________<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Javascript mailing list<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Javascript@LaTech.edu<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; http://www.LaTech.edu/mailman/listinfo/javascript<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; --------------------------------------------------------------------------<BR>--<BR>&gt; --<BR>&gt;&nbsp;&nbsp; Get Your Private, Free E-mail from MSN Hotmail at<BR>http://www.hotmail.com.<BR>&gt;<BR>&gt;<BR>&gt;<BR><BR><BR>_______________________________________________<BR>Javascript mailing list<BR>Javascript@LaTech.edu<BR>http://www.LaTech.edu/mailman/listinfo/javascript<BR> <DIV></DIV></BLOCKQUOTE></BODY></HTML><DIV><BR><br clear=all><hr>Get Your Private, Free E-mail from MSN Hotmail at <a href="http://www.hotmail.com">http://www.hotmail.com</a>.<br></p></DIV>