<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1011893" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1011893</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/change-layer-text-across-frames#comment-1068521</link>
    <description> &lt;p&gt;Hi Rage,&lt;/p&gt;
&lt;p&gt;  Good idea, but maybe you should start a new thread for your next question.  &lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
 </description>
     <pubDate>Mon, 31 Jul 2000 01:21:17 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1068521 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/change-layer-text-across-frames#comment-1068509</link>
    <description> &lt;p&gt;woah! i definatly need to research that more. i will take a loot at your site some more and check it out and get the internet for more example, then try to more my own. i&#039;m starting to love javascript more &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 30 Jul 2000 22:11:56 +0000</pubDate>
 <dc:creator>Rageforth</dc:creator>
 <guid isPermaLink="false">comment 1068509 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/change-layer-text-across-frames#comment-1068474</link>
    <description> &lt;p&gt;Hi Rage,&lt;/p&gt;
&lt;p&gt;  case is part of the switch statement. If you check out the Arguments Object script at my site, you&#039;ll see an example.&lt;br /&gt;
  Essentially, it works like a series of if/elses with some special frills.&lt;/p&gt;
&lt;p&gt;function area()&lt;br /&gt;
{&lt;br /&gt;
  var area;&lt;br /&gt;
  switch(arguments.length)&lt;br /&gt;
  {&lt;br /&gt;
   case 3:&lt;br /&gt;
     area = arguments[1] * arguments[2];&lt;br /&gt;
     break;&lt;br /&gt;
   case 2:&lt;br /&gt;
      switch (arguments[0])&lt;br /&gt;
      {&lt;br /&gt;
        case &#039;c&#039;:              //circle&lt;br /&gt;
           area = arguments[1] * arguments[1] * 3.14;&lt;br /&gt;
           break;&lt;br /&gt;
       case &#039;s&#039;:               // square&lt;br /&gt;
           area = arguments[1] * arguments[1];&lt;br /&gt;
           break;&lt;br /&gt;
     }&lt;br /&gt;
   case 1:                // assume a square&lt;br /&gt;
      area = arguments[1] * arguments[1];&lt;br /&gt;
      break;&lt;br /&gt;
   default:&lt;br /&gt;
  }&lt;br /&gt;
  return (area);&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;The above can be called as follows:&lt;br /&gt;
x = area(&#039;r&#039;,2,4);&lt;br /&gt;
x = area(&#039;s&#039;,2);&lt;br /&gt;
x = area(&#039;c&#039;,2);&lt;br /&gt;
x = area(2);&lt;/p&gt;
&lt;p&gt;The main &#039;frill&#039; occurs if you leave out the &#039;break&#039; statement -- the code will go to the first case that evaluates as true, process the statements and then each and every case&#039;s statements below it.  This comes in extremely handy in some situations -- the trick though is in arranging the cases so that the falling is accumulative and not destructive.&lt;/p&gt;
&lt;p&gt;Hope this helps some.  I&#039;m off to slumberland.&lt;br /&gt;
Vinny&lt;/p&gt;
 </description>
     <pubDate>Sun, 30 Jul 2000 05:38:07 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1068474 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/change-layer-text-across-frames#comment-1068430</link>
    <description> &lt;p&gt;if i get annoying asking all these question just stop replying. replying only encourages me to learn and ask more questions &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;br /&gt;
two more questions: case and break&lt;br /&gt;
i sometimes look at someone elses javascript and that have something that says case 1, case 2, etc. what is that? is that kinda like a variable? if so why not just write it as name = blah blah ?&lt;br /&gt;
i also see break a lot. i am guess that that is kinda like an end tag. break means quit or end a certain thing right?&lt;/p&gt;
 </description>
     <pubDate>Sat, 29 Jul 2000 15:17:33 +0000</pubDate>
 <dc:creator>Rageforth</dc:creator>
 <guid isPermaLink="false">comment 1068430 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/change-layer-text-across-frames#comment-1068422</link>
    <description> &lt;p&gt;Hi Rage,&lt;/p&gt;
&lt;p&gt;  The only time you might use it is if you are creating a complete html document from scratch.  So, no you don&#039;t need to use it.&lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
 </description>
     <pubDate>Sat, 29 Jul 2000 12:40:44 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1068422 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/change-layer-text-across-frames#comment-1068417</link>
    <description> &lt;p&gt;I just realized that we are having out own little conversation here &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;If I never used document.writeIn for anything would I notice? I mean can I get away without it 100% of the time and be ok or do I need to try making myself a couple little tests using writeIn?&lt;/p&gt;
 </description>
     <pubDate>Sat, 29 Jul 2000 03:52:59 +0000</pubDate>
 <dc:creator>Rageforth</dc:creator>
 <guid isPermaLink="false">comment 1068417 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/change-layer-text-across-frames#comment-1068416</link>
    <description> &lt;p&gt;Hi Rage,&lt;/p&gt;
&lt;p&gt;  document.writeln() is supposed to add a newline character (sort of like a ) into your code.  So, you should not use writeln unless the parameter within the parenthesis is a complete statement.&lt;/p&gt;
&lt;p&gt;  false is false (0); true is true (1); null is nothing. In C, it has a definite value.  I&#039;m not sure about javascript -- it tends to be used a lot as an empty string. void is closer to null than false is.  &lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
 </description>
     <pubDate>Sat, 29 Jul 2000 03:42:36 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1068416 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/change-layer-text-across-frames#comment-1068412</link>
    <description> &lt;p&gt;I am willing to learn if you are willing to teach. The only kind of people that I do not want to learn from or be around are the people that know more than I do and act better than me because they know it and I don&#039;t yet. You don&#039;t seem like kind of person. If you ever need help with graphics, I can help as much as I can. I know all kinds of stuff about Illustrator and Photoshop.&lt;br /&gt;
Until that time, my only other questions are what is the different between document.write and document.writein and what is the difference between null and return false? They seem to do the same thing as the other.&lt;/p&gt;
 </description>
     <pubDate>Sat, 29 Jul 2000 03:24:55 +0000</pubDate>
 <dc:creator>Rageforth</dc:creator>
 <guid isPermaLink="false">comment 1068412 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/change-layer-text-across-frames#comment-1068409</link>
    <description> &lt;p&gt;Hi Rage,&lt;/p&gt;
&lt;p&gt;  Shoot I&#039;ve got problems tying my shoelaces some mornings.&lt;br /&gt;
Come by often; if I can, I&#039;ll help out. The only thing I&#039;m not wild about doing is solving script conflicts for people who refuse to learn. About the only thing I can&#039;t do is graphics.&lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
 </description>
     <pubDate>Sat, 29 Jul 2000 03:08:07 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1068409 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/change-layer-text-across-frames#comment-1068407</link>
    <description> &lt;p&gt;I use to have the book Javascript: The Definitive Guide but it got stolen the second day I got it &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt; I guess I need to get it again. I am on a roll. I recently learned JavaScript (not a master yet but working on it) and I recently learned Flash. I use a lot of JavaScript syntax in ActionScript as well as Lingo. Once I got the basics of JavaScript (what this means and what that means) then a lot of things have come together pretty good. I probably don&#039;t know as much as you do but I will eventually get there. I am very persistant and I love to learn. We will meet again. I will always have a problem that I have worked on for so long and still can&#039;t figure out &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 29 Jul 2000 02:55:36 +0000</pubDate>
 <dc:creator>Rageforth</dc:creator>
 <guid isPermaLink="false">comment 1068407 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
