TweetFollow Us on Twitter

Sep 92 Tips
Volume Number:8
Issue Number:5
Column Tag:Tips & Tidbits

Tips & Tidbits

By Neil Ticktin, Editor

This column is your opportunity to spread the word about little bits of information that you find out about. These tidbits can be programming related or they can be user tips that are particularly useful to programmers.

MacTutor will credit, in subscriptions or orders, $25 for every tip used, and $50 for the Tip of the Month. To submit a tip, send in a letter to the magazine.

Remember, AppleLink is our preferred communication method, but feel free to send something via America Online, GEnie or US Mail. If you do send snail mail, enclose a printed copy and a disk copy of the letter so that it does not have to be retyped.

Let us know what you think. Remember, this is your magazine. Try ‘em out and let us know...

Tip of the Month

When you have several applications running at once, and you hit the interrupt button, you will break into the application that happens to be executing at that time, which is not necessarily the one you want to debug.

To choose which application you break into, make sure that application is frontmost. Now hold down the mouse button somewhere over the menu bar (an empty portion will do), and with your other hand, press the interrupt button. You will end up in the desired application, somewhere in the middle of a call to MenuSelect.

Lawrence D’Oliveiro, Computer Services Dept

University of Waikato, Hamilton, New Zealand

MPW MAKE TIP #1

The Make tool in MPW differs from the UNIX original in that it only generates the build commands; it cannot execute them. Apple provides a script called BuildProgram, that invokes Make, captures the output in a temporary script file, and executes it. However, when you’re still at the stage of flushing out syntax errors from your code, it is quicker not to use BuildProgram. Instead, use Make, and capture its output in a temporary window, such as the Worksheet window. Select the generated commands and execute them.

When you hit a syntax error, find the compilation command where the error was encountered, and delete all the commands prior to this-that is, all the commands that were successfully completed. Find and fix the syntax errors in your source file. Now instead of reinvoking BuildProgram or Make, simply reselect the leftover build commands, and reexecute them. Continue in this fashion, deleting the completed commands each time you hit an error, until you’ve completed the build.

If you’ve got nothing else but build commands in the temporary window and you’re using MPW version 3.2 or later, you can quickly select the commands to be deleted, once you’ve found the beginning of the command where the error occurred, by typing command-option-shift-uparrow to select from the current position to the beginning of the file.

- Lawrence D’Oliveiro, New Zealand

MPW MAKE TIP #2

Many Makefiles are written with an initial rule that looks like this:

Everything ƒ Prog1 Prog2 Prog3

where Prog1, Prog2 and so on are the actual programs comprising the project. This is done so that if you invoke Make without any arguments, it will look for the first target by default, and putting this rule first will cause it to build the entire project.

However, if your project grows with more and more components, this becomes another rule that you have to remember to maintain in your Makefile. A more convenient technique is to invoke Make with the following command:

Make `Make -r`

The inner Make -r command returns a list of the “root” targets (that is, no other targets depend on these); the outer Make command builds all these targets. Now you can get rid of the Everything rule, and just keep adding new rules for the new components of your project, without having to worry about updating any existing rules.

- Lawrence D’Oliveiro, New Zealand

MPW BACKUP TIP #1

MPW’s Backup tool is very useful for backing up your projects, but things can get slightly complicated if there are too many files to fit on one disk. Without the -a option, Backup will only back up changed files; it won’t copy any files that aren’t already on the current backup disk.

But if you’ve been adding lots of files to your project, deciding which files should go onto which disks-and making sure you’ve backed them all up-can be too much trouble. You can make things much easier if you group your files into subfolders; just make sure that the contents of each subfolder will fit on one backup disk. Then you can use the command form Backup -a -r -level 1; the -r option means to check subfolders (and subfolders of subfolders, and so on), and -level 1 restricts the effect of -a (backup new as well as changed files) so it only applies to subfolders on down, not to files at the top level. This allows you to keep a handful of central files, such as your Makefile, at the top level, and they will only be backed up once.

If you have to move files from one subfolder to another, add the -d option to the Backup command; this will delete the moved files from their old subfolders on the backup disks.

Now, if Duplicate would only preserve the window positions of the icons it copies, my happiness would be complete...

