TweetFollow Us on Twitter

Dec 97 - Macintosh Q and A

Volume Number: 13 (1997)
Issue Number: 12
Column Tag: develop

Macintosh Q & A

by Apple Developer Support Center

White Backgrounds for Dialog editText Items

Q. I would like to have a colored background for my dialog box but I would like the TextEdit fields in my dialog box to be white. Is this possible to do? Is there some sample code available?

A. Generally speaking, this coloring is achieved via resources, not code. In addition to the dctb' resource, you need to create an 'ictb' resource.

To download a sample of an application using this kind of resource go to http://devworld.apple.com/dev/qa/tb/tb3.html.

The 'ictb' resource is documented on page 6-76 and starting again on page 6-158 of Inside Macintosh: Macintosh Toolbox Essentials. The best way I know of to create and edit 'ictb' resources is with Resorcerer, but you can also create them with a '.r' file compiled by either MPW's Rez or the Metrowerks CodeWarrior equivalent.

Here are some references to web sites for the aforementioned tools:

Resorcerer:
http://www.mathemaesthetics.com/
ETO (incl. Rez):
http://www.devtools.apple.com/eto/
CodeWarrior:
http://www.metrowerks.com/

If this response has failed to adequately address a question or has raised more questions than it answered, please feel free to let us know and we'll try again.

Pete Gontier


OTScheduleDeferredTask When Task Running

Q. What happens when you use OTScheduleDeferredTask to schedule a task that is running?

A. The "Open Transport Client Note" mentions that OTScheduleDeferredTask returns false when you attempt to schedule a task that is already scheduled, but it doesn't say anything about what happens if the task is running. It turns out that a task that is running is not consider to be scheduled, so OTScheduleDeferredTask will successfully reschedule it.

Quinn "The Eskimo!"


Gestalt Values for Recent Macintosh Models

Q. What are the 'mach' gestalt values for the recent Macintosh models?

A. Recently, we announced the following new Macintosh models:

PowerBook 2400

The following list includes the 'mach' gestalt selectors for these and other Macintosh systems which are not included in the Gestalt.h header file which is part of the "Universal Interfaces 2.1 in MPW Latest" on ETO #22.

  • gestaltPerforma5300 = 41; { Macintosh Performa 53xx }
  • gestaltPowerMac5260 = 41; { Power Macintosh 5260/100 }
  • gestaltPerforma6300 = 42; { Macintosh Performa 63xx, except 6360 }
  • gestaltPerforma6360 = 58; { Performa 6360 }
  • gestaltPerforma6400 = 58; { Performa 6400 }
  • gestaltPowerMac9600 = 67; { Power Macintosh 9600
  • gestaltPowerMac7600 = 68; { Power Macintosh 7600 }
  • gestaltPowerMac8600 = 69; { Power Macintosh 8600 }
  • gestaltPowerMac5400 = 74; { Power Macintosh 5400/120}
  • gestaltMacLC580 = 99; { Macintosh LC 580 }
  • gestaltPerforma580 = 99; { Macintosh Performa 580 }
  • gestaltPowerMacLC475 = 104; { Mac LC 475 & PPC Processor Upgrade Card }
  • gestaltPowerMacPerforma47x = 104; { Performa 47x & PPC Proc Upgrade Card }
  • gestaltPowerMacLC575 = 105; { Mac LC 575 & PPC Processor Upgrade Card }
  • gestaltPowerMacPerforma57x = 105; { Performa 57x & PPC Proc Upgrade Card }
  • gestaltPowerMacQuadra630 = 106; { Quadra 630 & PPC Processor Upgrade Card }
  • gestaltPowerMacLC630 = 106; { Mac LC 630 & PPC Processor Upgrade Card }
  • gestaltPowerMac7300 = 109; { Power Macintosh 7300 }
  • gestaltPowerMacQuadra700 = 116; { Quadra 700 & Power PC Upgrade Card }
  • gestaltPowerMacQuadra900 = 117; { Quadra 900 & Power PC Upgrade Card }
  • gestaltPowerMacQuadra950 = 118; { Quadra 950 & Power PC Upgrade Card }
  • gestaltPowerMacCentris610 = 119; { Centris 610 & Power PC Upgrade Card }
  • gestaltPowerMacCentris650 = 120; { Centris 650 & Power PC Upgrade Card }
  • gestaltPowerMacQuadra610 = 121; { Quadra 610 & Power PC Upgrade Card }
  • gestaltPowerMacQuadra650 = 122; { Quadra 650 & Power PC Upgrade Card }
  • gestaltPowerMacQuadra800 = 123; { Quadra 800 & Power PC Upgrade Card }
  • gestaltPowerBook3400 = 306; { Macintosh PowerBook 3400 }
  • gestaltPowerBook2400 = 307; { Macintosh PowerBook 2400 }
  • gestaltPowerBook1400 = 310; { Macintosh PowerBook 1400 }
  • gestaltPowerMac5500 = 512; { Power Macintosh 5500 }
  • gestalt20thAnnivMac = 512; { Twentieth Anniversary Macintosh }
  • gestaltPowerMac5500 = 512; { Power Macintosh 5500 }
  • gestaltPowerMac6500 = 513; { Power Macintosh 6500 }
  • gestaltPowerMac4400 = 515; { Power Macintosh 4400 }

Note: To distinguish the Twentieth Anniversary Macintosh from the Power Macintosh 5500, make a secondary Gestalt selector call to the selector 'bxid'. The response for a Twentieth Anniversary Macintosh will be 0x0000302B

Rich Kubota


Find Desktop Folder

Q. The General control panel (GCP) in 7.6, 7.6.1 and 8.0 has the document options: Last folder, Application set folder, and Documents folder. How can my application determine where this folder is?

A. The General control panel (GCP) patches FindFolder so it will return the correct document folder given the current GCP options. Pass FindFolder a folderType of 'docs'. One quick note: Because the GCP patches FindFolder, the createFolder option doesn't work. If the folder doesn't exist you won't get an error and it won't be created. You have to write code to determine if the folder actually exist: if it doesn't, you'll have to create it yourself.

George Warner


MemError

Q. When I am debugging my application MemError() always returns noErr. What's wrong with MemError()?

A. Nothing, if you are debugging your application with a high level debugger. High level debuggers often call Memory Manager routines while stepping through your code. When a Memory Manager routine is called, it sets MemError() and in this case, the debugger's memory request was successful (it returned noErr) and cleared your application's MemError() result.

The solution to this problem is often just to not step over Memory Manager calls and the call to MemError(). If you put a break point just after the MemError() call, you usually get the correct error -- the one your application would see if it wasn't running in the debugger.

The other option is to use a low level debugger such as MacsBug to debug your memory allocation problems.

As a general rule your application should check the value of the handle or pointer returned by NewHandle, NewPtr, etc: and if it is nil, you should call MemError() for an error number. Just calling MemError() without checking the value of the handle/pointer is not a good idea.

Mark Cookson

 

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.