yiffy fox
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 41
Public Fox 1.04
Public Fox cleans stuff after downloading. more>>
Public Fox cleans stuff after downloading.
Tired of cleaning stuff people download? Use this to limit file downloading.
Prevent browser changes.
Public Fox blocks users from downloading unwanted files.
Locks down Add-ons.
Locks down Preferences.
Locks down about:config
All with a central password.
<<lessTired of cleaning stuff people download? Use this to limit file downloading.
Prevent browser changes.
Public Fox blocks users from downloading unwanted files.
Locks down Add-ons.
Locks down Preferences.
Locks down about:config
All with a central password.
Download (0.019MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
862 downloads
FXPy 1.0.5
FXPy is a Python extension module which provides an interface to the FOX cross-platform GUI library. more>>
FXPy is a Python extension module which provides an interface to the FOX cross-platform GUI library.
The FXPy API follows the standard FOX API very closely and for the most part you can use FOX documentation as a reference. But of course, Python isnt C++ and so here are some differences of which you should be know.
Any function which usually takes an FXString as an input instead takes a Python string. Similarly, functions which usually return an FXString will instead return a Python string. For functions which would accept a NULL or empty string argument, just pass an empty string ("") or None.
In FOX, message maps are defined as static class members. In FXPy, you just associate messages with message handlers in the class constructor using the FXMAPFUNC(), FXMAPTYPE(), FXMAPTYPES() or FXMAPFUNCS() methods. See almost any of the example programs for examples of how this is done.
As in C++ FOX, the last argument passed to your message handler functions contains message-specific data. For instance, all SEL_PAINT messages pass an FXEvent object through this argument to give you some information about the size of the exposed rectangle. On the other hand, a SEL_COMMAND message from an FXHeader object passes the index of the selected header item through this argument. Instead of guessing whats in this last argument, your best bet is to instead invoke a member function on the sending object to find out what you need, instead of relying on the data passed through this pointer.
For example, if you get a SEL_COMMAND message from an FXColorWell object, the data passed through that last argument is supposed to be the new RGB color value. Instead of trying to interpret the arguments contents, just turn around and call the color wells getRGBA() member function to retrieve its color. Similarly, if you get a SEL_COMMAND message from a tree list, call its getCurrentItem() method to find out which item was selected.
<<lessThe FXPy API follows the standard FOX API very closely and for the most part you can use FOX documentation as a reference. But of course, Python isnt C++ and so here are some differences of which you should be know.
Any function which usually takes an FXString as an input instead takes a Python string. Similarly, functions which usually return an FXString will instead return a Python string. For functions which would accept a NULL or empty string argument, just pass an empty string ("") or None.
In FOX, message maps are defined as static class members. In FXPy, you just associate messages with message handlers in the class constructor using the FXMAPFUNC(), FXMAPTYPE(), FXMAPTYPES() or FXMAPFUNCS() methods. See almost any of the example programs for examples of how this is done.
As in C++ FOX, the last argument passed to your message handler functions contains message-specific data. For instance, all SEL_PAINT messages pass an FXEvent object through this argument to give you some information about the size of the exposed rectangle. On the other hand, a SEL_COMMAND message from an FXHeader object passes the index of the selected header item through this argument. Instead of guessing whats in this last argument, your best bet is to instead invoke a member function on the sending object to find out what you need, instead of relying on the data passed through this pointer.
For example, if you get a SEL_COMMAND message from an FXColorWell object, the data passed through that last argument is supposed to be the new RGB color value. Instead of trying to interpret the arguments contents, just turn around and call the color wells getRGBA() member function to retrieve its color. Similarly, if you get a SEL_COMMAND message from a tree list, call its getCurrentItem() method to find out which item was selected.
Download (0.92MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1195 downloads
TnFOX 0.87
TnFOX is a fully featured C++ and Python toolkit library. more>>
TnFOX is a modern secure, robust, multithreaded, exception aware, internationalisable, portable GUI toolkit library designed for mission-critical work in C++ and Python forked from the FOX library.
This project replicates the Qt API in many places and has been designed primarily for Tn, the port of Tornado to FOX.
Main features:
- Portable to X11/POSIX (Linux, BSD) and Microsoft Windows
- License based on the Library GNU Public License (LGPL) so can be used by closed-source applications
- Dynamic run-time binding of widgets to each other and to data via messaging
- Wide range of easily extendable (via subclassing) widgets
- Fast and Lightweight, noticeably faster than other C++ GUI toolkits
- Also provides OpenGL, drag & drop, anti-aliased fonts, MIME, graphics & compression support
Enhancements:
- FOX v1.4.35 and FOX v1.6.28 merged.
- 2D and 3D graphing support of arbitrary datasets rendered using OpenGL along with official Visualisation Toolkit (VTK) support.
- Modular building support. You can now build separate no-GUI, SQL database and Graphing sublibraries. You can also toggle whether large proportions of FOX and TnFOX are compiled into your library or not, making for a very slimline standalone executables if you so choose.
- Added child process device i/o class QChildProcess. You can now redirect i/o and manage child processes on all supported platforms.
- An automated test suite now can perform full regression testing on all supported platforms. It stores its results inside a SQLite3 database and can output the database in HTML format (as you can see on the TnFOX website).
- TnFOX is now completely portable to any architecture (not just Intel based ones).
- Fixed stack backtracing on exception throw for Windows (which had become broken thanks to Microsoft) and added support for stack backtracing on Linux via glibc.
- Even more performance increases. Tn now runs on Linux slightly faster than Windows!
- Lots of bugs (some major) fixed.
- New platforms now officially supported: Apple Mac OS X (using Apples X11 server), CoLinux and Microsoft Windows Vista. TnFOX is fully & officially supported on all 32 bit and 64 bit platforms.
<<lessThis project replicates the Qt API in many places and has been designed primarily for Tn, the port of Tornado to FOX.
Main features:
- Portable to X11/POSIX (Linux, BSD) and Microsoft Windows
- License based on the Library GNU Public License (LGPL) so can be used by closed-source applications
- Dynamic run-time binding of widgets to each other and to data via messaging
- Wide range of easily extendable (via subclassing) widgets
- Fast and Lightweight, noticeably faster than other C++ GUI toolkits
- Also provides OpenGL, drag & drop, anti-aliased fonts, MIME, graphics & compression support
Enhancements:
- FOX v1.4.35 and FOX v1.6.28 merged.
- 2D and 3D graphing support of arbitrary datasets rendered using OpenGL along with official Visualisation Toolkit (VTK) support.
- Modular building support. You can now build separate no-GUI, SQL database and Graphing sublibraries. You can also toggle whether large proportions of FOX and TnFOX are compiled into your library or not, making for a very slimline standalone executables if you so choose.
- Added child process device i/o class QChildProcess. You can now redirect i/o and manage child processes on all supported platforms.
- An automated test suite now can perform full regression testing on all supported platforms. It stores its results inside a SQLite3 database and can output the database in HTML format (as you can see on the TnFOX website).
- TnFOX is now completely portable to any architecture (not just Intel based ones).
- Fixed stack backtracing on exception throw for Windows (which had become broken thanks to Microsoft) and added support for stack backtracing on Linux via glibc.
- Even more performance increases. Tn now runs on Linux slightly faster than Windows!
- Lots of bugs (some major) fixed.
- New platforms now officially supported: Apple Mac OS X (using Apples X11 server), CoLinux and Microsoft Windows Vista. TnFOX is fully & officially supported on all 32 bit and 64 bit platforms.
Download (MB)
Added: 2007-07-12 License: LGPL (GNU Lesser General Public License) Price:
835 downloads
gtk-FOX 0.3
gtk-FOX project provides helper functions to use FOX toolkit together with GTK. more>>
gtk-FOX project provides helper functions to use FOX toolkit together with GTK.
<<less Download (0.21MB)
Added: 2006-11-03 License: BSD License Price:
1086 downloads
Fox Hunt 0.4
Fox Hunt is a logic game written in Java. more>>
Fox Hunt project is a logic game written in Java.
It was inspired by the sports competition of the same name. In that competition, participants run in the forest equipped with small radio locators, seeking small hidden radio wave emitters called "foxes".
In Fox Hunt you are one of such participants armed with advanced locator which can scan full horizontal, vertical, and both diagonal directions and report the number of foxes "visible" at all these directions.
Whats New in This Release:
This release features minor design changes and two helper options (both options will cost the player a half of his/her score): "Autodecrement fox scanners" turns off every fox found, so on the opened locations player will always see the number of active foxes only. "Automark empty locations" marks locations without foxes after every turn (according to currently opened locations).
<<lessIt was inspired by the sports competition of the same name. In that competition, participants run in the forest equipped with small radio locators, seeking small hidden radio wave emitters called "foxes".
In Fox Hunt you are one of such participants armed with advanced locator which can scan full horizontal, vertical, and both diagonal directions and report the number of foxes "visible" at all these directions.
Whats New in This Release:
This release features minor design changes and two helper options (both options will cost the player a half of his/her score): "Autodecrement fox scanners" turns off every fox found, so on the opened locations player will always see the number of active foxes only. "Automark empty locations" marks locations without foxes after every turn (according to currently opened locations).
Download (0.045MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1032 downloads
FXRuby 1.6.5
FXRuby is a Ruby extension module that provides an interface to the FOX GUI toolkit. more>>
FXRuby project is a Ruby extension module that provides an interface to the FOX GUI toolkit.
Enhancements:
- This release fixes a number of recently reported problems, and adds preliminary support for keyword-style arguments.
<<lessEnhancements:
- This release fixes a number of recently reported problems, and adds preliminary support for keyword-style arguments.
Download (1.7MB)
Added: 2007-01-23 License: LGPL (GNU Lesser General Public License) Price:
1007 downloads
libfoXdesktop 0.2.12
libfoXdesktop is a foXdesktops core library. more>>
libfoXdesktop is foXdesktops core library, i.e. every foXdesktop application uses it.
It extends FOX (foXdesktops widget set) with additional classes, icons and registry entries.
There are certain standards for all foXdesktop applications. Since not everything is described here yet have a look at e.g. foXman. For an example implementation. Each foXdesktop application uses GNU automake/autoconf (not yet documented).
Make sure you use libfoXdesktops FDApp instead of FXApp for using icon files instead of harwired icons (see below) and having an easy way to invoke your programs help (see below).
If your application provides a preferences dialogue you are recommended to make it a foXdesktop component so that it appears in foXcontrol too.
<<lessIt extends FOX (foXdesktops widget set) with additional classes, icons and registry entries.
There are certain standards for all foXdesktop applications. Since not everything is described here yet have a look at e.g. foXman. For an example implementation. Each foXdesktop application uses GNU automake/autoconf (not yet documented).
Make sure you use libfoXdesktops FDApp instead of FXApp for using icon files instead of harwired icons (see below) and having an easy way to invoke your programs help (see below).
If your application provides a preferences dialogue you are recommended to make it a foXdesktop component so that it appears in foXcontrol too.
Download (0.40MB)
Added: 2005-04-27 License: LGPL (GNU Lesser General Public License) Price:
1641 downloads
FoX Desktop 1.0 Professional
FoX Desktop is a Fedora-based desktop-oriented linux distribution. more>> <<less
Download (3093MB)
Added: 2006-04-09 License: GPL (GNU General Public License) Price:
1311 downloads
Other version of FoX Desktop
License:GPL (GNU General Public License)
Erwin 0.8
Erwin projetc is a really simple html editor. more>>
Erwin projetc is a really simple html editor.
Main features:
- really really simple text editor
- preview rendered html page
- support for html tags
- intelligent tag closer
- dragndrop support
- source highlighting
Enhancements:
- implemented a searchbar like firefox has
- and probably some other changes
- bumped version to 0.8
- released as 0.8 the "Like a fox" release
<<lessMain features:
- really really simple text editor
- preview rendered html page
- support for html tags
- intelligent tag closer
- dragndrop support
- source highlighting
Enhancements:
- implemented a searchbar like firefox has
- and probably some other changes
- bumped version to 0.8
- released as 0.8 the "Like a fox" release
Download (0.19MB)
Added: 2006-05-24 License: GPL (GNU General Public License) Price:
838 downloads
Download (4.0MB)
Added: 2007-08-12 License: GPL v3 Price:
814 downloads
foXcommander 0.0.12
foXcommander is the foXdesktop file manager. more>>
foXdesktop is an attempt to create a new UNIX-based desktop environment using FOX, a multi-platform widget set written in C++.
Main features:
- User friendliness for beginners, power users and programmers
- Modularity: The opposite to "do everything in one place", but not necessarily sacrificing the idea of embeddable objects :-)
- Flexibility: All foXdesktop application are supposed to work together as a family
- Compatibility and standards conformity
As a result every foXdesktop application is supposed to both integrate seamlessly into an existing foXdesktop environment and still be useful standing alone and/or within another environment (GNOME, KDE, Enlightenment...).
Although FOX is a multi-platform library, foXdesktop is probably UNIX-specific. But, it is possible to not use the Windows Explorer interface on win32 platforms, thus it may be possible to create a new win32 desktop...
This project was origonally started by Josua Groeger, but he has lost interest in maintining it - as such I am the new maintainer (Mathew Robertson).
<<lessMain features:
- User friendliness for beginners, power users and programmers
- Modularity: The opposite to "do everything in one place", but not necessarily sacrificing the idea of embeddable objects :-)
- Flexibility: All foXdesktop application are supposed to work together as a family
- Compatibility and standards conformity
As a result every foXdesktop application is supposed to both integrate seamlessly into an existing foXdesktop environment and still be useful standing alone and/or within another environment (GNOME, KDE, Enlightenment...).
Although FOX is a multi-platform library, foXdesktop is probably UNIX-specific. But, it is possible to not use the Windows Explorer interface on win32 platforms, thus it may be possible to create a new win32 desktop...
This project was origonally started by Josua Groeger, but he has lost interest in maintining it - as such I am the new maintainer (Mathew Robertson).
Download (0.36MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1640 downloads
FoX Linux 2.0 Beta 1
FoX Linux is a single-CD desktop-oriented Linux distribution based on Fedora Core, with KDE as its preferred desktop. more>>
FoX Linux is a single-CD desktop-oriented Linux distribution based on Fedora Core, with KDE as its preferred desktop, main components recompiled for the i686 architecture and out-of-the-box support for popular multimedia formats.
Now you can be smart and choose your operating system. FoX Linux is a full operating system compiled for desktop.
You will spend few minutes to install FoxLinux and the installation is extremely easy Fox contains all applications wich you need for office, for internet, for security and for your multimedia files.
Is it expensive? Now you become really clever! The distribution is totally free thanks to opensource.
What are you waiting for? Download Fox and become clever,become a fox!
<<lessNow you can be smart and choose your operating system. FoX Linux is a full operating system compiled for desktop.
You will spend few minutes to install FoxLinux and the installation is extremely easy Fox contains all applications wich you need for office, for internet, for security and for your multimedia files.
Is it expensive? Now you become really clever! The distribution is totally free thanks to opensource.
What are you waiting for? Download Fox and become clever,become a fox!
Download (3093MB)
Added: 2007-04-02 License: GPL (GNU General Public License) Price:
568 downloads
FOX Calculator 2.1.0
FOX Calculator is a desktop calculator written in FOX. more>>
FOX Calculator is a desktop calculator written in FOX.
The FOX Calculator is a simple desktop calculator geared toward the programmer.
It supports not only a full complement scientific functions, but also common operations that programmers need, such as bitwise operations, bitwise shifting, and base-2 logarithm and exponents, and numeric conversion between hexadecimal, octal, binary, and decimal.
It implements correct operator precedences, and features a constant memory which permanently stores its value even if you exit the calculator and restart it later.
Main features:
- + Addition
- - Substraction
- * Multiplication
- / Floating point division
- AND Bit-wise logical and
- OR Bit-wise logical or
- XOR Bit-wise logical exclusive or
- NOT Bit-wise logical not
- SHL Bit-wise shift left
- SHR Bit-wise shift right
- SAR Bit-wise signed shift right (hit the "inv" button first)
- mod Integer modulo
- div Integer division (hit the "inv" button first
- sin Sine
- cos Cosine
- tan Tangent
- asin Inverse sine or arc sine (hit the "inv" button first)
- acos Inverse cosine
- atan Inverse tangent
- sinh Hyperbolic sine (hit the "hyp" button first)
- cosh Hyperbolic cosine
- tanh Hyperbolic tangent
- asinh Inverse hyperbolic sine (hit the "hyp" and "inv"buttons first)
- acosh Inverse hyperbolic cosine
- atanh Inverse hyperbolic tangent
- log Base 10 logarithm
- ln Natural logarithm
- 2log Base 2 logarithm
- x! Factorial
- nPr Permutations
- nCr Combinations
- sqrt Square root
- x^y X raised to the power y
- 1/x Reciprocal
- 10^x Base 10 exponentiation (hit the "inv" button first)
- e^x Exponentiation
- 2^x Base 2 exponentiation
- x^1/y X raised to the power 1/y
- x^2 X squared
<<lessThe FOX Calculator is a simple desktop calculator geared toward the programmer.
It supports not only a full complement scientific functions, but also common operations that programmers need, such as bitwise operations, bitwise shifting, and base-2 logarithm and exponents, and numeric conversion between hexadecimal, octal, binary, and decimal.
It implements correct operator precedences, and features a constant memory which permanently stores its value even if you exit the calculator and restart it later.
Main features:
- + Addition
- - Substraction
- * Multiplication
- / Floating point division
- AND Bit-wise logical and
- OR Bit-wise logical or
- XOR Bit-wise logical exclusive or
- NOT Bit-wise logical not
- SHL Bit-wise shift left
- SHR Bit-wise shift right
- SAR Bit-wise signed shift right (hit the "inv" button first)
- mod Integer modulo
- div Integer division (hit the "inv" button first
- sin Sine
- cos Cosine
- tan Tangent
- asin Inverse sine or arc sine (hit the "inv" button first)
- acos Inverse cosine
- atan Inverse tangent
- sinh Hyperbolic sine (hit the "hyp" button first)
- cosh Hyperbolic cosine
- tanh Hyperbolic tangent
- asinh Inverse hyperbolic sine (hit the "hyp" and "inv"buttons first)
- acosh Inverse hyperbolic cosine
- atanh Inverse hyperbolic tangent
- log Base 10 logarithm
- ln Natural logarithm
- 2log Base 2 logarithm
- x! Factorial
- nPr Permutations
- nCr Combinations
- sqrt Square root
- x^y X raised to the power y
- 1/x Reciprocal
- 10^x Base 10 exponentiation (hit the "inv" button first)
- e^x Exponentiation
- 2^x Base 2 exponentiation
- x^1/y X raised to the power 1/y
- x^2 X squared
Download (1.1MB)
Added: 2006-09-27 License: GPL (GNU General Public License) Price:
1132 downloads
X File Explorer 1.00
X File Explorer is a file manager for the X Window System. more>>
X File Explorer (Xfe) is an MS-Explorer like file manager for X. X File Explorer is based on the popular, but discontinued, X Win Commander, originally developed by Maxim Baranov.
Xfe aims to be the file manager of choice for all the Unix addicts!
Why another file manager when the excellent Konqueror or Nautilus exist on Linux systems? The answer is quite simple : these file managers are very good, features rich and look wonderful, but they are like a brontosaurus when you are a console addict and only want to copy some files or delete it. Another problem is that they require either the whole Gnome or KDE desktops to be installed on your system!
On the contrary, Xfe is small, very rapid and only requires the FOX library to be fully functional. It can be launched from the command line in a fraction of second, and can efficiently complete the set of command line tools.
Main features:
- Four different file manager styles (one panel, two panels, tree list and one panel, tree list and two panels)
- Integrated text viewer (X File View, xfv)
- Integrated RPM viewer / installer / uninstaller (X File Query, xfq)
- Status line
- File associations
- Auto save registry
- Right mouse click pop-up menu in tree list and file list
- Change file(s) attributes
- Mount/Unmount devices (for Linux only)
- Toolbar
- Bookmarks (up to 20)
- Color schemes (GNOME, KDE, Windows...)
- Drag and Drop ( ctrl -> copy, shift -> move, alt -> symlink )
- Create / Extract archives (tar, zip, gzip, bzip2, compress formats are supported)
- Tool tips for long file names
- Progress bars or dialogs for lengthy file operations
- Image preview as thumbnails
- Ability to enqueue multimedia files (open command)
Key bindings:
- Help - F1
- View - F3, return
- Edit - F4
- Copy - F5, ctrl-c
- Cut - ctrl-x
- Paste - ctrl-v
- Move - F6, ctrl-d
- Rename - ctrl-n
- Delete - F8, del, ctrl-del
- Symlink - ctrl-s
- New file - F2
- New folder - F7
- Properties - F9
- Tree and one panel - ctrl-F1
- Tree and two panels - ctrl-F2
- One panel - ctrl-F3
- Two panels - ctrl-F4
- Hidden files - ctrl-F5
- Hidden folders - ctrl-F6
- Execute - ctrl-e
- Go home - ctrl-h
- Go up - backspace
- Terminal - ctrl-t
- Console file manager - ctrl-k
- Refresh - ctrl-r
- Select all - ctrl-a
- Deselect all - ctrl-z
- Invert selection - ctrl-i
- Add bookmark - ctrl-b
- Mount (Linux only) - ctrl-m
- Unmount (Linux only) - ctrl-u
- Quit - ctrl-q
<<lessXfe aims to be the file manager of choice for all the Unix addicts!
Why another file manager when the excellent Konqueror or Nautilus exist on Linux systems? The answer is quite simple : these file managers are very good, features rich and look wonderful, but they are like a brontosaurus when you are a console addict and only want to copy some files or delete it. Another problem is that they require either the whole Gnome or KDE desktops to be installed on your system!
On the contrary, Xfe is small, very rapid and only requires the FOX library to be fully functional. It can be launched from the command line in a fraction of second, and can efficiently complete the set of command line tools.
Main features:
- Four different file manager styles (one panel, two panels, tree list and one panel, tree list and two panels)
- Integrated text viewer (X File View, xfv)
- Integrated RPM viewer / installer / uninstaller (X File Query, xfq)
- Status line
- File associations
- Auto save registry
- Right mouse click pop-up menu in tree list and file list
- Change file(s) attributes
- Mount/Unmount devices (for Linux only)
- Toolbar
- Bookmarks (up to 20)
- Color schemes (GNOME, KDE, Windows...)
- Drag and Drop ( ctrl -> copy, shift -> move, alt -> symlink )
- Create / Extract archives (tar, zip, gzip, bzip2, compress formats are supported)
- Tool tips for long file names
- Progress bars or dialogs for lengthy file operations
- Image preview as thumbnails
- Ability to enqueue multimedia files (open command)
Key bindings:
- Help - F1
- View - F3, return
- Edit - F4
- Copy - F5, ctrl-c
- Cut - ctrl-x
- Paste - ctrl-v
- Move - F6, ctrl-d
- Rename - ctrl-n
- Delete - F8, del, ctrl-del
- Symlink - ctrl-s
- New file - F2
- New folder - F7
- Properties - F9
- Tree and one panel - ctrl-F1
- Tree and two panels - ctrl-F2
- One panel - ctrl-F3
- Two panels - ctrl-F4
- Hidden files - ctrl-F5
- Hidden folders - ctrl-F6
- Execute - ctrl-e
- Go home - ctrl-h
- Go up - backspace
- Terminal - ctrl-t
- Console file manager - ctrl-k
- Refresh - ctrl-r
- Select all - ctrl-a
- Deselect all - ctrl-z
- Invert selection - ctrl-i
- Add bookmark - ctrl-b
- Mount (Linux only) - ctrl-m
- Unmount (Linux only) - ctrl-u
- Quit - ctrl-q
Download (1.6MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
839 downloads
FX-Repton 0.6
FX-Repton is a portable Repton 3 clone game. more>>
FX-Repton project is a portable Repton 3 clone game.
t uses the portable FOX Toolkit library. The original Repton 3 game was produced on the BBC Micro and was the third hit Repton game for Superior Software.
This game is available with sources for UNIX and Windows.
The only keys you need to use are the four arrow keys. The objective of the game is to collect all the diamonds (in the Repton 3 episodes, in the others the objects may change) and get the bomb before the time out.
The key bindings
Key Description
F2 Restart the level
P Pause the game
ESC Minimize the game
Alt-X Quit the game
Up Move Repton up
Down Move Repton down
Left Move Repton left
Right Move Repton right
Hints:
- If you wish to know what a single object is, you might find a brief description in the Legend Window, from the Help ? menu.
- The Map Window may give you some help during playing (in the Help ? menu, too).
- Please remember to annotate the password, once you have finished a level.
- If you do not like the graphics of a certain episode and/or you are more familiar with another scheme, during playing you can load the graphics from another episode by choosing it from the Episodes menu while keeping down the SHIFT key.
<<lesst uses the portable FOX Toolkit library. The original Repton 3 game was produced on the BBC Micro and was the third hit Repton game for Superior Software.
This game is available with sources for UNIX and Windows.
The only keys you need to use are the four arrow keys. The objective of the game is to collect all the diamonds (in the Repton 3 episodes, in the others the objects may change) and get the bomb before the time out.
The key bindings
Key Description
F2 Restart the level
P Pause the game
ESC Minimize the game
Alt-X Quit the game
Up Move Repton up
Down Move Repton down
Left Move Repton left
Right Move Repton right
Hints:
- If you wish to know what a single object is, you might find a brief description in the Legend Window, from the Help ? menu.
- The Map Window may give you some help during playing (in the Help ? menu, too).
- Please remember to annotate the password, once you have finished a level.
- If you do not like the graphics of a certain episode and/or you are more familiar with another scheme, during playing you can load the graphics from another episode by choosing it from the Episodes menu while keeping down the SHIFT key.
Download (0.63MB)
Added: 2006-12-24 License: GPL (GNU General Public License) Price:
1040 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above yiffy fox search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed