Lecture Set 5 - Dashcode, Web Content and Web Apps for the Iphone

Total Page:16

File Type:pdf, Size:1020Kb

Lecture Set 5 - Dashcode, Web Content and Web Apps for the Iphone COMP327 Mobile Computing Lecture Set 5 - Dashcode, Web Content and Web Apps for the iPhone 1 In this Lecture Set • Dashcode and Web Apps • IDE This material will not • Dashcode Elements appear in the exam! It supports the First • Layout Assignment • Data Sources and Data Binding • Hints and tricks for Web Pages 2 This material will not appear in the exam! It supports the First Assignment Dashcode • Dashcode Integrated Development Environment • An IDE originally designed for Dashboard Widgets (Dashcode 1.0) • Web Apps and Safari Apps appeared in Dashcode 2.0 and 3.0 • Adheres to Web Standards • HTML5 and CSS3 support • Provides CSS templates, JavaScript Support, etc through a MVC model 3 This material will not appear in the exam! It supports the First Assignment Multiple Destinations • Projects can be built for both Safari and Mobile Safari (i.e. iPhone) • Allows simultaneous development for different types of platform • Code developed using JavaScript 4 This material will not appear in the exam! It supports the First Assignment Data binding • Supports the ability to bind data from a data source (RSS, XML, JSON etc) to elements on the canvas • Value Transformer methods can be used to modify data before being rendered on the page 5 This material will not appear in the exam! It supports the First Assignment Workflow • A simple guide takes the developer step by step through the development process • Each workflow is tuned for each template 6 This material will not appear in the exam! It supports the First AssignmentGetting around the IDE Navigator Canvas Inspector 7 This material will not appear in the exam! It supports the First AssignmentExploring the Navigator • Projects include various resources (files) organised in a logical directory structure • index.html provides access to the App • css files to control the presentation • java script files contain the widget methods • Editor provides different views on each file type • Library Pane provides access to new widgets or useful code fragments File Navigator Library File List Data Sources 8 This material will not appear in the exam! It supports the First AssignmentDeveloping a simple Web App • Aim is to develop a web app to list details about the First Semester 3rd Year Courses 9 This material will not appear in the exam! It supports the First Assignment Creating a simple App • Start Dashcode • Uncheck Safari • Select Browser 10 This material will not appear in the exam! It supports the First Assignment Creating a simple App • Personalising the Project • Change the name of the project • Double click the title on the canvas, and change the name 11 This material will not appear in the exam! It supports the First Assignment Creating a simple App • Changing the data source • Click on the File Button to view the files • Select sampleData.js • Change the contents • Click on the Data Sources Button • Update data model • Browse the model for both the list and the dataSource itself 12 This material will not appear in the exam! It supports the First Assignment Creating a simple App • Bind the data to the widgets on the canvas • Whilst viewing the listLevel widget element • From “dataSource” • Bind the course element to the row title • Click on the data element, then drag from the hollow circle to the first “Item” 13 This material will not appear in the exam! It supports the First Assignment Creating a simple App • Bind the data to the widgets on the canvas • Whilst viewing the detailLevel • From “list” data • Bind the course element and title elements to the “Title” and “Location” elements • Also bind the title to the Description element 14 This material will not appear in the exam! It supports the First Assignment Creating a simple App • Add a browser button • Drag a button from the library pane • In the Inspector, under Behaviours, select onclick, and create a behaviour method • Add code to go to the course website 15 This material will not appear in the exam! It supports the First Assignment Creating a simple App • Create a transformer for the Description text • Open the Inspector to the bindings tag • Click on the Description element • Open the text option 16 This material will not appear in the exam! It supports the First Assignment Creating and laying out Web Apps • Dashcode provides a number of templates that can be modified for different applications • Much larger number for Dashboard Widgets, but fewer for Safari apps • Some templates have additional attributes that can be set in the “Application Attributes” tab • e.g. RSS feed readers support URLs 17 This material will not appear in the exam! It supports the First Assignment Custom Application Template • A blank web application • Contains basic files and images • No preconfigured abilities are included 18 This material will not appear in the exam! It supports the First Assignment Browser Template • Supports navigation through multiple levels of content • Stacks based template • Good for hierarchical content • Default application contains a top level list and second level detail • Selecting a list element reveals detail view • Additional levels can be added 19 This material will not appear in the exam! It supports the First AssignmentPodcast Web Application Template • Similar to Browser template • Lists podcasts, which can be selected and loaded • Properties include the Podcast URL 20 This material will not appear in the exam! It supports the First Assignment Utility Template • Supports a dual-level view app • First level (front) presents a writable window • Second view (settings) allow various parameters to be configured • An info button allows transitions between the two views 21 This material will not appear in the exam! It supports the First AssignmentRSS Application Template • Similar to Browser and Podcast template • Customised by defining a URL from which to retrieve articles • Options include: • Feed URL • Number of articles to display, time period, and number of “top” articles 22 This material will not appear in the exam! It supports the First AssignmentLaying out widgets in the workspace • The workspace allows widgets to be laid out • The inspector can then be used to modify widget attributes • Widgets can be selected from the Library • Both portrait and landscape views are possible Change • Both real and pixel View size views possible Landscape/ Portrait 23 This material will not appear in the exam! It supports the First Assignment The inspector • The Inspector provides details about different aspects of each widget • Attributes • Fill and Stroke • Metrics • Text • Bindings • Behaviours 24 This material will not appear in the exam! It supports the First Assignment Attribute Inspector • Can modify the selected element’s ID • Used within JavaScript to reference the element • Its CSS class • Whether or not it is visible • Default Images • Element specific parameters • Sub-element labels • Email addresses etc • These parameters are also settable through Javascript 25 This material will not appear in the exam! It supports the First AssignmentFill and Stroke Inspector • Dependent on the element being modified • Affects the look and effects of an element • Its “Fill” • Solid / Gradient / Image • Corner Roundness • Opacity • Reflection • Stroke Colour • Stroke Width • Effects include • Glass effects • Recess (raise or lower) 26 This material will not appear in the exam! It supports the First Assignment Metrics Inspector • Used to modify the element’s size and position on the canvas • Size parameters given in pixels (include borders) • Also change the behaviour when the widget / webpage is resized • Positioning can be absolute coordinate or “document flow” (i.e. relative to other elements) • Can affect how widgets are moved in the editor • Autoresize reflect the elements behaviour when the widget is resized 27 This material will not appear in the exam! It supports the First Assignment Text Inspector • Used when an element displays text • Adjust text characteristics • font, style, size etc • Text wrapping and overflow • Clip - cuts string at the element bounds • Ellipse - replaces any additional text with “...” 28 This material will not appear in the exam! It supports the First Assignment Bindings Inspector • Used to define the bindings between a data source and specific properties of an element • Specify data source • Key path of the item in the data source • Value Transformer • Placeholder values • Typically set by using the drag and drop method from the data model • However, place holder values and transformers have to be set manually 29 This material will not appear in the exam! It supports the First Assignment Behaviour Inspector • Used to assign Javascript handlers for various events • Depending on the different element • By specifying the name of a handler, an event stub is created in the code • Arrow to the right provides direct access to the method in the code 30 This material will not appear in the exam! It supports the First Assignment Creating elements from the code • Elements can be created on the fly, and modified using CSS • Good for providing non-standard behaviour • However it is better to use elements from the editor • Use “document.createElement” to create the element • Use “setAttribute” to specify its CSS characteristics • The add it to another element using “apppendChild” • Take a close look at the code included in other Templates for inspiration • Also check out code fragments in the Code Library 31 This material will not appear in the exam! It supports the First Assignment Creating elements from the code (example) • Taken
Recommended publications
  • Dashcode User Guide
    Dashcode User Guide Leopard WWDC Helvetica and Times are registered Apple Computer, Inc. trademarks of Heidelberger © 2006 Apple Computer, Inc. Druckmaschinen AG, available from All rights reserved. Linotype Library GmbH. Java and all Java-based trademarks are No part of this publication may be trademarks or registered trademarks of Sun reproduced, stored in a retrieval system, or Microsystems, Inc. in the U.S. and other transmitted, in any form or by any means, countries. mechanical, electronic, photocopying, recording, or otherwise, without prior Simultaneously published in the United written permission of Apple Computer, Inc., States and Canada. with the following exceptions: Any person Even though Apple has reviewed this document, APPLE MAKES NO WARRANTY OR is hereby authorized to store documentation REPRESENTATION, EITHER EXPRESS OR on a single computer for personal use only IMPLIED, WITH RESPECT TO THIS and to print copies of documentation for DOCUMENT, ITS QUALITY, ACCURACY, MERCHANTABILITY, OR FITNESS FOR A personal use provided that the PARTICULAR PURPOSE. AS A RESULT, THIS documentation contains Apple’s copyright DOCUMENT IS PROVIDED “AS IS,” AND YOU, THE READER, ARE ASSUMING THE notice. ENTIRE RISK AS TO ITS QUALITY AND ACCURACY. The Apple logo is a trademark of Apple IN NO EVENT WILL APPLE BE LIABLE FOR Computer, Inc. DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES Use of the “keyboard” Apple logo RESULTING FROM ANY DEFECT OR (Option-Shift-K) for commercial purposes INACCURACY IN THIS DOCUMENT, even if without the prior written consent of Apple advised of the possibility of such damages. may constitute trademark infringement and THE WARRANTY AND REMEDIES SET FORTH ABOVE ARE EXCLUSIVE AND IN unfair competition in violation of federal LIEU OF ALL OTHERS, ORAL OR WRITTEN, and state laws.
    [Show full text]
  • Programming Java for OS X
    Programming Java for OS X hat’s so different about Java on a Mac? Pure Java applica- tions run on any operating system that supports Java. W Popular Java tools run on OS X. From the developer’s point of view, Java is Java, no matter where it runs. Users do not agree. To an OS X user, pure Java applications that ignore the feel and features of OS X are less desirable, meaning the customers will take their money elsewhere. Fewer sales translates into unhappy managers and all the awkwardness that follows. In this book, I show how to build GUIs that feel and behave like OS X users expect them to behave. I explain development tools and libraries found on the Mac. I explore bundling of Java applications for deployment on OS X. I also discuss interfacing Java with other languages commonly used on the Mac. This chapter is about the background and basics of Java develop- ment on OS X. I explain the history of Java development. I show you around Apple’s developer Web site. Finally, I go over the IDEs commonly used for Java development on the Mac. In This Chapter Reviewing Apple Java History Exploring the history of Apple embraced Java technologies long before the first version of Java on Apple computers OS X graced a blue and white Mac tower. Refugees from the old Installing developer tan Macs of the 1990s may vaguely remember using what was tools on OS X called the MRJ when their PC counterparts were busy using JVMs. Looking at the MRJ stands for Mac OS Runtime for Java.
    [Show full text]
  • Learning Core Data for Ios Addison-Wesley Learning Series
    Learning Core Data for iOS Addison-Wesley Learning Series Visit informit.com/learningseries for a complete list of available publications. The Addison-Wesley Learning Series is a collection of hands-on programming guides that help you quickly learn a new technology or language so you can apply what you’ve learned right away. Each title comes with sample code for the application or applications built in the text. This code is fully annotated and can be reused in your own projects with no strings attached. Many chapters end with a series of exercises to encourage you to reexamine what you have just learned, and to tweak or adjust the code as a way of learning. Titles in this series take a simple approach: they get you going right away and leave you with the ability to walk off and build your own application and apply the language or technology to whatever you are working on. Learning Core Data for iOS Tim Roadley Upper Saddle River, NJ • Boston • Indianapolis • San Francisco New York • Toronto • Montreal • London • Munich • Paris • Madrid Cape Town • Sydney • Tokyo • Singapore • Mexico City Many of the designations used by manufacturers and sellers to distinguish their Editor-in-Chief products are claimed as trademarks. Where those designations appear in this book, Mark Taub and the publisher was aware of a trademark claim, the designations have been printed Senior Acquisitions with initial capital letters or in all capitals. Editor The author and publisher have taken care in the preparation of this book, but make Trina MacDonald no expressed or implied warranty of any kind and assume no responsibility for errors Senior Development or omissions.
    [Show full text]
  • Guide Ibooks Author
    Formation • iBooks Author iBooks Author Version 1.0.1 Ces notes reprennent l’Aide en ligne de l’application iBooks Author. Anaïtis - Centre de formation - Quai du Roi Albert, 16A - 4020 Liège • www.anaitis.be Formation • iBooks Author Table des matières Vue d’ensemble d’iBooks Author 4 Qu’est-ce qu’iBooks Author ? 4 Exemple de flux de travail 4 Vue d’ensemble de la fenêtre principale 5 Configurer votre livre 6 Vue d’ensemble des éléments du livre 6 Créer un livre 6 Choisir un modèle 6 Ajouter, réorganiser ou supprimer des chapitres, des sections et des pages 7 Personnaliser la table des matières 9 Ajouter des entrées de glossaire 11 Importer un document Pages ou Word 12 Enregistrer et ouvrir des documents 13 Définir les propriétés du livre et des pages 14 Modifier les colonnes et les sauts de page 14 Renuméroter les chapitres, les sections et les pages 14 Consulter et ajouter des informations sur le livre 15 Demander un mot de passe 16 Créer ou modifier des modèles et des dispositions 16 Créer un nouveau modèle 16 Créer ou modifier une disposition 16 Ajouter des paramètres fictifs à un modèle ou une disposition personnalisés 17 Ajouter et formater le texte 19 Ajouter du texte 19 Formater du texte à l’aide de styles 19 Formater du texte 23 Modifier la police, la taille, la couleur, l’alignement et l’espacement du texte 23 Ajuster le texte autour d’un objet 25 Créer des listes 25 Ajouter des liens et des signets 27 Définir des marges, des tabulations et des retraits 28 Ajouter des caractères spéciaux, des symboles, et des expressions et
    [Show full text]
  • Infovox Ivox & Visiovoice
    Cover by Michele Patterson Masthead Publisher Robert L. Pritchett from MPN, LLC Editor-in-Chief Robert L. Pritchett Editor Mike Hubbartt Assistant Editor Harry (doc) Babad Consultant Ted Bade Advertising and Marketing Director Wayne Lefevre Web Master James Meister Public Relations and Merchandizing Mark Howson Contacts Webmaster at macCompanion dot com Feedback at macCompanion dot com Correspondence 1952 Thayer, Drive, Richland, WA 99352 USA 1-509-210-0217 1-888-684-2161 rpritchett at macCompanion dot com The Macintosh Professional Network Team Harry {doc} Babad Ted Bade Matt Brewer (MacFanatic) Jack Campbell (Guest Author) Ken Crockett (Apple News Now) Kale Feelhaver (AppleMacPunk) Dr. Eric Flescher Eddie Hargreaves Jonathan Hoyle III Mark Howson (The Mac Nurse) Mike Hubbartt Daphne Kalfon (I Love My Mac) Wayne Lefevre Daniel MacKenzie Chris Marshall (My Apple Stuff) Dom McAllister Derek Meier James Meister Michele Patterson David Phillips (Guest Author) Robert Pritchett Leland Scott Dennis Sellers (Macsimum News) Gene Steinberg (The Tech Night Owl) Rick Sutcliffe (The Northern Spy) Tim Verpoorten (Surfbits) Julie M. Willingham Application Service Provider for the macCompanion website: http://www.stephousehosting.com Thanks to Daniel Counsell of Realmac Software Development (http://www.realmacsoftware.com), who graced these pages and our website with newer rating stars. Our special thanks to all those who have allowed us to review their products! In addition, thanks to you, our readers, who make this effort possible. Please support
    [Show full text]
  • Creating Mac Widgets with Dashcode Authors of Apress’S Firstpress Series Is Your Source for Understanding Cutting-Edge Technology
    BOOKS FOR PROFESSIONALS BY PROFESSIONALS® Available as a PDF Electronic Book Creating Mac Widgets with Dashcode Mac Creating Authors of Apress’s firstPress series is your source for understanding cutting-edge technology. Short, highly or Print On Demand Assembly Language Magic focused, and written by experts, Apress’s firstPress books save you time and effort. They contain C# Essentials the information you could get based on intensive research yourself or if you were to attend a Debugging C++ conference every other week—if only you had the time. They cover the concepts and techniques that will keep you ahead of the technology curve. Apress’s firstPress books are real books, in your HTML 4.0 User’s Resource choice of electronic or print-on-demand format, with no rough edges even when the technology Data Structures with STL itself is still rough. You can’t afford to be without them. Compact Guide to Visual Basic 4 Visual C++ 6: The Complete Reference Creating plus 30 other titles Creating Mac Widgets with Dashcode Dear Reader, We have taught a lot of programming courses and written a lot of programming books in our careers, but this time we felt that Mac users would benefit the most by know- ing how to develop widgets with Dashcode rather than laboring over programming languages and endless pages of code. Mac Widgets Our first goal in this short book is to introduce you to the major significant compo- nents of the Dashcode product and quickly teach you how to develop some interesting and exciting widgets. The first half of the book concentrates on Dashcode templates and shows you how to use the stock templates, with just a little modification, to create your own unique widgets.
    [Show full text]
  • Mac OS X Desktop.Pdf
    Apple Training Series Mac OS X Support Essentials v10.6 Kevin M. White Apple Training Series: Mac OS X Support Essentials v10.6 Kevin M. White Copyright © 2010 by Apple Inc. Published by Peachpit Press. For information on Peachpit Press books, contact: Peachpit Press 1249 Eighth Street Berkeley, CA 94710 510/524-2178 510/524-2221 (fax) www.peachpit.com To report errors, please send a note to [email protected]. Peachpit Press is a division of Pearson Education. Apple Training Series Editor: Rebecca Freed Production Editors: Danielle Foster, Becky Winter Copyeditor: Peggy Nauts Tech Editor: Gordon Davisson Apple Editor: Shane Ross Proofreader: Suzie Nasol Compositor: Danielle Foster Indexer: Valerie Perry Cover design: Mimi Heft Cover illustrator: Kent Oberheu Notice of Rights All rights reserved. No part of this book may be reproduced or transmitted in any form by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of the publisher. For infor- mation on getting permission for reprints and excerpts, contact [email protected]. Notice of Liability The information in this book is distributed on an “As Is” basis without warranty. While every precaution has been taken in the preparation of the book, neither the author nor Peachpit shall have any liability to any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly by the instructions contained in this book or by the computer software and hardware products described in it. Trademarks Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks.
    [Show full text]
  • Publishing with Ibooks Author
    Publishing with iBooks Author Nellie McKesson and Adam Witwer Publishing with iBooks Author by Nellie McKesson and Adam Witwer Copyright © 2012 O’Reilly Media. All rights reserved. Printed in the United States of America. Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472. O’Reilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (http://my.safaribooksonline.com). For more information, contact our corpo­ rate/institutional sales department: (800) 998-9938 or [email protected]. Editor: Brian Sawyer Proofreader: Teresa Elsey Cover Designer: Karen Montgomery Interior Designer: David Futato Illustrator: Robert Romano February 2012: First Edition Revision History for the First Edition: 2012-02-10 First release 2012-02-27 Second release 2012-04-27 Third release See http://oreilly.com/catalog/errata.csp?isbn=9781449329785 for release details. Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo are registered trademarks of O’Reilly Media, Inc. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and O’Reilly Media, Inc. was aware of a trade­ mark claim, the designations have been printed in caps or initial caps. While every precaution has been taken in the preparation of this book, the publisher and authors assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. ISBN: 978-1-449-32978-5 [e] Table of Contents Preface. vii 1. Tour. 1 Template Chooser 1 Editing Window 2 The Toolbar 3 The Format Bar 6 Zoom 6 Navigation 6 The Book Menu 7 Document Inspector 11 2.
    [Show full text]
  • IBOOKS AUTHOR Ibooks Author: an Instructional Guide for Educators
    USING IBOOKS AUTHOR iBooks Author: An Instructional Guide for Educators ETEC533 - MANNY LOYLA SECTION 1 Before you Begin This section provides information on how to download and install the iBooks Author software on your Mac. TOPICS COVERED 1. Hardware 2. Software 3. Downloading iBooks Author software 1 SECTION 1 2) Software System Requirements Before you begin to download the iBooks author app, you will need to ensure that your Mac OS X is up to date. The minimum re- quirement for installing iBooks Author is 1) Hardware Mountain Lion (OS X 10.7 or above). You should also verify In order to create and view your own iBooks, you will require that your iPads software is up- 3 pieces of hardware that can be purchased directly from any dated to the latest version and that the iBooks app appears on Apple distributor. The three items that are essential along your touch screen. with their functioning are listed in the picture below. 3) Downloading iBooks Author INTERACTIVE Book Title.1 Hardware Requirements You will then need to open and sign into the Mac App Store by entering your iTunes ID and password. Upon signing in, you 3. USB to iPAD cord will need to search the Mac App Store for the iBooks Author software by simply typing it into the search bar. Locate the free iBooks Author App and click on install app (highlighted in yellow below). 2. Desktop/Laptop The iBooks author software can be accessed by opening the 1. iPad launchpad located within the toolbar of your desktop. 1 2 3 2 SECTION 2 Navigating This section contains information on how to navigate the different workspaces within iBooks Author.
    [Show full text]
  • Teaching Mobile Web Development an Iphone Application Design Workshop at the University of Illinois Undergraduate Library
    ACRL TechConnect Jim Hahn, Jennifer Bylsma, and Elizabeth Sullivan Teaching mobile Web development An iPhone application design workshop at the University of Illinois Undergraduate Library he digital era, a time of massive un- (and make relevant) their digital environ- Tmediated access to information, has ments, the staff of the University of Illinois brought with it profound changes in the at Urbana-Champaign Undergraduate Library ways we work and live. With these changes, planned for a mobile app workshop that instructional offerings of libraries must shift would be responsive to all skill levels. if they are to remain a relevant and neces- Librarians and two interns from the sary component Undergraduate of information Library designed centers. A moti- and implemented vating factor for two rounds of lab- implementing an based workshops iPhone app de- for mobile appli- sign workshop cations running stems from ob- on Apple’s iOS servations of the software. Project highly popular planning included information envi- a workshop for stu- ronments of the dents and an ad- 21st-century stu- ditional workshop dent. The mobile for staff. The first landscape of in- round occurred in formation access the summer semes- Image 1. Dashcode Templates for Mobile Apps (Image is inclusive of a ter of 2011. The is from Dashcode, a Web-based software developer number of mo- second round of environment from Apple.) View this article online for bile-networked detailed images. workshops were devices—one of held in December the most popular platforms is the iOS envi- 2011 and were re-worked for basic and ronment from Apple.
    [Show full text]
  • Next Mac OS X Roots
    Mac OS X Roots: Mac OS X NeXT • 1985 Apple kicks out Jobs, who founds NeXT • 1988 NeXTSTEP 0.8: 68k, Mach kernel, 4.3BSD, Display PostScript, new Objective-C, platform for first web browser at CERN • 1990 NeXTSTEP 2.0: Interface Builder (OO) • 1993 Intel, SPARC, HP PA-RISC support (fat binaries), NeXT hardware dead • NeXT&Sun: OPENSTEP, used by SunOS, HP-UX, MacOS, also on Windows NT, GNUstep Jan Borchers 1 media computing group Jan Borchers 2 media computing group Mac OS X Roots: NeXT • 1996 Apple purchases NeXT, Jobs back at Apple, begins replacing Mac OS towards NeXTSTEP • 1999 Apple releases Mac OS X Preview • Mac OS X is directly derived from NeXTSTEP/ OPENSTEP (Mach/BSD, Objective-C, Cocoa, Interface Builder, NetInfo), and combines this with other Apple technologies (UI, Classic, Multimedia) Jan Borchers 3 media computing group Jan Borchers 4 media computing group It’s spelled “Ten” Mac OS X: Architecture Base Operating System Apps UITK Cocoa, Carbon, Java WM • Darwin (Open Source for PowerPC+Intel) WindowServer (user-level process) • Based on a Mach microkernel + BSD Unix BWS • Protected memory, preemptive multitasking GEL Quartz 2D / Core Graphics, IOKit • Single application cannot corrupt/freeze entire system HW 5 Jan Borchers media computing group Jan Borchers 6 media computing group Graphics and Event Library • Quartz 2D / Core Graphics, Display PDF • Roots: NeWS, NeXTSTEP (Display PostScript) • Vector-based, resolution-independent Demo: Quartz Extreme • Quartz Extreme: GPU-based compositing (pipe entire screen through OpenGL
    [Show full text]
  • PDF Version of the Magazine
    Table of Contents Masthead Publisher Robert L. Pritchett from MPN, LLC Editor-in-Chief Robert L. Pritchett Consultants Harry {doc} Babad Ted Bade Mike Hubbartt Chris Marshall Advertising and Marketing Director Wayne Lefevre Web Master James Meister Public Relations and Merchandizing Mark Howson Contacts Webmaster at macCompanion dot com Feedback at macCompanion dot com Correspondence 1952 Thayer, Drive, Richland, WA 99352 USA 1-509-210-0217 1-888-684-2161 rpritchett at macCompanion dot com This month's Authors (Alphabetical Listing): Harry {doc} Babad Ted Bade Matt Brewer (MacFanatic) Kale Feelhaver (AppleMacPunk) Dr. Eric Flescher Eddie Hargreaves Jonathan Hoyle Mike Hubbartt Daphne Kalfon Kristine LeFevre Wayne Lefevre Daniel MacKenzie Chris Marshall (My Apple Stuff) Derek Meier James Meister Michele Patterson Robert Pritchett Rick Sutcliffe (The Northern Spy) Tim Verpoorten (Surfbits) Application Service Provider for the macCompanion website: http://www.stephousehosting.com Thanks to Daniel Counsell of Realmac Software Development (http://www realmacsoftware.com), who graced these pages and our website with newer rating stars. Our special thanks to all those who have allowed us to review their products! In addition, thanks to you, our readers, who make this effort all possible. Please support this effort by going to the back of the magazine and to our website and clicking and purchasing from our affiliates and advertisers. THEY WILL APPRECIATE IT EVEN MORE THAN WE DO! MPN, LLC 2006 macCompanion Page 2 of 121 December 2006, Volume
    [Show full text]