Listing of JavaScript in Web Authoring

Sort by  Name  Date  Rating  Downloads 

Software 121-140 of 376  |  Go to << Prior 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Next >> page 

License:  All | Free
Freeware
Boyer Screenshot
more

Fast string search (indexOf) using the Boyer-Moorealgorithm.

Fast string search (indexOf) using the Boyer-Moorealgorithm. Incorporate this class into your own Javaprograms to rapidly search strings. use:import com.mindprod.Boyer.Boyer;...Boyer b = new Boyer("dogcatwombat");int where = b.indexOf("cat");orint where = Boyer.indexOf("dogcatwombat","cat"); Boyer-Moore is about twice as fast as String.indexOf whenthe...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 532.5 KB
Platform: Windows



Freeware
Wavelength Screenshot
more

Wavelength creates Color objects given the wavelength orthe frequency of the light rather than the usual RGB or HSB.

Wavelength creates Color objects given the wavelength orthe frequency of the light rather than the usual RGB or HSB. instead of:Color c = new Color(255, 0, 0);use the frequency in nanometers, and gamma 0.0. .. 1.0.(gamma is intensity/brightness.)Color c = Wavelength.wvColor( 400.0f, 0.80f );The visible range of the spectrum is 380..780 nanometers.Smaller is bluer. or using frequency in...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 645.1 KB
Platform: Windows

Freeware
TimeZones Screenshot
more

Displays all the timezones on your machine supported byJava, with their standard time and daylight saving timeoffsets from GMT, along with the their ID (programmer) namesand display names.

Displays all the timezones on your machine supported byJava, with their standard time and daylight saving timeoffsets from GMT, along with the their ID (programmer) namesand display names. It also displays UTC time, local time, andyour default timezone and whether daylight savings iscurrently in effect.

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 675.8 KB
Platform: Windows

Freeware
Pentium Screenshot
more

Pentium works on Windows and Intel Pentium class and AMDCPUs to determine the CPUID information such as the vendor,brand/model, step, model, instruction set family, cpu serialnumber, and the RDTSC Time stamp register for highresolution timing measure

Pentium works on Windows and Intel Pentium class and AMDCPUs to determine the CPUID information such as the vendor,brand/model, step, model, instruction set family, cpu serialnumber, and the RDTSC Time stamp register for highresolution timing measured in CPU cycles since the lastboot. It is designed to be incorporated in your own Javaprogams. You can also use it as a standalone utility with:...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 727.0 KB
Platform: Windows

Freeware
HunkIO Screenshot
more

Java classes to include in your own programs.

Java classes to include in your own programs. They let youread or write a file in one fell swoop into RAM. It alsoincludes createTempFile method that is more convenient touse than Sun's File.createTempFile. It also includesPrintWriterPlus that converts linefeeds to platform specificline feeds even when they are embedded in data. Why the three linked ball logo? It symbolises processing afile in...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 512.0 KB
Platform: Windows

Freeware
Base64 Screenshot
more

Base64 is a freeware way of encoding 8-bit characters usingonly ASCII printable characters similar to UUENCODE.

Base64 is a freeware way of encoding 8-bit characters usingonly ASCII printable characters similar to UUENCODE.UUENCODE embeds a filename where BASE64 does not. You willsee BASE64 used in encoding digital certificates, inencoding user:password string in an Authorization: headerfor HTTP. The spec is described in RFC 2045. For more details see http://mindprod.com/jgloss/base64.html Don't confuse...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 512.0 KB
Platform: Windows

Freeware
LEDataStream Screenshot
more

Little-endian replacements for DataInputStream, DataOutputStream and RandomAccessFile.

Little-endian replacements for DataInputStream, DataOutputStream and RandomAccessFile. They work just like DataInputStream, DataOutputStream and RandomAccessFile except they work with little-endian binary data. Normally Java binary I/O is done with big-endian data, with the most significant byte of an integer or float first. Intel and Windows 95 tend to work with little endian data in native...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 435.0 KB
Platform: Windows

Freeware
SortedArrayList Screenshot
more

This is a pair of library classes to include in your owncode for manipulating ArrayLists.

