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

Six fantastic ways to spend National Vid...
As if anyone needed an excuse to play games today, I am about to give you one: it is National Video Games Day. A day for us to play games, like we no doubt do every day. Let’s not look a gift horse in the mouth. Instead, feast your eyes on this... | Read more »
Old School RuneScape players turn out in...
The sheer leap in technological advancements in our lifetime has been mind-blowing. We went from Commodore 64s to VR glasses in what feels like a heartbeat, but more importantly, the internet. It can be a dark mess, but it also brought hundreds of... | Read more »
Today's Best Mobile Game Discounts...
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Nintendo and The Pokémon Company's...
Unless you have been living under a rock, you know that Nintendo has been locked in an epic battle with Pocketpair, creator of the obvious Pokémon rip-off Palworld. Nintendo often resorts to legal retaliation at the drop of a hat, but it seems this... | Read more »
Apple exclusive mobile games don’t make...
If you are a gamer on phones, no doubt you have been as distressed as I am on one huge sticking point: exclusivity. For years, Xbox and PlayStation have done battle, and before this was the Sega Genesis and the Nintendo NES. On console, it makes... | Read more »
Regionally exclusive events make no sens...
Last week, over on our sister site AppSpy, I babbled excitedly about the Pokémon GO Safari Days event. You can get nine Eevees with an explorer hat per day. Or, can you? Specifically, you, reader. Do you have the time or funds to possibly fly for... | Read more »
As Jon Bellamy defends his choice to can...
Back in March, Jagex announced the appointment of a new CEO, Jon Bellamy. Mr Bellamy then decided to almost immediately paint a huge target on his back by cancelling the Runescapes Pride event. This led to widespread condemnation about his perceived... | Read more »
Marvel Contest of Champions adds two mor...
When I saw the latest two Marvel Contest of Champions characters, I scoffed. Mr Knight and Silver Samurai, thought I, they are running out of good choices. Then I realised no, I was being far too cynical. This is one of the things that games do best... | Read more »
Grass is green, and water is wet: Pokémo...
It must be a day that ends in Y, because Pokémon Trading Card Game Pocket has kicked off its Zoroark Drop Event. Here you can get a promo version of another card, and look forward to the next Wonder Pick Event and the next Mass Outbreak that will be... | Read more »
Enter the Gungeon review
It took me a minute to get around to reviewing this game for a couple of very good reasons. The first is that Enter the Gungeon's style of roguelike bullet-hell action is teetering on the edge of being straight-up malicious, which made getting... | Read more »

Price Scanner via MacPrices.net

Take $150 off every Apple 11-inch M3 iPad Air
Amazon is offering a $150 discount on 11-inch M3 WiFi iPad Airs right now. Shipping is free: – 11″ 128GB M3 WiFi iPad Air: $449, $150 off – 11″ 256GB M3 WiFi iPad Air: $549, $150 off – 11″ 512GB M3... Read more
Apple iPad minis back on sale for $100 off MS...
Amazon is offering $100 discounts (up to 20% off) on Apple’s newest 2024 WiFi iPad minis, each with free shipping. These are the lowest prices available for new minis among the Apple retailers we... Read more
Apple’s 16-inch M4 Max MacBook Pros are on sa...
Amazon has 16-inch M4 Max MacBook Pros (Silver and Black colors) on sale for up to $410 off Apple’s MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather than a third-party... Read more
Red Pocket Mobile is offering a $150 rebate o...
Red Pocket Mobile has new Apple iPhone 17’s on sale for $150 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Switch to Verizon, and get any iPhone 16 for...
With yesterday’s introduction of the new iPhone 17 models, Verizon responded by running “on us” promos across much of the iPhone 16 lineup: iPhone 16 and 16 Plus show as $0/mo for 36 months with bill... Read more
Here is a summary of the new features in Appl...
Apple’s September 2025 event introduced major updates across its most popular product lines, focusing on health, performance, and design breakthroughs. The AirPods Pro 3 now feature best-in-class... Read more
Apple’s Smartphone Lineup Could Use A Touch o...
COMMENTARY – Whatever happened to the old adage, “less is more”? Apple’s smartphone lineup. — which is due for its annual refresh either this month or next (possibly at an Apple Event on September 9... Read more
Take $50 off every 11th-generation A16 WiFi i...
Amazon has Apple’s 11th-generation A16 WiFi iPads in stock on sale for $50 off MSRP right now. Shipping is free: – 11″ 11th-generation 128GB WiFi iPads: $299 $50 off MSRP – 11″ 11th-generation 256GB... Read more
Sunday Sale: 14-inch M4 MacBook Pros for up t...
Don’t pay full price! Amazon has Apple’s 14-inch M4 MacBook Pros (Silver and Black colors) on sale for up to $220 off MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather... Read more
Mac mini with M4 Pro CPU back on sale for $12...
B&H Photo has Apple’s Mac mini with the M4 Pro CPU back on sale for $1259, $140 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – Mac mini M4 Pro CPU (24GB/512GB): $1259, $... Read more

Jobs Board

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