Main > Free Download Search >

Free classes software for mac

classes

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 795
OxMath Classes 2.0

OxMath Classes 2.0


OxMath Classes - OxMath 2D/3D Math Library more>>
Standalone 2D/3D math library (quaternion, vector, axis angle classes) with vector array classes for efficient vertex/triangle storage and batch processing. Also includes bounding volume / intersection classes, plus waveform "function" classes useful for procedural animations.

These classes have only been tested with Mac OS X Mach-O targets but have been written to support Windows and Linux as well. Mac PEF Carbon and Classic targets are NOT supported.

<<less
Download (76KB)
Added: 2007-04-28 License: Freeware Price:
911 downloads
BasaOne Classes 2.0

BasaOne Classes 2.0


BasaOne Classes enable you to speed up development with BasaOne by reusing already developed objects more>>
BasaOne Classes enable you to speed up development with BasaOne by reusing already developed objects.
Enhancements:
- This new release includes many new classes especially designed to aid in Widget development.
<<less
Download (900KB)
Added: 2005-07-06 License: Freeware Price:
1572 downloads
Zip Java Classes 1.0

Zip Java Classes 1.0


Zip Java Classes - Composes a zip archive from Java classes more>>
Zip Java Classes composes a zip archive from Java classes and zip files using the Macintosh ZipIt compress tool. This script has good ability to exclude source files other than the Java classes and zip from the selected files.

Select file(s) and folder(s) of Java classes and drop them onto this droplet icon. Then, all Java class files *.class and *.zip in the folders will be archived into a JavaClasses.zip file. Other files than *.class or *.zip will not be added to the archive.

The Java compiler javac of Apples MRJ 2.0 generates the compiled Java classes in the same folder as their source files. The JBindery application can build a Macintosh Java application by binding the Java classes and zip files in the particular folders. Unfortunately, the JBindery can not exclude other files than Java classes in the folders. It may include source files in it, alas!

Here is the way to compose Java application from the Java classes and zip files only. Let us use the Macintosh ZipIt 1.3.x to archive the Java classes and zip files and compress it. Fortunately, ZipIt is an AppleScriptable application so that we can commit a series of script commands to it and remove other files from the archive.

<<less
Download (5KB)
Added: 2006-01-31 License: Freeware Price:
1387 downloads
Clean Java Classes 1.0

Clean Java Classes 1.0


Clean Java Classes - Removes Java class files *.class generated by a Java compiler more>>
Clean Java Classes removes Java class files *.class generated by a Java compiler. Select file(s) or folder(s) and drop them on the droplet icon. Then all the class files in the folders and all subfolders will be deleted.
The folders search is done recursively.

If some folder becomes empty with no items in it, then it is also removed. On searching folders, the script also changes the viewby method of each folder to "View by Name".


<<less
Download (4KB)
Added: 2006-01-20 License: Freeware Price:
1374 downloads
Collect Java Classes 1.0

Collect Java Classes 1.0


Collect Java Classes - Collect Java classes in folders more>>
Collect Java Classes is a small AppleScript which collects Java classes *.class and *.zip in the folders. Select file(s) and folder(s) and drop them on this droplet icon. Then, all Java class files *.class and *.zip in the folders and subfolders will be collected.

The folders search is done recursively. On searching folders, the script also changes the viewby method of each folder to "View by Name". But if the folder is already viewed by Name, Size, Kind, or Date, then no changes happen.

The collected items are listed in gDocList as a list of aliases. You can give this alias list to open by your particular application.


<<less
Download (4KB)
Added: 2006-01-30 License: Freeware Price:
1362 downloads
FMOD Ex Audio Classes 0.6b

FMOD Ex Audio Classes 0.6b


