<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1015063" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1015063</link>
    <description></description>
    <language>en</language>
          <item>
    <title>shortcuts out of the phyche</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/rollover-buttons#comment-1088499</link>
    <description> &lt;p&gt;cntrl n&lt;/p&gt;
&lt;p&gt;DESIGN&lt;/p&gt;
&lt;p&gt;select area&lt;/p&gt;
&lt;p&gt;cntrl shift c&lt;/p&gt;
&lt;p&gt;cntrl n&lt;/p&gt;
&lt;p&gt;cntrl v&lt;/p&gt;
&lt;p&gt;cntrl alt shift s&lt;/p&gt;
&lt;p&gt;[save image to directory}&lt;/p&gt;
&lt;p&gt;cntrl w&lt;/p&gt;
&lt;p&gt;right arrow&lt;/p&gt;
&lt;p&gt;space bar&lt;/p&gt;
&lt;p&gt;cntl J&lt;/p&gt;
&lt;p&gt;double click selected layer&lt;/p&gt;
&lt;p&gt;give it bevel&lt;/p&gt;
&lt;p&gt;click ok&lt;/p&gt;
&lt;p&gt;cntrl shift d&lt;/p&gt;
&lt;p&gt;cntrl n&lt;/p&gt;
&lt;p&gt;cntrl v&lt;/p&gt;
&lt;p&gt;cntrl alt shift s&lt;/p&gt;
&lt;p&gt;save to directory with _b on the end&lt;/p&gt;
&lt;p&gt;That is how I slice out my sites.&lt;/p&gt;
&lt;p&gt;The above shortcut theme was for buttons for mouseovers in ps6&lt;/p&gt;
&lt;p&gt;Yes I am CRAZY! mwha mwha mwhaaaa&lt;/p&gt;
 </description>
     <pubDate>Sat, 01 Sep 2001 23:12:44 +0000</pubDate>
 <dc:creator>Keegan</dc:creator>
 <guid isPermaLink="false">comment 1088499 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Dreamweaver</title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/rollover-buttons#comment-1087777</link>
    <description> &lt;p&gt;I&#039;m not quite sure on how good the code is but dreamweaver makes it really easy for you to do rollovers. I usually just make the images and let dreamweaver do the magic. Good luck!&lt;/p&gt;
&lt;p&gt;PUNKK&lt;/p&gt;
 </description>
     <pubDate>Wed, 22 Aug 2001 20:35:15 +0000</pubDate>
 <dc:creator>punkk</dc:creator>
 <guid isPermaLink="false">comment 1087777 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/rollover-buttons#comment-1087522</link>
    <description> &lt;p&gt;Rolling your own script is pretty easy for mouseovers, plus you can reuse the code on other sites. Here is how.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;This Part goes in the Head&lt;/strong&gt;&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;	&amp;amp;lt;script language=javascript type=&amp;quot;text/javascript&amp;quot;&amp;amp;gt;&amp;lt;!--Begin Script Hide&lt;br /&gt;&lt;br /&gt;if (document.images) {&lt;br /&gt;img1on = new Image&lt;br /&gt;img1on.src = &amp;quot;images/img1on.gif&amp;quot;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;img1off = new Image&lt;br /&gt;img1off.src = &amp;quot;images/img1off.gif&amp;quot;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;function chgImg(imgfield,newImg) {&lt;br /&gt;if (document.images) {&lt;br /&gt;document[imgfield].src= eval(newImg + &amp;quot;.src&amp;quot;)&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;//End Script Hide --&amp;gt;&lt;br /&gt;&amp;amp;lt;/script&amp;amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The body looks kind of like this:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href=&quot;/&quot;&gt;&lt;IMG name=&quot;img1&quot; border=&quot;0&quot; src=&quot;images/img1.gif&quot; width=&quot;&quot; height=&quot;&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So basically you will have an on and an off graphic. You are creating a function called chgImg that will call this new image. The biggest mistake usually made is that people name (&#039;img1&#039;, ...) different from &lt;IMG name=&quot;img1&quot; /&gt; and the script errors out on them. You can add images to this function by just putting in:&lt;/p&gt;
&lt;p&gt;img2on = new Image&lt;br /&gt;
img2on.src = &quot;images/img2on.gif&quot;&lt;/p&gt;
&lt;p&gt;img2off = new Image&lt;br /&gt;
img2off.src = &quot;images/img2off.gif&quot;&lt;/p&gt;
&lt;p&gt;Personal preference is that I will put all my on&#039;s and all my off&#039;s together like:&lt;/p&gt;
&lt;p&gt;img1on = new Image&lt;br /&gt;
img1on.src = &quot;images/img1on.gif&quot;&lt;br /&gt;
img2on = new Image&lt;br /&gt;
img2on.src = &quot;images/img2on.gif&quot;&lt;/p&gt;
&lt;p&gt;It is really too easy.&lt;/p&gt;
 </description>
     <pubDate>Fri, 17 Aug 2001 21:19:16 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1087522 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/rollover-buttons#comment-1087508</link>
    <description> &lt;p&gt;i use this generator to make my rollovers, it only lets you do 5 at a time, but it&#039;s really easy and it does the preloading scripts for you too.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://javascript.internet.com/generators/preload-images.html&quot; class=&quot;bb-url&quot;&gt;preload images and rollover generator&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hope that helps &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>Fri, 17 Aug 2001 17:19:31 +0000</pubDate>
 <dc:creator>timswebwork</dc:creator>
 <guid isPermaLink="false">comment 1087508 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/rollover-buttons#comment-1086905</link>
    <description> &lt;p&gt;There are a few options here.  When you create your rollovers in ImageReady, choose &quot;save optimized&quot; from the file menu - this should create an HTML file for you with the rollover script included.  I don&#039;t know why this wouldn&#039;t work.  Then all you have to do is either build your page around that or copy and paste that code into another HTML page.&lt;/p&gt;
&lt;p&gt;However, IR does write some rather messy code, so you might be better off taking the images it generates and plugging them into another script.  Yet another option would be to use an HTML editor to generate the rollovers for you - what are you using to write your code?  Some of them have easy rollover tools.&lt;/p&gt;
 </description>
     <pubDate>Fri, 10 Aug 2001 13:06:36 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1086905 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
