csXMultiUpload 1.1

Posted by | Posted in active-x, development | Posted on 16-03-2010

Type: Demo
Cost: $60
Size: 1.01 MB
Release date: 08 Aug 2006
Platform: Win2000,Win7 x32,Win7 x64,Win98,WinOther,WinServer,WinVista,WinVista x64,WinXP
Download: csXMultiUpload Demo


csXMultiUpload

ActiveX control to select and upload multiple files to a server as an HTTP post. Files are selected with a standard file open dialog and can be added or removed before uploading. Form variables can be added to the upload. Files can be filtered by extension or limited by file size. All text displayed on the control can be changed to enable language translation. Free trial supplied with a signed CAB file.

csXPostUpload 1.1

Posted by | Posted in active-x, development | Posted on 16-03-2010

Type: Commercial
Cost: $80
Size: 818.24 kB
Release date: 21 May 2007
Platform: Win2000,Win7 x32,Win7 x64,Win98,WinOther,WinServer,WinVista,WinVista x64,WinXP,Other
Download: csXPostUpload Commercial


csXPostUpload

This ActiveX / OCX control allows an end user to upload batches of files to a server by an HTTP post. The entire contents of a folder can be uploaded with a single click. Paths, destinations and form variables can be set by the developer or the end user. Files can be filtered by extension and / or size. This control can be used in a web page or a COM enabled environment. It allows a more useful interface to be built than a web form with a Browse button when a user is regularly uploading multiple files to the same location. It shows a progress bar, has an abort and continue facility and stores settings in an inifile to avoid making the user enter paths every time. The control can also be hidden or reduced to just a progress bar and operated from the calling application where files for upload can be specified by name. There is a fully functional free trial available.

Javascript Game Engine 1.2

Posted by | Posted in arcade, games-entertainment | Posted on 13-03-2010

Type: Freeware
Cost: $0.00
Size: 934.22 kB
Release date: 05 Sep 2009
Platform: WinXP,Mac OS X,Mac Other,Win98,Unix,Linux,Java,Linux Gnome,Linux GPL
Download: Javascript Game Engine Freeware


Javascript Game Engine

This is a free game engine developed for programming browser based games. It uses the Javascript language and CSS to dress up the page. They run pretty reliably together. Use this engine to create your own game. This project is intended for beginners, wanting to learn how to program video games. Better if you’re a web designer that knows some CSS.

This engine uses threads for animation by looping through frames, each frame being a single thread of execution, enabling us to have more control over animation. Therefore we can coordinating two entities running independently to lock them both by their id’s. For example, a character can block a punch from another character, which "locks" in place independent frames from two mutual entities running concurrently in their own time zones, by using their thread id’s. There we can invoke instance() function to inject additional algorithm before having the two halted threads (or the entire game) to proceed.

Javascript is event driven so you can program images to move across the screen just by changing the coordinates, x and y and the browser will do this for us. On our part we’re just basically changing the CSS stuff like top:1px; and left:1px; with position:absolute;
That’s how it’s done mainly, but this engine coordinates threaded animation frames along with the speed of coordinates changing.

Background and foreground and character overlaps are managed by setting z-index.