FMOD Ex Audio Classes - hooks into the cross platform FMOD Ex audio library, supporting a wide range of audio formats more>>
FMOD is a cross platform audio library that supports a wide range of audio formats and playback options, including a physically correct 3D audio engine. The FMOD Ex Audio Classes leverage FMOD to create a simple but powerful audio interface for REALbasic. Note however, that these classes do not expose all of FMOD Exs functionality, nor are they wrappers to access the FMOD Ex API directly.
First, a little background... The FMOD Ex API supports multiple concurrent "system" objects which may map to multiple audio devices installed on the same machine. Consequentially, all audio samples, channels, and effects are owned by a single system object and can not be shared. If a system object is destroyed, all sounds, channels, groups, and effects created under that system become invalidated and accessing them will generate errors (or worse).
To simplify this situation within the REALbasic environment, these classes do not allow for more than one system object to be active at any given time. Under normal circumstances this should not cause any grief - you call FMEx.StartUp when your application is launched, load your audio samples, create player objects, etc., then call FMEx.ShutDown when your application quits and all will be fine. If you have a need to restart FMOD Ex however, all existing FMExAudio, FMExStream, and FMExSubMixer instances will point to invalid audio handles. There is error checking in place to avoid crashes if this situation should arise, but it can still be annoying. In order to properly restart FMOD Ex you should follow the steps below...
Call the Stop method on all existing FMExAudioPlayer and FMExAudioPlayer3D instances. You do not have to dispose of these objects, but calling Stop ensures the internal channel reference is reset.
Dispose of all FMExAudio, FMExStream, and FMExSubMixer instances (i.e. set them to Nil). Be sure to also dispose of any FMExAudio instances that have been assigned to FMExAudioPlayer.DefaultAudio properties.
Call FMEx.ShutDown, followed by FMEx.StartUp, then reload/recreate all required FMExAudio, FMExStream, and FMExSubMixer objects and re-route any submixers.
ByRef methods are provided to allow you to reuse existing FMExAudio, FMExStream, and FMExSubMixer instances by replacing the required data/handles. This can be much easier than recreating them from scratch.
These classes couldve been simplified further by automatically reference counting audio objects and starting/stopping FMOD Ex behind your back, but that would preclude the ability to restart the audio engine at any time, and greatly impair the start up options interface.
- Virtual Channels
One of FMOD Exs most touted features is automatic channel virtualization. This allows you to play sounds on more channels than are physically available and let FMOD Ex decide which are more important based on priority settings and 3D positioning. One caveat with virtualization is that you must call FMEx.Update as frequently as possible for this to actually work (e.g. in games youd typically call FMEx.Update every frame). NOTE: If youre already calling FMEx.Update for 3D audio you do not need to call it twice.
- MIDI
MIDI playback currently only works on Windows, and only if the default system sound font is installed (/windows/system32/drivers/gm.dls). Broader MIDI support is on the would-like list but primary tests point to a broken implementation on Mac OS X (i.e. some FMOD Ex bugs need to be fixed before this can work).
- Other bugs...
Stereo sounds routed to submixers may "pollute" the wave data of other submixers. Everything else works as expected however and the audio output is correct, but submixers may return incorrect values when calling their Level methods. This appears to be a bug within FMOD Ex itself but more testing is required.
<<less
Download (1.3MB)
Added: 2007-07-04 License: Freeware Price:
843 downloads
Display Overlord Classes 3.0.2

Display Overlord Classes 3.0.2


Display Overlord Classes is such a professional and useful tool that adds methods and classes to gather video device capabilities and capture displays, providing full screen environments suitable for games, multimedia presentations, or kiosk applications. more>> <<less
Download (45K)
Added: 2008-07-19 License: Free Price:
downloads
 
Other version of Display Overlord Classes
Display Overlord Classes 3.0.2Display Overlord Classes is a must- have tool which adds methods and classes to gather video device capabilities and capture displays
License:Freeware
Download (44KB)
downloads
Added: 2008-07-19
EV Nova Resource Editing Classes 1

EV Nova Resource Editing Classes 1


EV Nova Resource Editing Classes is a freeware including REALbasic Classes and Modules for producing your EV Nova Plugin editor more>>
EV Nova Resource Editing Classes 1 is a freeware including REALbasic Classes and Modules for producing your EV Nova Plugin editor. The classes allow you to read and write the nova resources via the use of templates.

