Main > Free Download Search >

Free ae software for mac

ae

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 11
Araelium Edit 1.0pr6

Araelium Edit 1.0pr6


Araelium Edit - General purpose software development application more>> Araelium Edit - General purpose software development application

Araelium Edit is a general purpose software development application designed specifically for Mac OS X.
The tools introduced with this release focus on source code editing and project organization. Exploring what the application has to offer is best done by reviewing the four main work spaces: the project window, the document editor window, the global resources window, and the application preferences.
!! NOTE !!
This is BETA software. Do NOT use it with any files or with any servers that cannot be restored to their original state. This software should be used on BACKUP COPIES of FILES only, and the file transfer tools used with test servers only.
Araelium Edit has known bugs therefore it may delete or damage files. We repeat, use this with non-critical files and servers only.

Enhancements
- This release contains new search highlighting in documents, multi-line editing, an overhaul of the project shelf which will enable advanced project related features in future versions, several improvements file transfers, and several fixes and UI improvements.
- All-new Project shelf (requires recreating projects) now includes better smart folders and new bookmarks.
- Add project bookmarks to lines in documents.
- Custom implemented Open Recent menu which keeps documents and projects separately. Previously if you opened 2 projects and 9 files and your maximum recent docs limit was 10, the first projec twould be knocked off of the list. Now they are independent, each with their own limit.
- New style of highlighting text from search results and jumping to a symbol has been implemented.
- Multi-line editing is now functional. Option-click at the start of each line to be edited (command-fwd-delete is broken, dont use that with multiple line editing).
- Improvements to Upload Newer functionality.
- SFTP fixes. Connecting twice should no longer cause problems.
- AE is now registered with Unsanitys SmartCrashReports which enables you to send crash reports directly to us when AE crashes.
- The servers lists in the servers editor window and project settings window are now properly sorted alphabetically.
- Active timeouts on an FTP server no longer displays an error message.
- Connecting to a server when the initial path specified in the AE server definition is not empty, and not "/" no longer appears as if AE is hung waiting on an action to complete.
- Disconnecting from a server while a number of transfers are running now will no longer accidently trigger itself to keep transfering in the background while appearing to have disconnected.
- Fixed mysterious stalling that could occur when uploading a large number of files/folders at once.
- When open multiple documents by dragging a folder onto the application, theres now better validation for not attempting to open images & other non-text files.

<<less
Download (9.6MB)
Added: 2007-10-18 License: Freeware Price: FREE
202 downloads
Mac Uptime PPC 1.210

Mac Uptime PPC 1.210


Mac Uptime PPC - Display the time since the last reboot more>>
Mac Uptime is a simple program to display the time since the last reboot. On various Unixes this is called "uptime".
You may also copy-paste uptimes to mails so you may impress your friends how long your Mac is up. You may also automate this by using AppleScript.
New in the PPC version is the widely configurable display.
Its Freeware, so dont hesitate to download it. Theres also a 68K Version available.
Enhancements:
- Fixed a minor bug, when AE were not handled.
<<less
Download (93KB)
Added: 2006-03-08 License: Freeware Price:
1326 downloads
Qore 0.7.4

Qore 0.7.4


Modular, multi-threaded, SQL-integrated, weakly-typed scripting language with procedural and object-oriented features more>> Modular, multi-threaded, SQL-integrated, weakly-typed scripting language with procedural and object-oriented features

Qore also features easy-to-use and powerful structures, data types, and operators, and a clean and easy-to-read/learn syntax.
Qore Programming Language features Oracle and MySQL DBI drivers, optional TIBCO AE integration, and easy date arithmetic, is very scalable on SMP systems, and much more.

Enhancements
- BUG FIX: fixed localtime() when called with no argument to return the current date and time as per documentation
- BUG FIX: fixed a race condition that could cause a deadlock when calling pthread_join() when Qore code calls "exit()" when multiple threads are running
- BUG FIX: fixed the Dir:listFiles() method; the mask used would not filter out directories
- BUG FIX: fixed crashes in the File class due to unsigned data type being used and the comparison (< 0) that signaled an error always failed; the crash would happen when a non-File object was read
- BUG FIX: fixed outputting recursive data structures with the %n and %N printf format specifiers (would otherwise result in a crash - for example, when an object contains a list that also contains the object, etc)
- BUG FIX: fixed object access deadlock scenarios
- BUG FIX: fixed the "-" operator with: hash-string and hash-list (also hash-=string and hash-=list) to remove the value(s) from the hash, not call the delete operator
- BUG FIX: NULL values are serialized as "null" JSON values
- BUG FIX: fixed parsing of a corner case of marginally valid XML-RPC
- BUG FIX: fixed XML-RPC serialization to handle NOTHING (no value) and NULL identically
- BUG FIX: fixed XML-RPC serialization to never output an empty element, as it could potentially break some implementations (the XML-RPC spec is not very clear on this). Note: we send empty value elements: when serializing NOTHING or NULL, which may not be correct either
- BUG FIX: do not assume that a trailing null should terminate the string when reading string data from files; include the trailing null in the string
- BUG FIX: fixed a bug parsing base64 strings when newlines and/or linefeeds trailed the base64-encoded data
- BUG FIX: fixed outputting %% as % in *printf*() functions
- BUG FIX: fixed a bug parsing hashes where the hash key was given as a constant
- BUG FIX: fixed a bug in the delete operator where shared data was being updated in place instead of copied and then updated
- BUG FIX: fixed some race conditions that could cause deadlocks with the getAllThreadCallStacks() function (not normally enabled by default)
- BUG FIX: ignore
- and
when parsing base64-encoded strings
- BUG FIX: fixed a crashing bug when trying to copy member elements of a deleted object
- BUG FIX: fixed the foreach statement when used with a reference and the break statement is used
- BUG FIX: fixed a rare reference dependency bug where system classes were being destroyed while still referenced in user code
- BUG FIX: fixed %= with a modula operand of 0 to set the lvalue to 0 (previously the expression was ignored if the modula operand was 0)
- added the abilty for a Condition variable to wait on RWLock objects as well as Mutex objects
- dereferencing a hash or object with a list will return a slice of the hash or object as a hash: ex: $hash.("key1", "key2")
- allow %include parse directives to quote the file names (ignore leading and trailing quotes around the file name)
- new Socket class methods: + Socket:isWriteFinished(): for future support for non-blocking writes + Socket:setNoDelay(): to set the TCP_NODELAY option + Socket:getNoDelay(): returns value of the TCP_NODELAY option
- new functions to allow for explicitly specifying the encoding when serializing XML-RPC strings: + makeXMLRPCCallStringWithEncoding() + makeXMLRPCCallStringArgsWithEncoding() + makeXMLRPCResponseStringWithEncoding() + makeXMLRPCFaultResponseStringWithEncoding() + makeFormattedXMLRPCCallStringWithEncoding() + makeFormattedXMLRPCCallStringArgsWithEncoding() + makeFormattedXMLRPCResponseStringWithEncoding() + makeFormattedXMLRPCFaultResponseStringWithEncoding()
- added new HTTPClient methods for manipulating the TCP_NODELAY setting: + HTTPClient:setNoDelay() + HTTPClient:getNoDelay()
- now the XmlRpcClient and JsonRpcClient constructors accept an optional second argument that, when True, will inhibit the immediate connection attempt on the socket and instead allow the socket connections to be either manually established or established on demand with the first request

<<less
Download (2.3MB)
Added: 2009-06-11 License: GPL Price: FREE
203 downloads
VeeYou 2.2.1

VeeYou 2.2.1


VeeYou offers you a free yet all-in-one set of 14 plugins for Final Cut Pro, Final Cut Express, Motion and After Effects. more>>

VeeYou 2.2.1 offers you a free yet useful set of 14 plugins for Final Cut Pro, Final Cut Express, Motion and After Effects. It can read the audio directly from an audio layer in AE and directly from a WAV or AIFF file in FCP, FCE and Motion. High resolution vector textures is another strong point of this tool.

Major Features:

  1. Now 14 plugins, 6 New plugins EQ 127 Band Linear, WV Audio Radar, EQ Line Segments, WV 3D Waveforms, WV Voiceprint
  2. Audio tracks can be read directly from an audio file (WAV or AIFF) in all hosts.
  3. Audio track can now be read directly from an audio layer in After Effects.
  4. Graphical drop down menus displaying textures and graphic styles make designing your animation easy.
  5. Higher resolution audio synchronization for better quality animations.
Requirements:
  • Mac OS X 10.5.4 ( or later)
  • G5 or Intel processor
  • CoreImage capable 128MB graphics card.
  • 256MB graphics card required for HD rendering
  • One of the following hosts:
  • Final Cut Studio 2, Final Cut Pro 6.0.2 (or later), Motion 3.0.2 (or later)
  • Final Cut Express 4.0 or later
  • After Effects CS3/CS4
<<less
Download (21MB)
Added: 2009-08-02 License: Freeware Price: FREE
downloads
SuperTIFF 1.0

SuperTIFF 1.0


SuperTIFF provides more complete support for TIFF than AE does natively more>>
SuperTIFF is a free plug-in for Adobe After Effects that provides more complete support for TIFF than AE does natively. Photoshop is able to create TIFF files that are 16-bit and use Zip compression which After Effects is currently unable to read or write.
Main features:
- Support for 16-bit TIFFs
- Zip compression support
- After Effects native plug-in
- Single-channel (grayscale) saving option
- Floating point TIFF support (for High Dynamic Range images)
- 30% faster than Adobes plug-in
- Better integration with AEs Output Module dialog.
<<less
Download (204KB)
Added: 2005-10-31 License: Freeware Price:
1455 downloads
Pamplona Countdown Widget 1.0

Pamplona Countdown Widget 1.0


Pamplona Countdown Widget - Pamplona running of the bulls countdown and review more>>
Now you can see the Running of the Bulls from Pamplona, Espaa on your own desktop.

Enjoy the Encierros with toros from Domecq, Cebada Gago and the dreaded Victorinos and Miuras. If you find yourself wanting more, a countdown clicker lets you know how much time you have to buy a ticket for the 2007 San Fermines!

Remember you have to learn the chant:

“A San Ferma an pedimos, por ser nuestro patran, nos guaa ae en el encierro dandonos su bendician. A San Ferman pedimos, por ser nuestro patran, nos guae en el encierro dandonos su bendician. Viva San Fermin, Gora San Fermin”
<<less
Download (348KB)
Added: 2006-08-02 License: Freeware Price:
1179 downloads
iMailist 2.0.8

iMailist 2.0.8


iMailist is a software allowing the sending of mails to format HTML to a whole mailing-list more>>
iMailist is a software allowing the sending of mails to format HTML to a whole mailing-list.
Main features:
- Address Book is integrated
- Preview the downloaded HTML source
- Multiples mailing Lists management
- SMTP Authentification
- Import mailings lists from text files.
- You can Add/Remove mails and lists as you wish.
Enhancements:
- Importants bugs in the Automatic base URL detection fixed
- More specials characters are supported (like à , à ...).
<<less
Download (427KB)
Added: 2006-04-29 License: GPL Price:
1279 downloads
rb-appscript 0.5

rb-appscript 0.5


rb-appscript gives a tool to monitor scriptable Mac OS X applications applying ordinary Ruby scripts. more>>

rb-appscript 0.5 gives a tool to monitor scriptable Mac OS X applications applying ordinary Ruby scripts. Appscript makes Ruby a serious alternative to Apples own AppleScript language for automating your Mac.

Simple all-in-one binary installers are provided for Apple-installed Ruby 1.8 on Mac OS 10.4.x, and source files are included for installing appscript on other OS/Ruby versions. Example scripts, documentation and tutorial are also included.

