TweetFollow Us on Twitter

Aug 94 Tips
Volume Number:10
Issue Number:8
Column Tag:Tips &Tidbits

Tips &Tidbits

By Scott T Boyd, Editor

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

Got a developer tip you’ve been keeping to yourself but really need to share? Think you have a better trick up your sleeve? Send us your tips and tricks, especially programming-related tips, but don’t hold back if you’ve got programmer’s user tips.

We want your tips! We pay $25 for every tip used, and $50 for Tip of the Month. You can take your award in orders or subscriptions if you prefer.

Make sure code compiles, and send tips by e-mail. See page two for our addresses.

Tip Of The Month

TCL 2.0 Startup Splash Screen

Version 2.0 of the TCL introduced a new method in CApplication called ShowSplashScreen(). This method is called at startup in CApplication::DoRun(), prior to the program handling any AppleEvents. Although the Visual Architect can be used to create the code neccessary for a splash screen, it is much simpler for you to write your own by hand, especially if all you want to do is display a PICT resource for a number of seconds. This is especially true if you want to add a splash screen to projects you are converting from 1.1.3.

To use the code below, override ShowSplashScreen() in your own CApplication derived class, and then make sure the source file contains all of the code outlined below. Features of the code are: TCL 2.0 use of constructors with default arguments; moving the window offscreen prior to calling Select() & Prepare(), thus preventing the user at staring at a blank window for a second before the CPicture object can be drawn; ‘paranoid’ memory cleanup to make absolutely certain there are no memory leaks.


/* 1 */
// TCL INCLUDES 
#include   <CDecorator.h>
#include   <CPicture.h>
#include   <CWindow.h>
// EXTERN GLOBALS 
extern   CDecorator   *gDecorator;

void myCApplication::ShowSplashScreen(void)
{
const short kProcID = dBoxProc,          // Window Manager window type 
= 1
                      kPicResID = 2000,// PICT resource ID
                      kPICTx = 250,// Width of PICT in pixels
                      kPICTy = 130;// Height   "
const longkDuration = 120;// Delay for @ 2 secs ( = 120/60 )
CDirector    *myDir = NULL; // TCL based object pointers...
CWindow      *myWindow = NULL;
CPicture     *myPicture = NULL;
Rect         aRect = {0, 0, kPICTy, kPICTx};
long         finalTick = 0;

myDir = new CDirector(this);// Create Bureaucrat & Window
myWindow = new CWindow(&aRect, false, kProcID, false, false, myDir);
myPicture = new CPicture(myWindow, myDir);   // Create CPicture object
myPicture->FitToEnclFrame(true, true);
::SetRect(&aRect, 2, 2, -2, -2);   // Shrink enclosure by 2 pixels
myPicture->ChangeSize(&aRect, false);
myPicture->UsePICT(kPicResID);// Grab PICT from resource
myWindow->MoveOffScreen();  // Get ready for drawing
myWindow->Select();
myPicture->Prepare();
gDecorator->CenterWindow(myWindow);// Need window on screen to draw PICT
myPicture->Draw(&aRect);       // Rect param is not really needed
::Delay(kDuration, &finalTick);  /* Delay long enough for user to read 
screen  */
myDir->CloseWind(myWindow); // Close window & tidy up memory
TCLForgetObject(myDir);
if (myPicture != NULL)
  TCLForgetObject(myPicture);
}

- Andrew Nemeth, Warrimoo Australia

Drop Everything

AppMaker (from Bowers Development) is a great development tool, but you can only drop AppMaker files on AppMaker (with System 7). You can change AppMaker drop other files (such as ResEdit and Resorcerer files) onto AppMaker’s icon to open them:

1) Open AppMaker with a resource tool, such as ResEdit.

2) Open the FREF resource, and open resource ID 203.

3) Change the file type from '????' to '****'.

4) Save your changes, and rebuild your desktop.

That’s it. You should be able to now drop any file onto AppMaker’s icon, and AppMaker will open it. If it doesn’t work, double-check the FREF (and possibly the BNDL) resources.

- Bill Modesitt, Maui Software

 
AAPL
$565.32
Apple Inc.
-5.24
GOOG
$603.66
Google Inc.
-5.80
MSFT
$29.07
Microsoft Corpora
-0.04
MacNews Search:
Community Search:
view counter

view counter
view counter
view counter
view counter
view counter
view counter
view counter
view counter

Empire of the Eclipse Review
Empire of the Eclipse Review By Carter Dotson on May 24th, 2012 Our Rating: :: OVERSHADOWINGiPhone App - Designed for the iPhone, compatible with the iPad Empire of the Eclipse is an ambitious strategy MMO that is very deep, and aimed at dedicated players.   | Read more »
Bejeweled HD Review
Bejeweled HD Review By Jennifer Allen on May 24th, 2012 Our Rating: :: ADDICTIVEiPad Only App - Designed for the iPad The iPad version of the ever addictive Match Three title.   Developer: PopCap Price: $3.99 Version Reviewed: 1.2 Device Reviewed On: iPad 2 | Read more »
Facebook Releases New Camera App To Stre...
While not a replacement for Instagram, Facebook Camera is a good first step in this month+ old union of the two companies. Released today, Facebook camera looks to streamline the viewing of photos and the uploading of them. The app allows you to apply simple filters to images, tag people, upload multiple images at once, and post a note about the... | Read more »
Missile Monkey Review
Missile Monkey Review By Lisa Caplan on May 24th, 2012 Our Rating: :: FLYING LOWUniversal App - Designed for iPhone and iPad Missile Monkey is a must miss   Developer: Munsey Clan Games Price: $0.99 Version Reviewed: 1.0 Device Reviewed On: iPad 2 | Read more »
Boomlings Review
Boomlings Review By Lisa Caplan on May 24th, 2012 Our Rating: :: FUN FREEBIEUniversal App - Designed for iPhone and iPad Boomlings is a traditional matching puzzle game, with some explosive twists   | Read more »
Dave vs Cave Review
Dave vs Cave Review By Jason Wadsworth on May 24th, 2012 Our Rating: :: WATCH FOR FALLING ROCKSUniversal App - Designed for iPhone and iPad Kid falls down hole, kid gets trapped in cave, kid fights evil rock monsters to escape.   Developer: Origame64 | Read more »
Python Pocket Power: Python Bytes 3 – Mo...
Python fans are certain to welcome the best bits from the penultimate season of the BBC sketch comedy in a new iPhone app: Python Bytes 3 – Monty Python Series 3. If you have a flair for the obvious, you’ll correctly assume this is third in a series of apps that feature the best skits from the cult-classic, Monty Python’s Flying Circus. | Read more »
Slingshot Racing Review
Slingshot Racing Review By Carter Dotson on May 24th, 2012 Our Rating: :: SWING ME AROUNDUniversal App - Designed for iPhone and iPad Slingshot Racing is a racing game where players must race around the courses by grappling and swinging around the slippery courses.   | Read more »
Go to the Cannes Film Festival with The...
For the movie industry the Cannes Film Festival is one of the most important events in which to preview films and watch the stars. The 65th annual festival is happening in France right now, but if you weren’t able to secure an invite or make the journey, hope is not lost. Film buffs and star gazers can keep tabs on the festival with The Hoolywood... | Read more »
David Haye’s Knockout Review
David Haye’s Knockout Review By Jennifer Allen on May 24th, 2012 Our Rating: :: PUNCHING FUNUniversal App - Designed for iPhone and iPad A simple yet satisfying cartoon-style boxing game.   | Read more »
All contents are Copyright 1984-2010 by Xplain Corporation. All rights reserved. Theme designed by Icreon.