Enhancements:

  • Initial Release

Requirements:

  • Mac OS 8.0 or later, REALbasic 5.5.
<<less
Download (40K)
Added: 2005-01-05 License: Free Price:
downloads
classgen 1.4

classgen 1.4


Free and open source utility for generating Java classes more>> Free and open source utility for generating Java classes

classgen is a Java class generator that is able to produce classes for abstract syntax trees in compiler frontends from simple and compact specifications.
Generated classes have builtin support for the Visitor design pattern.

System requirements:
-

Enhancements
- code cleanup
- moved sources to http://sf.net/projects/classgen/
- moved 1.3beta up to stable status

<<less
Download (454KB)
Added: 2009-06-01 License: GPL Price: FREE
188 downloads
class-dump 3.0

class-dump 3.0


Command line tool for Obj-C examination. more>>
class-dump is a command-line utility for examining the Objective-C segment of Mach-O files.

It generates declarations for the classes, categories and protocols. This is the same information provided by using otool -ov, but presented as normal Objective-C declarations.
<<less
Download (132KB)
Added: 2004-06-01 License: Freeware Price:
1972 downloads
 
Other version of class-dump
class-dump 2.1.5Steve Nygard - class-dump 2.1.5 brings you a useful tool which can check the Objective-C segment of Mach-O files. class-dump. class-dump 2
License:Freeware
Download (50.8KB)
1 downloads
Added: 2001-03-27
Class Checker 1.0

Class Checker 1.0


Class Checker is an effective tool for searching for nested tags with class attributes and reporting them for fixing. more>>

Class Checker 1.0 is an effective tool for searching for nested tags with 'class' attributes and reporting them for fixing.

Nested tags can result in inconsistent font display, especially when using percentages in your cascading style sheets.

Requirements: Mac OS X 10.x

<<less
Download (52.7KB)
Added: 2002-09-06 License: Freeware Price:
downloads
ClassLoader.lib 1.0

ClassLoader.lib 1.0


ClassLoader.lib allows you to import classes by their name and folder position more>>
ClassLoader.lib is a REALbasic library which allows you to import classes by their name and folder position, like the Java import directive.

<<less
Download (3KB)
Added: 2005-11-25 License: Freeware Price:
803 downloads
Class Checker X 1.0

Class Checker X 1.0


Class Checker 1.0 is a simple utility to scan for nested tags containing class attributes. Nested tags can result in inconsistent font display, especially when using percentages in your cascading more>> Class Checker 1.0 is a simple utility to scan for nested tags containing class attributes. Nested tags can result in inconsistent font display, especially when using percentages in your cascading style sheets. Just drag a folder on to Class Checker and all files and folders within it (files to be scanned must end in .htm or .html) will be checked & reported in a new text document (opens after script has run).
Requirements:
Mac OS X 10.1 or later.
<<less
Download (53K)
Added: 2002-09-07 License: Free Price:
downloads
Class Bingo 1.0

Class Bingo 1.0


Class Bingo is quickly becoming one of the most popular card games in the world. more>>

Class Bingo 1.0 is quickly becoming one of the most popular card games in the world.

Class Bingo is a very simple application developed to help teachers play bingo with their students. Class Bingo prints out a page of random bingo numbers for class sizes from 25 to 99 for the teacher and prints out bingo sheets for the class members.

<<less
Download (2.8MB)
Added: 2009-02-18 License: Freeware Price:
downloads
 
Other version of Class Bingo
Class Bingo 1.0Class Bingo is an easy to use application designed to help teachers play bingo with their students. Class Bingo is an easy to use application designed
License:Free
Download (2.8MB)
downloads
Added: 2009-02-18
ODBC Cocoa Class Samples 1.0

ODBC Cocoa Class Samples 1.0


ODBC Cocoa Class Samples - Classes to access sql server more>>
The ODBC Cocoa Class Samples package provides different cocoa samples, some are inherent to the ODBC access to sql databases.

Completly freeware.
<<less
Download (naMB)
Added: 2006-05-11 License: Freeware Price:
727 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5