- Lawrence D’Oliveiro, New Zealand

MPW BACKUP TIP #2

The following pair of commands will do a backup from the current directory onto a folder with the same name on a floppy disk in drive 1:

Set CurFolder "`Directory -q | 
 StreamEdit -d -e 
'/( :)*([¬:]*:)®1 / print ®1'`"

Backup -a -r -level 1 -from 
 : -to `Volumes 1`"{CurFolder}"

This uses the StreamEdit tool which was introduced in MPW 3.2. Put it on a custom menu somewhere in your UserStartup script, then you’ll never have to type it again...

- Lawrence D’Oliveiro, New Zealand

HIDING LAYERS FROM HYPERCARD

The following line of HyperTalk, executed from HyperCard 2.1, will hide the frontmost application:

DoMenu line 1 of menu "Application"

This works even if executed from a script running in the background! You can try other items in the application menu as well, but this doesn’t work for the “System Help” menu.

The same thing should also work from one of your own applications: call SystemMenu, passing it a menu ID of

-16489 (the application menu) and the appropriate item ID (e.g., 1 to hide the frontmost application, 2 to hide all but the frontmost, and 3 to show all applications).

- Lawrence D’Oliveiro, New Zealand

A 68040 Bug

A few months ago a rather large application I wrote started "hanging" on a Quadra 700. After poking around I tracked the problem to a small assembly language routine which is used to allow main thread and interrupt code to access the same linked list of messages.

The problem arises when the CAS2 instruction is used in the following form:

CAS2.l  Dn:Dn,D1:D0,(A0):(A1)

When the comparison fails, Dn gets updated from the second memory operand, (A1), instead of the first memory operand. Motorola has just verified the bug. A portion of Motorola's response, as relayed to me through DTS, says...

"I am responding to your question on the CAS2 instruction. You have indeed found a bug. Your analysis is correct.

If the compare registers for CAS2 are the same and the comparisons with the memory operands fail, then the FIRST memory operand should be stored in the data register, however, the 68040 incorrectly stores the second memory operand in the data register."

Note that this problem does not exist on the 68020 or the 68030.

- Bob Peters, Fermilab

Omega SANE backpatching!

I spent one entire Sunday to catch the bomb in this code:

(1) <if condition then>
(2)   <push a selector on stack>
(3) <else>
(4)   <push another selector on stack>
(5) _FP68K

On the first call Omega SANE analyzes the code and finds that (4) and (5) constitutes a “normal” SANE call. So, in the name of optimization, those 6 bytes are replaced in runtime by a direct JSR to the actual SANE routine. Imagine the spectacular view on a later occasion when (2) and (5) are executed!

- Sigmund Tveit, Norway

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Combo Quest (Games)
Combo Quest 1.0 Device: iOS Universal Category: Games Price: $.99, Version: 1.0 (iTunes) Description: Combo Quest is an epic, time tap role-playing adventure. In this unique masterpiece, you are a knight on a heroic quest to retrieve... | Read more »
Hero Emblems (Games)
Hero Emblems 1.0 Device: iOS Universal Category: Games Price: $2.99, Version: 1.0 (iTunes) Description: ** 25% OFF for a limited time to celebrate the release ** ** Note for iPhone 6 user: If it doesn't run fullscreen on your device... | Read more »
Puzzle Blitz (Games)
Puzzle Blitz 1.0 Device: iOS Universal Category: Games Price: $1.99, Version: 1.0 (iTunes) Description: Puzzle Blitz is a frantic puzzle solving race against the clock! Solve as many puzzles as you can, before time runs out! You have... | Read more »
Sky Patrol (Games)
Sky Patrol 1.0.1 Device: iOS Universal Category: Games Price: $1.99, Version: 1.0.1 (iTunes) Description: 'Strategic Twist On The Classic Shooter Genre' - Indie Game Mag... | Read more »
The Princess Bride - The Official Game...
The Princess Bride - The Official Game 1.1 Device: iOS Universal Category: Games Price: $3.99, Version: 1.1 (iTunes) Description: An epic game based on the beloved classic movie? Inconceivable! Play the world of The Princess Bride... | Read more »
Frozen Synapse (Games)
Frozen Synapse 1.0 Device: iOS iPhone Category: Games Price: $2.99, Version: 1.0 (iTunes) Description: Frozen Synapse is a multi-award-winning tactical game. (Full cross-play with desktop and tablet versions) 9/10 Edge 9/10 Eurogamer... | Read more »
Space Marshals (Games)
Space Marshals 1.0.1 Device: iOS Universal Category: Games Price: $4.99, Version: 1.0.1 (iTunes) Description: ### IMPORTANT ### Please note that iPhone 4 is not supported. Space Marshals is a Sci-fi Wild West adventure taking place... | Read more »
Battle Slimes (Games)
Battle Slimes 1.0 Device: iOS Universal Category: Games Price: $1.99, Version: 1.0 (iTunes) Description: BATTLE SLIMES is a fun local multiplayer game. Control speedy & bouncy slime blobs as you compete with friends and family.... | Read more »
Spectrum - 3D Avenue (Games)
Spectrum - 3D Avenue 1.0 Device: iOS Universal Category: Games Price: $2.99, Version: 1.0 (iTunes) Description: "Spectrum is a pretty cool take on twitchy/reaction-based gameplay with enough complexity and style to stand out from the... | Read more »
Drop Wizard (Games)
Drop Wizard 1.0 Device: iOS Universal Category: Games Price: $1.99, Version: 1.0 (iTunes) Description: Bring back the joy of arcade games! Drop Wizard is an action arcade game where you play as Teo, a wizard on a quest to save his... | Read more »

Price Scanner via MacPrices.net

14-inch M4 Pro/M4 Max MacBook Pros on sale th...
Don’t pay full price! Get a new 14″ MacBook Pro with an M4 Pro or M4 Max CPU for up to $320 off Apple’s MSRP this weekend at these retailers…they are the lowest prices available for these MacBook... Read more
Get a 15-inch M4 MacBook Air for $150 off App...
A couple of Apple retailers are offering $150 discounts on new 15″ M4 MacBook Airs this weekend. Prices at these retailers start at $1049: (1): Amazon has new 15″ M4 MacBook Airs on sale for $150 off... Read more
Unreal Mobile is offering a $100 discount on...
Unreal Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering a $100 discount on any new iPhone with service. This includes new iPhone 16 models as well as iPhone 15, 13, and SE phones... Read more
16-inch M4 Pro MacBook Pros on sale for $250-...
Don’t pay full price! Amazon has 16-inch M4 Pro MacBook Pros (Silver or Black colors) on sale right now for up to $300 off Apple’s MSRP. Shipping is free. These are the lowest prices currently... Read more
Get a 14-inch M4 MacBook Pro for up to $240 o...
Amazon is offering a $150-$250 discount on Apple’s 14-inch M4 MacBook Pros right now. Shipping is free. Be sure to select Amazon as the seller, rather than a third-party seller: – 14″ M4 MacBook Pro... Read more
Clearance 14-inch M3 Pro MacBook Pros availab...
B&H Photo has clearance 14″ M3 Pro MacBook Pros (in Black or Silver) on sale for $500 off original MSRP, only $1499. B&H offers free 1-2 day delivery to most US addresses: – 14″ 11-Core M3... Read more
Sams Club is offering a $50 discount on Titan...
Sams Club has Titanium Apple Watch Series 10 models on sale for $50 off Apple’s MSRP. Sams Club Membership required. Note that sale prices are for online orders only, in-store prices may vary. Choose... Read more
Sunday Sale: Apple’s latest 13-inch M4 MacBoo...
Amazon has new 13″ M4 MacBook Airs on sale for $150 off MSRP right now, starting at $849. Sale prices apply to most colors and configurations. Be sure to select Amazon as the seller, rather than a... Read more
Apple’s M4 Mac minis on sale for record-low p...
B&H Photo has M4 and M4 Pro Mac minis in stock and on sale right now for up to $150 off Apple’s MSRP, each including free 1-2 day shipping to most US addresses. Prices start at only $469: – M4... Read more
Week’s Best Deals: 14-inch M4 MacBook Pros fo...
Don’t pay full price! These retailers are offering $200-$250 discounts on new 14-inch M4 MacBook Pros this week…they are the lowest sale prices available for new MacBook Pros: (1): Amazon is offering... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.