Mac 101: Dashboard


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS Mac 101: Dashboard
# 1  
Old 11-11-2008
Mac 101: Dashboard

Not everything you do on your Mac requires a heavy-duty application. For those smaller tasks, Mac OS X features Dashboard, a semi-transparent layer that floats above your desktop at the press of a key, and provides access to several fun and functional, mini applications called widgets. Dashboard even includes widgets for some of your Mac applications, including Address Book and iTunes, which allow you to access your contacts and music, respectively, without having to switch over to the full application. But it doesn't end there, you can add more widgets to Dashboard and, if you're feeling really ambitious, you can even create your own widgets.By default, Dashboard starts up when you first turn on your Mac, but you won't actually see it until you open it by either clicking its icon in the Dock, pressing the F12 key or the Dashboard key (F4 on the aluminum keyboards). To hide Dashboard, click on any Dashboard area that doesn't contain a widget or press the F12 key again. Here's a quick start guide to Dashboard and the included widgets.

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)