This is a pair of library classes to include in your owncode for manipulating ArrayLists. It consist of two classes: SortedArrayList and Merge. SortedArrayList is an ArrayList that remembers how it issorted, so that if you ask it to sort, it can sometimesbypass the work when it is already in order. You declare theorder you want and it keeps the list sorted, You just callsort whenever you need...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 675.8 KB
Platform: Windows

Freeware
FileFilters Screenshot
more

FilenameFilters you can use in your own Java programs withFile.

FilenameFilters you can use in your own Java programs withFile.list( FilenameFilter f ). They can also be usedstandalone as fancy dir commands. They come with Java source and include: AllDirectoriesFilter gets all directoriesAllFilesFilter gets all filesClamFilter simple wildcardDirListFilter gets a list of directoriesEndsWithFilter gets files whose names end with a given string.ExtensionFilter...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 757.8 KB
Platform: Windows

CreditCard Validator Screenshot
more

The CreditCard Validator will help you tell:1.

The CreditCard Validator will help you tell:1. if a credit card number is valid,2. which credit card vendor handles that number. It is a simple Applet to demonstrate the use of the ValidateCreditCard class. It validates the prefix and the checkdigit. It does *not* contact the credit card company to ensure that number has actually been issued and that the account is in good standing. It will...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 665.6 KB
Platform: Windows

Freeware
Encodings Screenshot
more

Applet to list all supported encodings (character sets)supported by your browser/java.

Applet to list all supported encodings (character sets)supported by your browser/java. To install, Extract the zip download with WinZip, availablefrom http://www.winzip.com (or similar unzip utility) intoany directory you please, often C:\ -- ticking off the (userfolder names) option. To run as an application, type: java -jar C:\com\mindprod\encodings\encodings.jar adjusting as necessary to...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 645.1 KB
Platform: Windows

Official Encoding Screenshot
more

Official Encoding will tell you the official name of any given Java encoding and whether it is supported by Java.

Official Encoding will tell you the official name of any given Java encoding and whether it is supported by Java. It will also display some of the characters available with that encoding. Prerequisites: This program runs under any OS,(e.g. Win2K/XP/Vista/OSX/Linux/Solaris/Vista64/AIX...) so long as you haveJava version 1.5 or later installed.See http://mindprod.com/jgloss/installingjava.html...

Category: Web Authoring / JavaScript
Publisher: Canadian Mind Products, License: Freeware, Price: USD $0.00, File Size: 655.4 KB
Platform: Windows

SplineTech JavaScript HTML Debugger Screenshot
more

SplineTech JavaScript HTML Debugger is the independent standalone award-winning JavaScript Debugger that enables you to easily edit and debug JavaScript and VBScript inside HTML and DHTML pages.

SplineTech JavaScript HTML Debugger is the independent standalone award-winning JavaScript Debugger that enables you to easily edit and debug JavaScript and VBScript inside HTML and DHTML pages. Client-Side JavaScript, JScript and VBScript debugging languages are fully supported for simple and complex HTML and DHTML debugging scenarios.

Category: Web Authoring / JavaScript
Publisher: Spline Technologies, License: Demo, Price: USD $70.00, File Size: 4.5 MB
Platform: Windows

dhtmlxCombo :: Ajax Combobox Screenshot
more

Easy configurable DHTML JavaScript combo box with Ajax support, autocomplete functionality and wide cross-browser compatibility. The component features type-ahead, keyboard support and ability to display images in the dropdown list. GPL licensed.

Easy configurable DHTML JavaScript combo box with Ajax support, autocomplete functionality and wide cross-browser compatibility. Features include type-ahead, keyboard support and ability to display images in the dropdown list. dhtmlxCombo can be easily converted from existing HTML SELECT or populated with JavaScript. The component works fast and smoothly with large sets of data, loading list...

Category: Web Authoring / JavaScript
Publisher: Scand, License: Freeware, Price: USD $0.00, File Size: 120.0 KB
Platform: Windows, Mac, Linux, Unix

AllWebMenus Server-Side Menus API Add-in Screenshot
more

Use this AllWebMenus Add-in to generate eye-catching, Javascript/CSS menus for your web sites, based on any conditions/parameters you like, through database-driven data or page variables and for any platform (PHP, JSP, ColdFusion, ASP.NET, etc.).

