Try our UTube Convienance WebApp
Watch and or Listen to your favorite YouTube music
videos back to back.
Learn the Structure of JPEG Use
JpegMarkers to help you learn the JFIF data structure
of baseline jpeg images files
Keep the Aspect Ratio Use
ThumbMakerAspect to
create a thumbnail of your bitmap with the original images aspect ratio intact
Making a thumbnail Use
ThumbMaker to
create a thumbnail of your bitmap
A script for thumbnails Use
ThumbsMaker to
create thumbnails of your bitmaps
8 different methods for calculating anaglyphs Use
AnaCompare to
decide which is best for you
3D Images. Use
AnaStereo to make 3D Anaglyphs from Stereo Images All VBS Script
VBS QuickDev IDE Instalation Errata, now you can script
it faster and easier.
Three scripts, one may solve your OpenDialog
needs.
EZ GUI Builder
Create a GUI easily and Visually
Add items to IE menu
Menu Item Builder
is an easy way to add your own menu items to IE5+'s menu
Use Notepad to Design and
Create
Tables Visually
Doc Savage Text to XML/DHTML reader
Book Creator
Turn any plain text book into an XML/DHTML book
WSC Component for Text to PDF conversion
JSTxt2PDFWSC
easily convert text files into PDF documents
Simple Data Hiding.
Steganography
basic spycraft for every one
Work in progress.
TobOMatic
for writing guitar tab music
Requires a VML browser (IE5.5+).
An experiment.
A Simple Synthesizer
for on-line music fun.
For direct animation browsers (IE5.5+).
Come and build a WSC Component
Start building your own components today.
Compare these three scripts for shellplus. VBS Class
JavaScript Object
WSC Component
Choose and use the one you like.
Have fun!
Browsing around?.
Why not take a minute and give us a look.
We pander to IE5+
How many ways can you add event handlers in IE? Adding Handlers
A short listing of selected methods.
XML Translation. Add a desktop script for XML Translations
Easy to understand, use, and modify.
New - Meld. The easy to use Binary Pattern Predictor. Meld
is a small object that can be used to make informed predictions based on past events.
No frills tutorials. This first quick tutorial is on building Javascript Libraries
Code reuse made extreemly easy.
Simple javascript 3/4 view map for fun. 3/4 view map
Requires 2 Images. Create a world to explore with hot-spot user interactions. This is simple code is fun.
A novel navigation system in 3D using our 3D Maze with links. Navigation in 3D
Find your link and go!
Build a Database Quickly useing a simple
ADOX Class!
Play Block Drop
More Games!!!
|
Simple Image Processing
filters.
Create different standard effects for images.
Automate AnaStereo
Now
A Monitor for Automating the stereo to anaglyph process.
Easy 2D to 3D
RHS2D23D
creates 3D red cyan anaglyph from 2d image.
Enter the Trust Zone
Local Content
without the SP2 'Infromation Bar'.
Remove Free6
Free6 Cleaner
is a small VBS file made to help you out.
File Splitter
Split and Join Files
Customize our file splitter for your needs
Convert Text to PDF
JSTxt2PDF
written in Javascript, with a smathering of VBS
An x86 Javascript
Assembler
written in pure Javascript, with a touch of VBS
Building an executable with script
Little PE Builder
Stegongraphic tool.
Simple Stegan tool
for building basic steganographic images
VBS QuickDev IDE - TRY IT -
Try QuickDev
and build scripts faster and easier than ever before. All you need to do is follow the directions on the download page.
Job hunter data mining update.
Updated objects and corrected method. Job Miner
An experiment.
A simple 6502 Assembler in its first stages. HTML 6502
Very raw and Requires a VML browser like iE5.5+.
Mine the web. A simple and easy to use Job Searching example. Job Mining
Shows how to access and parse data from a web site.
A simple and easy to use AI Player Library. The aiplay library
contains three simple objects that make a good starter resource!
Grab a small no frills math library. The Little math Library
is a starter library that has functions ranging from factorials to matrix multiplication.
Make finding a job easier with our Job Search Interface
You can easily alter the script to search your favorite listings.
A simple Perceptron that learns. MCP Perceptron
The single most famous artificial neuron developed by McCulloch and Pitts (MCP) circa 1943.
Add a simple image viewer to your site. Our simple Image Viewer Script
lets your visitors enlarge your images without a round trip back to the server.
Want to become a content provider? Providing Content
gives you the tools you need to start delivering today. Uses VBScript to create JavaScript And its Free!
Our other site... Go!
Xpounded Code View it here
- Block Madness! -
Try a collapse style game written in JavaScript!
Block Madness 1.0a (Alpha)
More JS enjoyment - For IE 4+ Only.
- Block Drop -
How many rounds can you complete?
Try Block Drop 1.0a (Alpha)
Pure JS enjoyment - For IE 4+ Only.
Get the source code for a simple but very cool Wizard Builder CheezeWiz Wizard Builder IE4+ Only
Get the source code for a desktop Multiple Search Enginge interface 'My Search' IE5+ Only.
Try it Now!!! Open MySearch
Get the source code for a desktop Meta Search Enginge The Search Leach IE5.5+ Only
Try to beat yourself when you're put into a MindMeld IE 4+ Only.
|
Simple music generator
VML based music notation combines related music measures randomly
See what properties
the USDA has up for auction. Includes price and current Govt bid.
Registry Reader
RegExplorer
is a safer way to read your registry
True Automation
Automated Creator
An Un-Attended Automatiion that Turns any Plain-Text Book into an XML/DHTML Book
Cat5 Wiring
Cat5 UTP 568
Punchdown and RJ45 Pinouts.
UPC-A Generator
Bar Codes
Create Valid UPC-A BarCodes from script.
Small application of JavaScript to XML. Video Catalog
Shows direct script manipulation of xml in place of XSL.
Here's a monster object that you can add to our Job Mining example. Monster Search
Add it in, Use it!
Have fun making your own 3D Maze using JavaScript - Amazing. Simple 3D Maze
It doesn't get much easier than this!
Drag and Drop a VBS Class File onto the VBS Class Viewer
and easily reference any interface.
Experiment with our JavaScript ANN Kit
and build your own Neural Networks.
Try our two-step JavaScript Debugger
and get under the hood of your next script.
Todays question:
How do I use a WSC (Windows Script Component)?
Here's how to do it:
Create or download a WSC. This file is a plain text file so you can use any text editor to work with it. (See our My WSC Component Builder)
Registration:
You have to register a WSC before you can use it. In XP its a snap: right click on the file and select register. You will see the registration message when the component is registred successfully.
You can register a component with regsvr32.exe, a small registration utility. Reference to it and its use is on-line.
Implementation:
You need to create an instance of the component to use it from an application or script. In VBScript you would use set myobj=createObject(progid).
In javaScript, var myObj = new ActiveXObject(progid). The method of creation will vary from language to language, so check your documentation. in both of the previos examples progid should be replaced with the actual progid, such as wscript.shell, or myComponent.myActions.
Use:
You use the instance object like any other code object with dot notation. If the component has a property called color, and the variable name used to instantiatd the component is myObj, you get the color by p_color = myobj.color
Caveat:
Using components in a public web page is usually frowned upon, but used in applications components are indespensable. They offer a multitude of bennifits including code reuse. If you are building HTA (Hyper-Text Application) apps then WSC's are the way to go. They are easy to create, maintain, and deliver.
(Archive...)
Remember - There Is No Pie!
ONLY CHEEZE!!!
All content is provided by Xpounded. Contact Us If you have ideas for content you want to see on our site.
|