<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1019554" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1019554</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/swap-image-using-dreamweaver#comment-1117412</link>
    <description> &lt;p&gt;If you are using Dreamweaver:&lt;/p&gt;
&lt;p&gt;Name your images, then click on the image for the rollover, go to Behaviours &amp;amp; click onto Swap Images, locate the image you want to change from the list, then browse to find the image to be shown on mouseover. If you want to change more than one image (the other image can be anywhere on the same page) by the same action locate that image in the list and browse for the swapped image.&lt;/p&gt;
&lt;p&gt;If you want to change text but not have it as an image then I&#039;m sure you&#039;d have to play around with layers.&lt;/p&gt;
 </description>
     <pubDate>Sat, 02 Nov 2002 09:19:54 +0000</pubDate>
 <dc:creator>The Webmistress</dc:creator>
 <guid isPermaLink="false">comment 1117412 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/swap-image-using-dreamweaver#comment-1117399</link>
    <description> &lt;p&gt;They&#039;re acutally using Macromedia code on there, so they probably found that extension.  I remember recommending that to another member here once so you might want to search around in the Web Authoring folder - I think it was Gadget Girl who was asking.&lt;/p&gt;
&lt;p&gt;The mouseover code used on the page you linked looks like this:&lt;br /&gt;
&lt;code&gt;onMouseOver=&amp;quot;MM_swapImage(&amp;#039;Image9&amp;#039;,&amp;#039;&amp;#039;,&amp;#039;images/rollovers/professionals_FRONTpage.gif&amp;#039;,1)&lt;/code&gt;&#039; In a normal mouseover the &quot;Image9&quot; bit would be the name of the image that you&#039;re mousing over.  In this case, &quot;Image9&quot; is the name of the big center image where the text appears.&lt;/p&gt;
&lt;p&gt;Man, macromedia javascript can really get messy sometimes!&lt;/p&gt;
 </description>
     <pubDate>Sat, 02 Nov 2002 02:59:32 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1117399 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/swap-image-using-dreamweaver#comment-1117398</link>
    <description> &lt;p&gt;I had a look at the source code on that page but its all that dreamweaver mumbo gumbo, make any grown man cry &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I posted the link cause I was to lazy to type it out, I guess I&#039;ll type it out now then.&lt;/p&gt;
&lt;p&gt;in the head section, put this:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;amp;gt;&amp;nbsp; &amp;lt;!-- Hide from old browsers&lt;br /&gt;if (document.images) {&lt;br /&gt;&amp;nbsp; image1on = new Image();&lt;br /&gt;&amp;nbsp; image1on.src = &amp;quot;image1.gif&amp;quot;;&lt;br /&gt;&lt;br /&gt;&amp;nbsp; image1off = new Image();&lt;br /&gt;&amp;nbsp; image1off.src = &amp;quot;image1a.gif&amp;quot;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;function changeImages() {&lt;br /&gt;&amp;nbsp; if (document.images) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var i=0; i&amp;lt;changeImages.arguments.length; i+=2) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; document[changeImages.arguments[i]].src =&lt;br /&gt; eval(changeImages.arguments[i+1] &lt;br /&gt;+ &amp;quot;.src&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;// end hiding --&amp;gt;&amp;amp;lt;/script&amp;amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;image1 and image1a are the images you want changed on mouseover. add this bit in your body section before the bit you want to be moused over&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;a href=&amp;quot;link.html&amp;quot; onmouseover=&amp;quot;changeImages&lt;br /&gt;(&amp;#039;image1&amp;#039;, &amp;#039;image1on&amp;#039;)&amp;quot; onmouseout=&amp;quot;changeImages&lt;br /&gt;(&amp;#039;image1&amp;#039;, &amp;#039;image1off&amp;#039;)&amp;quot;&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;and finally add &lt;code&gt;name=&amp;quot;image1&amp;quot;&lt;/code&gt;&#039; into the img tag of the image you want changed&lt;/p&gt;
 </description>
     <pubDate>Sat, 02 Nov 2002 02:58:30 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1117398 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/swap-image-using-dreamweaver#comment-1117396</link>
    <description> &lt;p&gt;But you show mr where this exists on that one page I gave above?  That way I can really understand it.&lt;/p&gt;
 </description>
     <pubDate>Sat, 02 Nov 2002 02:41:14 +0000</pubDate>
 <dc:creator>Brooke</dc:creator>
 <guid isPermaLink="false">comment 1117396 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/swap-image-using-dreamweaver#comment-1117395</link>
    <description> &lt;p&gt;If you just want the code go to my main site &lt;a href=&quot;http://www.munchtech.com&quot; class=&quot;bb-url&quot;&gt;munchtech.com&lt;/a&gt; and steal it from the source code (mouseover the bottom images and the top banner changes)&lt;/p&gt;
&lt;p&gt;Its just a simple 2 mouseover javascript instead of one, and the image being moused over doesnt change, or you can have it change if you want.&lt;/p&gt;
 </description>
     <pubDate>Sat, 02 Nov 2002 02:40:40 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1117395 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/swap-image-using-dreamweaver#comment-1117388</link>
    <description> &lt;p&gt;I&#039;m pretty sure that there is an extension you can download do this.  I forget what it&#039;s actually called - double rollover or targetted rollover or something like that.  If I remember I&#039;ll let you know..&lt;/p&gt;
&lt;p&gt;Otherwise you can just trade the name of the image for the name of the target image in the javascript.&lt;/p&gt;
 </description>
     <pubDate>Sat, 02 Nov 2002 00:57:44 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1117388 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/swap-image-using-dreamweaver#comment-1117383</link>
    <description> &lt;p&gt;If you do two swap image events they are in the same spot basically.  Somehow you have to specify that you want one image changed in image the first image&#039;s place.  And another image to change somewhere else.  Just like that example I stated above!&lt;/p&gt;
 </description>
     <pubDate>Fri, 01 Nov 2002 23:27:49 +0000</pubDate>
 <dc:creator>Brooke</dc:creator>
 <guid isPermaLink="false">comment 1117383 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/swap-image-using-dreamweaver#comment-1117377</link>
    <description> &lt;p&gt;not too familiar with dreamweaver, but it should just be a onmouseover effect, im sure you could so it in javascript.&lt;/p&gt;
 </description>
     <pubDate>Fri, 01 Nov 2002 22:53:04 +0000</pubDate>
 <dc:creator>jammin</dc:creator>
 <guid isPermaLink="false">comment 1117377 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
