crossProbe Modules Overview.

From version 0.935 and up there is a method exposed to the default object giving users the option the load external modules and extensions providing extended functionality to the crossProbe object with the cp.loadModule method.. We have never seen this kind of thing been done in the world of clientside javascripting before, although the technique is pretty simple, so it can be considered innovative. The method is highly influenced from PERLs "use" and the C/C++ "include" commands. The loadable modules is divided into two groups depending on behavior.
Extensions are javascript src files automatically registering itself to the crossProbe object. They provide extended functionality to the environment by protyping or merging itself into crossProbe. Allowing you to start using them without instantiation. crossProbe extension files always begin with crossext_something.js.
syntax;
myMedia = new crossProbe( );
myMedia.someExtension( );

Modules in general can be described as javascript src files that provide the javascript environment with new objects. These objects are then invoked to your crossProbe object by instantiating them with the new operator.
syntax;
myMedia = new crossProbe( );
myMedia.myModule = new myModuleName( );
myMedia.myModule.someModuleMethod( )

Available crossProbe modules.
crossProbe Extensions
 

crossExt_dragTarget ( February 6, 2000 )
version: 1.07
filesize: 4.31 kB

Enable dragability to you layered targets. Extremely competent extension, handles unlimited number of targets, routes and bubbles events flawlessly.

  crossExt_fixTarget ( February 6, 2000 )
version: 1.01
filesize: 2.66 kB

Enables target fixing. Scrollable documents with fixed media targets. Cool as phuck together with the crossExt_dragTarget.

  crossExt_soundCard ( December 7, 1999 )
version: 0.91
filesize: 1.14 kB

Find out if MSIE client has a soundcard connected to the system and bypass common errors related to the dreaded no soundcard issue.

crossProbe Modules
  crossPlayer_basic ( February 5, 2000 )
version: 1.50
filesize: 9.90 kB

Wrap your media objects in a console application-style mediaplayer based on graphical skins. Use a pre-made skin or make your own from one of the templates. The player scales itself to fit the object media. Add buttons to provide functions. Dynamically resizing + alot of other features. Visit the showroom to see it in action..