Page 4 of 5 FirstFirst 12345 LastLast
Results 31 to 40 of 43

Thread: Adding Stuff Froms Scripts

  1. #31
    h1
    Guest
    OK. Browse over to the file, save it to your HD, then open it in Notepad or Wordpad (NOT M$ Word&#33. Post the contents here.

  2. Internet, Programming and Graphics   -   #32
    h1
    Guest
    Oh, and next time please use the [code] tag instead of bolding the text. Thanks.

  3. Internet, Programming and Graphics   -   #33
    okay i'll do that when i get home. and i will use the
    Code:
    CODE
    button isnted of the BOLD button

    Peerzyboy


  4. Internet, Programming and Graphics   -   #34
    this has been copied staight out of notepad:

    Code:
    <html>
    
    <head><script LANGUAGE="JavaScript">
    
    <!--
    
    // HotMail Login ID Storage Program
    // Written and © by Michael Nobilio
    // June 7, 1998
    // [email protected]
    //
    // Distribute Freely, as long as
    // this notice is left in the code.
    //
    // Please notify me of any bugs.
    
    
    
    notice = "Click \"Store Login\" to save your Login ID.";
    promptMessage = "No Login Stored";
    
    function setCookie(name, value, expire)
    {
            document.cookie = name + "=" + escape(value) + ( (expire == null) ? "" : ("; expires=" + expire.toGMTString()) );
    }
    
    function getCookie(Name)
    {
            var search = Name + "=";
            if( document.cookie.length > 0 )
            {
                    offset = document.cookie.indexOf(search);
                    if( offset != -1 )
                    {
                            offset = offset + search.length;
                            end = document.cookie.indexOf(";", offset);
                            if( end == -1 )
                            {
                                    end = document.cookie.length;
                            }
                            return unescape( document.cookie.substring(offset, end) );
                    }
            }
    }
    
    function storeLogin()
    {
            if( loginID != null )
            {
                    promptMessage = loginID;
            }
    
            var Value = prompt("Enter a Login ID to store:", promptMessage);
            if( Value == null )
            {
                    Value = promptMessage;
            }
            var today = new Date();
            var expires = new Date();
            expires.setTime( today.getTime() + (365*24*60*60*1000) );
            setCookie( "HotMailLogin", Value, expires );
    }
    
    // -->
    
    </script>
    
    <title>JavaFILE</title>
    <base target="leftframe">
    </head>
    <!-------------------------------------------->
    <!--  HotMail Login ID Storage Program 1.1  -->
    <!--  Written and © by Michael Nobilio      -->
    <!--  June 7, 1998                          -->
    <!--  [email protected]                  -->
    <!-------------------------------------------->
    <!--  Distribute Freely, as long as         -->
    <!--  this notice is left in the code.      -->
    <!-------------------------------------------->
    <!--  Please notify me of any bugs.         -->
    <!--                                        -->
    <!--  1.1 Bug fixes:                        -->
    <!--   * Existing Login ID is now populated -->
    <!--     when "Update Login" is clicked.    -->
    <!--   * Prompt "Cancel" bug fixed.         -->
    <!--                                        -->
    <!-------------------------------------------->
    
    <body BGCOLOR="#FFFFFF" TEXT="#000000">
    
    <p align="center"><img src="http://www.javafile.com/images/banner.GIF"
    alt="banner.GIF (2826 bytes)"></p>
    
    <p align="center">Great script for HotMail users that allows you to access your account
    from your HD. <br>
    <a href="http://www.javafile.com/javascripts/otherstuff/hotmail.zip">Download the Script</a></p>
    
    <form NAME="passwordform" ACTION="http://207.82.250.251/cgi-bin/start" METHOD="post">
      <input type="hidden" name="curmbox" value="ACTIVE"><input type="hidden" name="js"
      value="no"><div align="center"><center><table CELLSPACING="0" CELLPADDING="0">
        <tr>
          <td WIDTH="20"><br>
          </td>
          <td><div align="center"><center><p><font FACE="arial" SIZE="+2"><b>HotMail</b></font> </td>
        </tr>
        <tr align="center">
          <td WIDTH="15"><br>
          </td>
          <td><table BORDER="1" CELLSPACING="1" CELLPADDING="10">
            <tr>
              <td><table CELLSPACING="0" CELLPADDING="0">
                <tr>
                  <td><font FACE="arial" SIZE="-2"><b>Login: </b></font></td>
                  <td>  </td>
                  <td><font FACE="arial" SIZE="-2"><b>Password: </b></font></td>
                  <td></td>
                </tr>
                <tr>
                  <td><input TYPE="text" NAME="login" SIZE="16" MAXLENGTH="16" onFocus="this.select();"> </td>
                  <td><br>
                  </td>
                  <td><input TYPE="password" NAME="passwd" SIZE="16" MAXLENGTH="16"> </td>
                  <td ALIGN="center" VALIGN="bottom"> <input TYPE="submit" NAME="enter" VALUE="Enter"> </td>
                </tr>
                <tr>
                  <td NOWRAP ALIGN="center" COLSPAN="3"><input TYPE="radio" NAME="frames" VALUE="yes"><font
                  FACE="arial" SIZE="-3"><i>Frames</i></font>   <input TYPE="radio" NAME="frames"
                  VALUE="no"><font FACE="arial" SIZE="-3"><i>No Frames</i></font>   <input TYPE="radio"
                  NAME="frames" VALUE="auto" checked><font FACE="arial" SIZE="-3"><i>Use my Default</i></font>
                  </td>
                  <td><br>
                  </td>
                </tr>
              </table>
              </td>
            </tr>
          </table>
          </td>
        </tr>
      </table>
      </center></div>
    </form>
    <div align="center"><center>
    
    <table WIDTH="450">
      <tr>
        <td ALIGN="center"><form NAME="storeForm">
          <font SIZE="-1"><p><input NAME="saveLogin" TYPE="button" VALUE="Store Login"
          onClick="storeLogin(); history.go(0);"></font></p>
        </form>
        </td>
      </tr>
      <tr>
        <td VALIGN="top" ALIGN="center"><table CELLSPACING="0" CELLPADDING="10">
          <tr>
            <td ALIGN="center"><font FACE="arial" SIZE="-2">HotMail Login ID Storage Program 1.1<br>
            Written and © 1998 Michael Nobilio<br>
            <a HREF="mailto:[email protected]">[email protected]</a></font></td>
          </tr>
        </table>
        </td>
      </tr>
    </table>
    </center></div><font SIZE="-1" FACE="arial"><b><i>
    
    <p align="center">DIRECTIONS: Click "Store Login" to save your Login ID.</i></b></p>
    
    <p align="center"><br>
    </p>
    </font>
    </body>
    </html>
    Peerzyboy


  5. Internet, Programming and Graphics   -   #35
    h1
    Guest
    I'm not going to bother fixing the coding because it either sucks or you used IE to save it.
    Code:
    <html>
    
    <head><script LANGUAGE="JavaScript">
    
    <!--
    
    // HotMail Login ID Storage Program
    // Written and © by Michael Nobilio
    // June 7, 1998
    // [email protected]
    //
    // Distribute Freely, as long as
    // this notice is left in the code.
    //
    // Please notify me of any bugs.
    
    
    
    notice = "Click \"Store Login\" to save your Login ID.";
    promptMessage = "No Login Stored";
    
    function setCookie(name, value, expire)
    {
           document.cookie = name + "=" + escape(value) + ( (expire == null) ? "" : ("; expires=" + expire.toGMTString()) );
    }
    
    function getCookie(Name)
    {
           var search = Name + "=";
           if( document.cookie.length > 0 )
           {
                   offset = document.cookie.indexOf(search);
                   if( offset != -1 )
                   {
                           offset = offset + search.length;
                           end = document.cookie.indexOf(";", offset);
                           if( end == -1 )
                           {
                                   end = document.cookie.length;
                           }
                           return unescape( document.cookie.substring(offset, end) );
                   }
           }
    }
    
    function storeLogin()
    {
           if( loginID != null )
           {
                   promptMessage = loginID;
           }
    
           var Value = prompt("Enter a Login ID to store:", promptMessage);
           if( Value == null )
           {
                   Value = promptMessage;
           }
           var today = new Date();
           var expires = new Date();
           expires.setTime( today.getTime() + (365*24*60*60*1000) );
           setCookie( "HotMailLogin", Value, expires );
    }
    
    function bookmark()
    {
    	if((navigator.userAgent.toLowerCase()).indexOf("msie")!=-1)
    	{
      window.external.AddFavorite("http://www.your.site.com","Your Site");
    	}
    	else
    	{
      alert("This link will work only in Internet Explorer.");
    	}
    }
    
    // -->
    
    </script>
    
    <title>JavaFILE</title>
    <base target="leftframe">
    </head>
    <!-------------------------------------------->
    <!--  HotMail Login ID Storage Program 1.1  -->
    <!--  Written and © by Michael Nobilio      -->
    <!--  June 7, 1998                          -->
    <!--  [email protected]                  -->
    <!-------------------------------------------->
    <!--  Distribute Freely, as long as         -->
    <!--  this notice is left in the code.      -->
    <!-------------------------------------------->
    <!--  Please notify me of any bugs.         -->
    <!--                                        -->
    <!--  1.1 Bug fixes:                        -->
    <!--   * Existing Login ID is now populated -->
    <!--     when "Update Login" is clicked.    -->
    <!--   * Prompt "Cancel" bug fixed.         -->
    <!--                                        -->
    <!-------------------------------------------->
    
    <body BGCOLOR="#FFFFFF" TEXT="#000000">
    
    <a href="javascript:bookmark();">Click here to bookmark this page.</a>
    
    <p align="center"><img src="http://www.javafile.com/images/banner.GIF"
    alt="banner.GIF (2826 bytes)"></p>
    
    <p align="center">Great script for HotMail users that allows you to access your account
    from your HD. <br>
    <a href="http://www.javafile.com/javascripts/otherstuff/hotmail.zip">Download the Script</a></p>
    
    <form NAME="passwordform" ACTION="http://207.82.250.251/cgi-bin/start" METHOD="post">
     <input type="hidden" name="curmbox" value="ACTIVE"><input type="hidden" name="js"
     value="no"><div align="center"><center><table CELLSPACING="0" CELLPADDING="0">
       <tr>
         <td WIDTH="20"><br>
         </td>
         <td><div align="center"><center><p><font FACE="arial" SIZE="+2"><b>HotMail</b></font> </td>
       </tr>
       <tr align="center">
         <td WIDTH="15"><br>
         </td>
         <td><table BORDER="1" CELLSPACING="1" CELLPADDING="10">
           <tr>
             <td><table CELLSPACING="0" CELLPADDING="0">
               <tr>
                 <td><font FACE="arial" SIZE="-2"><b>Login: </b></font></td>
                 <td>  </td>
                 <td><font FACE="arial" SIZE="-2"><b>Password: </b></font></td>
                 <td></td>
               </tr>
               <tr>
                 <td><input TYPE="text" NAME="login" SIZE="16" MAXLENGTH="16" onFocus="this.select();"> </td>
                 <td><br>
                 </td>
                 <td><input TYPE="password" NAME="passwd" SIZE="16" MAXLENGTH="16"> </td>
                 <td ALIGN="center" VALIGN="bottom"> <input TYPE="submit" NAME="enter" VALUE="Enter"> </td>
               </tr>
               <tr>
                 <td NOWRAP ALIGN="center" COLSPAN="3"><input TYPE="radio" NAME="frames" VALUE="yes"><font
                 FACE="arial" SIZE="-3"><i>Frames</i></font>   <input TYPE="radio" NAME="frames"
                 VALUE="no"><font FACE="arial" SIZE="-3"><i>No Frames</i></font>   <input TYPE="radio"
                 NAME="frames" VALUE="auto" checked><font FACE="arial" SIZE="-3"><i>Use my Default</i></font>
                 </td>
                 <td><br>
                 </td>
               </tr>
             </table>
             </td>
           </tr>
         </table>
         </td>
       </tr>
     </table>
     </center></div>
    </form>
    <div align="center"><center>
    
    <table WIDTH="450">
     <tr>
       <td ALIGN="center"><form NAME="storeForm">
         <font SIZE="-1"><p><input NAME="saveLogin" TYPE="button" VALUE="Store Login"
         onClick="storeLogin(); history.go(0);"></font></p>
       </form>
       </td>
     </tr>
     <tr>
       <td VALIGN="top" ALIGN="center"><table CELLSPACING="0" CELLPADDING="10">
         <tr>
           <td ALIGN="center"><font FACE="arial" SIZE="-2">HotMail Login ID Storage Program 1.1<br>
           Written and © 1998 Michael Nobilio<br>
           <a HREF="mailto:[email protected]">[email protected]</a></font></td>
         </tr>
       </table>
       </td>
     </tr>
    </table>
    </center></div><font SIZE="-1" FACE="arial"><b><i>
    
    <p align="center">DIRECTIONS: Click "Store Login" to save your Login ID.</i></b></p>
    
    <p align="center"><br>
    </p>
    </font>
    </body>
    </html>
    That should work.

  6. Internet, Programming and Graphics   -   #36
    okay thanks so i just enter that into a paragraph and it should make it all work

    thanks for the help


    Peerzyboy


  7. Internet, Programming and Graphics   -   #37
    h1
    Guest
    NP.

  8. Internet, Programming and Graphics   -   #38
    Poster
    Join Date
    Mar 2003
    Posts
    3,582
    Back to "adding paragraphs" again

  9. Internet, Programming and Graphics   -   #39
    it worked by adding a paragraph ha!


    thnx everyone!

    Peerzyboy


  10. Internet, Programming and Graphics   -   #40
    Poster
    Join Date
    Mar 2003
    Posts
    3,582
    You have NO idea do you ?

Page 4 of 5 FirstFirst 12345 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •