Mac OS X v10.6: Mac 101 - Finder and the desktop

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS Mac OS X v10.6: Mac 101 - Finder and the desktop
# 1  
Old 08-27-2009
Mac OS X v10.6: Mac 101 - Finder and the desktop

The Finder lets you organize, view, and access practically everything on your Mac, including applications, files, folders, discs, SD memory cards, and shared drives on your network. It is represented by a blue smiling face icon on the Dock, as shown below (clicking the Finder icon in the Dock brings the Finder to the foreground).The desktop is the space on your screen where you see file, folder, and volume icons. When you connect a hard disk, DVD or SD memory card to your Mac, its icon shows up on the desktop and Finder window sidebars.Summary of improvements in Snow Leopard The Finder has been completely rewritten using the modern Cocoa framework in Mac OS X, taking advantage of the new technologies in Snow Leopard--including 64-bit support and Grand Central Dispatch. The familiar Finder interface is unchanged, but you will discover the Finder is faster and more responsive. It also includes an enhanced icon view with live file previews, so you can thumb through a multipage document or even watch a QuickTime movie. Snow Leopard improves the reliability of ejecting discs and external drives. Sometimes when an application or process is using the files on a drive, Mac OS X prevents you from ejecting it, but you might not know why. In Snow Leopard, you should see fewer of those situations, and when you do get them, you’ll be told exactly what is using the drive, so you can quit it and eject the drive properly.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Mac::AETE::App(3)					User Contributed Perl Documentation					 Mac::AETE::App(3)

NAME
Mac::AETE::App - reads the Macintosh Apple event dictionary from an application. SYNOPSIS
use Mac::AETE::App; use Mac::AETE::Format::Dictionary; $app = App->new("My Application"); $formatter = Dictionary->new; $app->set_format($formatter); $app->read; $app->write; DESCRIPTION
The App module simplifies reading the Apple event dictionary from an application. It will launch the application if necessary to obtain the dictionary. Methods new Example: ($name is the name of the application.) use Mac::AETE::App; use Mac::AETE::Format::Dictionary; $app = App->new($aete_handle, $name); read (Inherited from Mac::AETE::Parser.) Reads the data contained in the AETE resource or handle. Example: $app->read; set_format (Inherited from Mac::AETE::Parser.) Sets the output formatter used during by the 'write' subroutine. Example: $formatter = Dictionary->new; $app->set_format($formatter); copy (Inherited from Mac::AETE::Parser.) Copies all suites from one Parser object into another. Example: $aete2 = Parser->new($aete_handle2, $another_name); $app->copy($aete2); copies the suites from $aete2 into $aete. merge (Inherited from Mac::AETE::Parser.) Merges suites from one Parser object into another. Only the suites that exist in both objects will be replaced. Example: $aete3 = Parser->new($aete_handle2, $another_name); $app->merge($aete3); write (Inherited from Mac::AETE::Parser.) Prints the contents of the AETE or AEUT resource using the current formatter. $app->write; INHERITANCE
Inherits from Mac::AETE::Parser. AUTHOR
David Schooley <dcschooley@mediaone.net> perl v5.10.0 2005-05-16 Mac::AETE::App(3)