<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1002789" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1002789</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/mouse-over-status-bar#comment-1012270</link>
    <description> &lt;p&gt;You could have everythibg pop up in the SAME pop up window as that would not be so distracting...&lt;br /&gt;
JP&lt;/p&gt;
 </description>
     <pubDate>Wed, 12 Jan 2000 11:22:00 +0000</pubDate>
 <dc:creator>JP Stones</dc:creator>
 <guid isPermaLink="false">comment 1012270 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/mouse-over-status-bar#comment-1012269</link>
    <description> &lt;p&gt;Hmmm...yes it is giving me problems when I add more links.....may have to think awhile on this...&lt;/p&gt;
&lt;p&gt;You know you may be better off going with two frames and onmouseover to document.write in the smaller frame.&lt;/p&gt;
&lt;p&gt;You could set up the page like this&lt;/p&gt;
&lt;p&gt; ____________________&lt;br /&gt;
|                    |&lt;br /&gt;
|                    |&lt;br /&gt;
| Frame 1            |&lt;br /&gt;
|                    |&lt;br /&gt;
|                    |&lt;br /&gt;
|                    |&lt;br /&gt;
|                    |&lt;br /&gt;
|--------------------|&lt;br /&gt;
| Frame 2            |&lt;br /&gt;
|--------------------|&lt;/p&gt;
&lt;p&gt;then you could document.write your text in frame 2 when you had a mouseover in frame 1&lt;/p&gt;
&lt;p&gt;*shrug*&lt;/p&gt;
 </description>
     <pubDate>Mon, 10 Jan 2000 20:01:00 +0000</pubDate>
 <dc:creator>RC</dc:creator>
 <guid isPermaLink="false">comment 1012269 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/mouse-over-status-bar#comment-1012268</link>
    <description> &lt;p&gt;Hi Rose,&lt;/p&gt;
&lt;p&gt;   If it legalgoop and you don&#039;t want to annoy people who already know the term, use named anchors. You can put all of your definitions on a separate page (along with a go-back named anchor).  I think off-page anchors would be better than textboxes or layers, because they keep page size down and user interaction to a minimum (if you use layers, the user would have to click them off)&lt;/p&gt;
&lt;p&gt;Vinny &lt;a href=&quot;http://members.aol.com/grassblad&quot; class=&quot;bb-url&quot;&gt;http://members.aol.com/grassblad&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;------------------&lt;/p&gt;
 </description>
     <pubDate>Mon, 10 Jan 2000 19:28:00 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1012268 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/mouse-over-status-bar#comment-1012265</link>
    <description> &lt;p&gt;This should solve your problem. &lt;/p&gt;