Enhancements:

  • OSAX module no longer errors on import in 10.5 if a ScriptingAdditions folder (e.g. ~/Library/ScriptingAdditions) doesn't exist
  • added Appscript: Application#is_running method
  • added hfs_path, #hfs_path methods to MacTypes: Alias, MacTypes:FileURL; existing path, #path methods now use CFURL functions to convert between POSIX paths and URLs
  • aem/appscript now raises Connect: CantLaunchApplicationError instead of AE:MacOSError if unable to launch an application. Users should update existing code as necessary.
  • fixed extconf.rb so that universal binaries build correctly
  • built-in help system now uses ASDictionary 0.9.0+ instead of AppscriptHelpAgent. (AppscriptHelpAgent is no longer used as-of rb-appscript 0.5.0 and may be removed if previously installed.)
  • #help method now writes messages to stderr instead of stdout
  • Appscript: Reference#respond_to? now has identical signature to Object#respond_to? (optional second argument was previously missing)
  • fixed bug in AE.convert_long_date_time_to_unix_seconds (used to unpack AEDescs of typeLongDateTime) where it would crash if passed a FixNum instead of a BigNum
  • now allow methods that have been added to Object class at runtime (e.g. importing the pp module adds #pretty_print and #pretty_inspect) to be invoked on Appscript:Reference and Appscript:Application instances, assuming that the reference object doesnt already have a property/element/command by the same name. In other words, instances of these classes now behave more or less the same as instances of ordinary subclasses that use bound methods rather than #method_missing to handle incoming messages. Previously, calling (e.g.) #pretty_inspect on an appscript reference would result in a property/element/command not found error.
  • improved behaviour of Appscript:Application#AS_new_reference when argument is nil (now returns a new reference to the root application object)
  • OSAX:Application initialiser now optionally accepts static terminology glue module as its second argument. This is partly to provide scripts that need to run in 64-bit processes with a workaround for accessing the OSAX module, which cant yet automatically obtain osax terminology under 64-bit (see TODO file).
  • added process_exists_for_path?, process_exists_for_pid?, process_exists_for_url?, process_exists_for_desc? class methods to AEM: Application
  • deprecated AEM:Application.is_running? (will be removed in 1.0.0); any existing code that uses this method should be updated to use AEM: Application.process_exists_for_path? instead
  • fixed minor formatting flaw in generic references #to_s method
  • AEM:Application is now a subclass of AEMReference: Base, allowing aem Codecs instances to pack it
  • added AB_export_vcard.rb sample script

Requirements:

  • Mac OS X 10.3 or later
  • Ruby 1.8 or later.
<<less
Download (240K)
Added: 2007-12-27 License: Free Price:
downloads
Adobe After Effects plugin update 1.0

Adobe After Effects plugin update 1.0


Adobe After Effects plugin update - Plugin update for AE 6 more>>
The Adobe After Effects 6.0 Plug-in update fixes problems in the Radial Wipe effect and in OpenGL shadows on Mac OS X v.10.3.

Note: The After Effects 6.0 Plug-in update will modify only After Effects 6.0 Standard or Professional. It will work with the retail, education, and OEM versions of the product.

<<less
Download (57KB)
Added: 2006-05-12 License: Freeware Price:
1269 downloads
Automatic Duck Free XML Exporter 1.0

Automatic Duck Free XML Exporter 1.0


Automatic Duck Free XML Exporter is a smart plug-in which is useful for Final Cut Pro 4.1 or Final Cut Pro HD 4.5 more>>

Automatic Duck Free XML Exporter 1.0 is a smart plug-in which is useful for Final Cut Pro 4.1 or Final Cut Pro HD 4.5. Due to its richness of metadata, more and more developers are creating products that support Final Cut XML. Automatic Duck uses XML to translate FCP sequences with its Pro Import AE, Pro Import C3 and Pro Import PPro plug-ins. Other companies like Spherico and Digital Heaven also use FCP XML.

The purpose of this plug-in is to make exporting these XML files from FCP just a little easier, and who doesn't like a free product that makes life easier? The Automatic Duck Free XML Export plug-in exports a sequence to XML, the same XML that Final Cut exports natively. The advantage to Automatic Duck's plug-in is that the plug-in has no intermediate settings dialog and it also fills out the save dialog's file name field with the name of your sequence.

<<less
Added: 2005-01-30 License: Freeware Price:
downloads
Sapphire Plugins for Apple FxPlug Products 2.0.3

Sapphire Plugins for Apple FxPlug Products 2.0.3


Sapphire Plugins for Apple FxPlug Products 2.0.3 is a convenient video editing tool that contains more than 200 2D visual effects for the post production, film, broadcast and digital video industries. more>>

Sapphire Plugins for Apple FxPlug Products 2.0.3 is a convenient video editing tool that contains more than 200 2D visual effects for the post production, film, broadcast and digital video industries.

Sapphire Plug-ins extend the capabilities of editing and compositing workstations including Apple Final Cut Pro (FCP), Final Cut Express and Motion. The Sapphire VFX support the FxPlug API and Mac OS X (Leopard).

The plug-ins are resolution independent, supporting HD, 2K & 4K. Sapphire Plug-ins equips digital artists with state-of-the-art image processing and synthesis effects such as Glows, EdgeRays, LensFlare, Lightning, FilmEffect, FilmDamage, Cartoon, ZDefocus, BleachBypass, SwishPan, Light3D, Deband, Warps, Transitions and Textures.

They have been used extensively in an array of televison programs, music videos and feature films, including; Pirates of the Caribbean Trilogy, Spider-Man Trilogy, Transformers, Indiana Jones Series, The Lord of the Rings Trilogy, The Matrix Trilogy, X-Men Series, Lost and CSI. Pricing is $1699 for the entire package or $599 for one of four individual box sets.

Special upgrade pricing for existing customers with Sapphire v1 for After Effects is offered for $599 and $199, respectively. Customers with Sapphire v2 for After Effects can use the FxPlug version at no charge on the same workstation. A new license purchased for FxPlug also allows use of the AE version.

<<less
Download (11.1MB)
Added: 2009-04-22 License: update/patch Price:
9 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1