Use the "AllWebMenus Server-Side Menus API Add-in" to generate eye-catching, multi-featured, Javascript/DHTML/CSS menus for your web sites, based on any conditions/parameters you like, through database-driven data or page variables. Menus are created on-the-fly and you can easily program them on any server-side environment (PHP, JSP, ColdFusion, ASP.NET, etc.). You have the flexibility to...

Category: Web Authoring / JavaScript
Publisher: Likno Software, License: Shareware, Price: USD $49.95, File Size: 660.0 KB
Platform: Windows

5 Stars5 Stars5 Stars5 Stars5 Stars Shareware
AllyNova Tree Menu Screenshot
more

Create tree menu for your websites. AllyNova Tree Menu adds a tree menu to your website to make it more easy for your visitors to find things from and make your website looks more professional. It's easy to use and powerful enough for experts.

Create tree menu for your websites. Usually, your websites may have many web pages, and you build many text or image links for your visitors to find these pages, but most of visitors aren't patient enough to find these pages. So we need to build a tree menu to navigate your websites. AllyNova Tree Menu is specifically designed to help with that problem. It adds a tree menu to your...

Category: Web Authoring / JavaScript
Publisher: AllyNova.com, Inc., License: Shareware, Price: USD $49.95, File Size: 607.3 KB
Platform: Windows

Search Engine Builder Standard Screenshot
more

Many visitors to your website are usually looking for specific information.Search Engine Builder create a search engine for your website to make it easier for your visitors to find things on your website and gives it a more professional appearance.

Many visitors to your website are usually looking for specific information. If they have to take too much time to find what they want, you'll lose some of them. Search Engine Builder is specifically designed to help with that problem. It indexes your entire website quickly and generates an efficient search engine. It makes it easier for your visitors to find things on your website and...

Category: Web Authoring / JavaScript
Publisher: ALeadSoft.com, Inc., License: Shareware, Price: USD $59.95, File Size: 1.5 MB
Platform: Windows

JavaScript Form Validation Screenshot
more

Here is a simple, powerful client side JavaScript form validation script. You can just choose from a number of pre-built form validation routines. Using this code, you can do the common form validations in a snap!

JavaScript form validations are commonly required for all web forms. It gives the response immediately and prevents the user form entering bad data. But, when there are many forms in the project and when the forms are long, writing the form validations becomes a daunting, repetitive task. Save yourself from repetitively coding JavaScript form validations. Here is a simple, powerful form...

Category: Web Authoring / JavaScript
Publisher: JavaScript-Coder.com, License: Freeware, Price: USD $0.00, File Size: 80.7 KB
Platform: Unknown

JavaScript Vertical Gallery Slider Screenshot
more

JavaScript Vertical Gallery Slider is a JavaScript-producing design tool for creating scrolling images on Web pages. With this easy-to-use script authoring tool, you can make a professional script just in minutes!

JavaScript Vertical Gallery Slider is a JavaScript-producing design tool for creating scrolling images on Web pages. The script can be customized highly and easily through the SCP(Script Configuration Program). You can specify size, image, color, link and much more to script. It is unnecessary to write any code manually. SCP will generate all necessary codes automatically. You will need to...

Category: Web Authoring / JavaScript
Publisher: Usingit.com, License: Shareware, Price: USD $9.99, File Size: 769.3 KB
Platform: Windows

Shareware
ZZEE DHTML Menu Screenshot
more

Library for Javascript and PHP that you can use to create familiar dropdown menus like in desktop applications. ZZEE DHTML Menu is fairly easy to install and embed into your existing HTML or PHP pages, it is customizable, powerful and simple.

ZZEE DHTML Menu is a library for Javascript and PHP that you can use to create familiar dropdown menus like in desktop applications. ZZEE DHTML Menu is fairly easy to install and embed into your existing HTML or PHP pages. Benefits: Similar looks and functionality to desktop menus, end users feel at home. Fully customizable looks. Lots of options. Search engine friendly (PHP/HTML version...

Category: Web Authoring / JavaScript
Publisher: ZZEE TOOLS Corp., License: Shareware, Price: USD $29.95, File Size: 62.1 KB
Platform: Windows, Mac, Linux

Software 121-140 of 376  |  Go to << Prior 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Next >> page