&lt;p&gt;Normally, status scrolling scripts are executed with onload so that they go when the page loads. To simply solve your problem you could just call the scrolling script with onmouseover (ie onmouseover=&quot;scrolling() )You wouldn&#039;t even have to do anything else.&lt;/p&gt;
&lt;p&gt;BUT&lt;/p&gt;
&lt;p&gt;For some reason scrolling scripts stick around even if you onmouseout=&quot;window.status=&#039;&#039;&quot; so I wrote this little thing. You will have to enter the text you want scrolling in two places. anyways, check it out and let me know if you have any questions&lt;/p&gt;
&lt;p&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;script language=&quot;JavaScript&quot;&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
//&lt;br /&gt;
var statBarMsg = &quot; Blah Blah Blah Blah Blah Blah &quot; ;&lt;/p&gt;
&lt;p&gt;function startStatusScroller() {&lt;br /&gt;
    window.status = statBarMsg;&lt;br /&gt;
    statBarMsg = statBarMsg.substring(1, statBarMsg.length) + statBarMsg.substring(0, 1)&lt;br /&gt;
    setTimeout(&quot;startStatusScroller()&quot;, 150)&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;function endStatusScroller() {&lt;br /&gt;
    statBarMsg = &#039;&#039;&lt;br /&gt;
}	&lt;/p&gt;
&lt;p&gt;function resetStatusScroller() {&lt;br /&gt;
    statBarMsg = &quot; Blah Blah Blah Blah Blah Blah &quot; ;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;//--&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;A HREF=&quot;apage.htm&quot; onMouseOver=&quot;resetStatusScroller();startStatusScroller();return true&quot; onMouseOut=&quot;endStatusScroller();return true&quot;&amp;gt;text link&amp;lt;/A&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 10 Jan 2000 16:47:00 +0000</pubDate>
 <dc:creator>RC</dc:creator>
 <guid isPermaLink="false">comment 1012265 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/mouse-over-status-bar#comment-1012264</link>
    <description> &lt;p&gt;Had the text in the status bar figured out until I came across some text that wouldn&#039;t fit.  I&#039;ve also come across scrolling text in the status bar, but not a mouse over function.  I need one that does both.  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/biggrin.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 10 Jan 2000 15:41:00 +0000</pubDate>
 <dc:creator>Rose Byma</dc:creator>
 <guid isPermaLink="false">comment 1012264 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/mouse-over-status-bar#comment-1012267</link>
    <description> &lt;p&gt;RC, The code you provided will only work for one definition to be scrolled in the status bar.&lt;/p&gt;
&lt;p&gt;My problem is that the document I&#039;m working on is of a legal nature and has multiple definitions through out the document.  Because of this, I didn&#039;t want to use pop-up boxes as it could become very distracting.  but so far I haven&#039;t been able to find any thing else that would work.  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/frown.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 10 Jan 2000 05:50:00 +0000</pubDate>
 <dc:creator>Rose Byma</dc:creator>
 <guid isPermaLink="false">comment 1012267 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/mouse-over-status-bar#comment-1012266</link>
    <description> &lt;p&gt;Thanks RC, I&#039;ll give it a try.  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 10 Jan 2000 05:00:00 +0000</pubDate>
 <dc:creator>Rose Byma</dc:creator>
 <guid isPermaLink="false">comment 1012266 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/mouse-over-status-bar#comment-1012263</link>
    <description> &lt;p&gt;You can use a text box or text area as well. I&#039;m not sure if a scroller is feasible for a mouseover type script, but might be better suited for an onClick event.&lt;/p&gt;
&lt;p&gt;I was thinking you had this solved from your last post at the JSC forum? Did it not work?  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/confused.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
John Pollock&lt;br /&gt;
 &lt;a href=&quot;http://www.pageresource.com&quot; class=&quot;bb-url&quot;&gt;http://www.pageresource.com&lt;/a&gt;&lt;br /&gt;
 &lt;a href=&quot;http://www.javascriptcity.com&quot; class=&quot;bb-url&quot;&gt;http://www.javascriptcity.com&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 08 Jan 2000 05:45:00 +0000</pubDate>
 <dc:creator>John Pollock</dc:creator>
 <guid isPermaLink="false">comment 1012263 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/mouse-over-status-bar#comment-1012262</link>
    <description> &lt;p&gt;Your best bet would be to place the text somewhere other then the status bar.&lt;/p&gt;
&lt;p&gt;You can use JavaScript to have an image with the text appear or you could use DHTML and have a layer pop-up. You can also use ALT tags, which sort of have the same effect if the link is an image.&lt;/p&gt;
&lt;p&gt;Check out &lt;a href=&quot;http://www.dynamicdrive.com&quot; class=&quot;bb-url&quot;&gt;www.dynamicdrive.com&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
Adam&lt;br /&gt;
AIS Internet Solutions&lt;br /&gt;
 &lt;a href=&quot;mailto:adam@aisinternet.com&quot; class=&quot;bb-email&quot;&gt;adam@aisinternet.com&lt;/a&gt;&lt;br /&gt;
 &lt;a href=&quot;http://www.aisinternet.com&quot; class=&quot;bb-url&quot;&gt;www.aisinternet.com&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 08 Jan 2000 00:34:00 +0000</pubDate>
 <dc:creator />
 <guid isPermaLink="false">comment 1012262 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
