Search results

  1. P

    External scripts

    # Use external JavaScript files when you want to use the same script on many pages, but don't want to have to rewrite the code on every page! # Use external JavaScript files for including both types of scripts: the type that you place in the head (functions) and the type you place in the body...
  2. P

    image scroll scripts

    MANY setup controls available (colors, borders, size, placement in page). Setup controls are contained in one easy to use setup file.This is a very simple scroller script that can be added to any HTML page, to a sidebar.js or under your menu in the menu.js. This add-on has been tested and is...
  3. P

    Menu bar problem

    My added "start" and "exit" to my menubar File -> Start File -> Exit public boolean action(Event e, Object o) { if(e.target instanceof MenuItem) { if((String)o == "Start") { my code.... /* if(e.target.equals(b1)) { some code... }*/ } if((String)o == "Exit") { System.exit(0);
  4. P

    email system

    This application was developed for a intranet project, and would be usefull for any small to medium sized organisation who use a Windows NT Server, or even just a Networked Windows 95 solution running the personal web server, and who want an e-mail system, but don't want the associated costs.
  5. P

    File Upload Form

    The file upload form looks just like any other form except that: 1. the form tag must specify the POST method 2. the form tag must specify an enctype of multipart/form-data 3. the form must contain an <input type=file> element.
Top