Aug 89 Mousehole
Volume Number: | | 5
|
Issue Number: | | 8
|
Column Tag: | | Mousehole Report
|
Mousehole Report
By Rusty Hodge & Larry Nedry, Mousehole BBS
From: Caro
Subject: mac logic board
I have a problem with my Mac+ logic board (I already KNOW its not RAM or any peripheral)
--on power-up it puts up a black screen and sad Mac
--doesnt even get as far as the RAM test
--and posts an error code of 030020.
Apple doesnt support chip level repair, and I really dont want to pay 350 plus trade in for what is probably a 2.00 chip. Any Mac hardware hackers out there? Im a programmer and my boss is equally expert with hardware and software. Anyone know what this error message means? Other handy hints? Where to get a complete schematic?
From: Smugwimp
Subject: mac logic board
The chances are it is one of your ROM chips. You should have snap in chips as far as the ROM goes. Call Pre-Owned Electronics (sorry I dont have #). They have ads in the Computer Shopper and sell them for around $125 a set. If you do change them yourself
a) Be certain you are out of warranty
b) is Applecare not an answer ?
c) if you DO IT, be SURE to observe anti-Static procedures so as not to blow the rest of your Mac replacing one section. --> SmugWimp
From: Ctli
Subject: Extended Keyboard
Im writing an application that will use the extended keyboard. How can I tell if F1 - F4 is pressed in the event loop? Values returned by GetNextEvent are 27A10, 27810, 26310, 27610 respectively. In a dialog hook routine, when F1 - F4 are pressed, Item contains the value $1010.
From: Shunt
Subject: Xcmds and code greater than 32K
HELP!!
Im in the process of writing a series of XCMDs for HyperCard; having got right through to the 49th - now Ive have run into problems.
The code for this particular command is too large for a standard 32767 byte segment and, on linking, I have a stream of error 48 messages whereby the PC-relative edit offset is out of range (jump table calls greater than 32k away). I have tried reorganizing the procedures, functions and include files- unfortunately I cannot strip out any more of the code. I can set the segment size to accommodate the code OK, and have tried -srt option on linking and -b option on compiling: All to no avail.
Any suggestions please! These Xcmds will also be duplicated as 4D Externals so any Help on this front would also be greatly appreciated.
Many thanks Doug Hunter.
From: Craigk
Subject: Xcmds and code greater than 32K
I had a similar problem programming the Manhattan ZIP Code Locator. In trying to handle over 800 streets and thousands of addresses, I just resorted to 3 XCMDS. If what I wanted didnt get done in the first one, I just called the next one. I realize that this is not a direct answer to your question, but that is how I worked around the 32K limit.
From: Spud
Subject: XCMDs with CODE?
I was about to write an XCMD that calls an external CODE resource, when someone informed me that HyperCard cant do that!!! Is it true?!?
From: Rguerra
Subject: KeyCode Question
I need to translate a keyCode (obtained from the EventRecord message field using the KeyCodemask and BitAnd) BACK into an ASCII character. I cant just get it from the Event message because modifier keys will give you strange characters and I just want exactly whats on the key that was pressed. I tried using KeyTrans but I cant seem to make it work. Can anyone help me with this!?!? Im up against a deadline and I need to get this problem solved. Thanks!
Rich
From: Rguerra
Subject: KEYTRANS AGAIN
As it turns out, the solution to my keyCode back to ASCII conversion question is simple: The trick is to save the value of the State variable after calling KeyTrans the first time.
KeyTrans(transData, keycode, state);
This call returns a LONGINT that contains (among other things) the ASCII code of the key youve just pressed. No more problems!
Rich
From: Wenbrown
Subject: List Manager Follies
Does anyone out there use List Manager?? I have been struggling to write a simple two-dimensional list for data display and entry. I have succeeded in using Lnew to create a list and attach it to a window. I have used Lsize to adjust the size of the list when the window is resized, and several other standard tricks. Heres the problem: When the mouse is clicked inside the content region, my program crashes with an Address error. The offending statement is:
TempBoolean:= Lclick (NewPoint, event.modifiers, ListHand)
Amazingly, this statement works fine when the mouse is clicked inside the scroll bar! The list scrolls beautifully. But when its clicked inside the displayed list itself, the Address Error occurs. I have checked the values of NewPoint.v, NewPoint.h, event.modifiers and ListHand (the handle to my list), and all values are reasonable! My program is translated from a Lightspeed C program which appeared in MacTutor in March 1989: How to Write a Spreadsheet in LS C.
From: Skaros
Subject: VBL inits
Ive been trying to install a VBL at init time but have not been successful so far. My strategy has been to compile a simple VBL(something that posts an APP1 event) as a CODE resource. Then my installer sets up a test window and installs the VBL in the following way: 1)get the resource,2)lock the handle, 3)get its size, 4)allocate a block of memory with a newptr call, 5)do a blockmove of the dereferenced locked handle of the CODE resource into the newly allocated block of memory. Of course, newptr gives me a block in the application heap, but this is just a pilot program. I could easily define a newsysptr call with inline code to get me a block in the system heap. Anyway, my VBLinstalls, interrupts once and then nothing. When I quit my installer, I get a qerr this means my VBL isnt in the queue.My guess as to what is happening is that my vbl counter that is supposed to be initialized during every cycle of the VBL task with the statement--vbl_rec.vblCount :=10; really isnt working. After all , how can a VBL task that is moved into a heap with blockmove ever know where its VBL record is. Therefore,it doesnt reset its counter and therefore it expires after one interrupt. How do I pass the address of the VBL record used in the installer program to the VBL task so that after the VBL is installed, it resets its counter?Or, is there another way to set up a VBL task as an init?
Stefan Karos
From: Rdclark
Subject: Window Mgt, THINK Pascal 2.01?
There are several common problems you can have when resizing a window. The First, the 4 lines youll need should look like this:
{1}
SetRect(sizeLimits, 32, 32, screenBits.bound.right,
screenBits.bounds.bottom);
result := GrowWindow(whichWindow, theEvent.where, sizeLimits);
if (result <> 0) then
SizeWindow(whichWindow, LoWord(result), HiWord(result), TRUE);
Now, for the problem areas: 1) your sizeLimits rect is undefined, or has a minimum size (the first 2 numbers) of (0,0). 2) TheEvent.where is given to you in GLOBAL coordinates, which GrowWindow also expects. Are you calling GlobalToLocal, perchance? (If so -- dont!) 3) LoWord() and HiWord() could be reversed. 4) Youre not checking to see if the result is non-zero (0 = no change!) before calling SizeWindow. 5) The windows defProc is set to be a NoGrowDocProc (which sounds like something youd order at a Chinese restaurant) instead of the more common DocumentProc.
Enough of a hint?
...Richard Clark
Apple Developer University
From: Wenbrown
Subject: List Manager Scrolling
I am looking for a hook that will enable my program to respond to scrolling of a two-dimensional List, so I can rewrite some column and row headings on the screen *as the list is scrolling*. List Managers LCLICK function has a hook, stored in the LClikLoop field of the list, that the programmer can point to a custom routine. Inside Macintosh IV says that the routine will be called while the mouse is clicked or held down in the list rectangle or the scroll bars, but it does NOT work properly in the scroll bars. The programmers custom routine only gets called when the mouse is clicked in the lists visible rectangle, not the scroll bars.
This problem is discussed in the article How to Write a Spreadsheet in the March 1989 issue of Mac Tutor. The author says this problem can be fixed by installing a pointer (to your custom routine) in the system global variable DragHook ($9F6). Well, I finally succeeded in installing the pointer, but it only works in the wrong situations: My routine is called while the scroll bars thumb is being clicked or dragged, but it is *not* called while the mouse is held down in the scroll bars arrows. Thus, I have the same old problem: I cant update my row and column headings until the mouse is released. This looks tacky and confusing to the user. Is there some other approach to solve this problem, or do I have to give up on List Manager and display all my data using QuickDraw?
From: Jimm
Subject: List Manager Scrolling
It seems to me that I read a tech note somewhere that says the list manager aint a spreadsheet interface so dont use it as one!. Not that its much consolation but you may be trying to stretch the manager farther than it wants to go which means it will probably crash with the next system update.
From: Rdclark
Subject: Extended Keyboard
Youll need to look at the key code byte of TheEvent.message (which is the second byte from the right -- youre presently looking at the rightmost byte, which holds an ASCII code.) Look at IM V-190 for the mappings. To do this, in Pascal youd say BitAnd(theEvent.message, $FF00) div $100 (I think theres a symbolic constant for the byte, instead of $FF00, but I cant remember its name), or in C, its (theEvent.message & 0xFF00) >> 8
...Richard Clark
Apple Developer University
From: Ivano
Subject: Help Compiler using Pascal
I am trying to use Robert Monsen Us Help Compiler in a MPW Pascal program. The calling procedure written in TCU is as follows:
ShowHelp()
{
Handle rsrcH;
ProcPtr pp;
if (rsrcH = GetResource(CODE, 2000))
{
HLock(rsrcH);
pp = (ProcPtr) *rsrcH;
(*pp)();
ReleaseResource(rsrcH);
}
}
In rewriting this to pascal, I am having trouble with the (*pp)(). If my limited C experience is correct, what I need to do is go to the address of CODE 2000 pointed to by pp. Pascal isnt to friendly with ProcPtrs, any suggestions would be appreciated.
Ivan L. Ossander
From: Gurglekat
Subject: Help Compiler using Pascal
Heres what I use to jump to the external transfer protocol code resources in my terminal program:
{2}
procedure LaunchProto (transType: resType);
var
protoName: Str255;
theProto: Handle;
theProtoID: integer;
procedure CallProto (serialInput, serialOutput: integer;
itsID: integer;
macBinary: boolean;
p: Ptr);
inline
$205F, $4E90;
begin
GetItem(GetMHandle(theMenu), theItem, protoName);
theProto := GetNamedResource(transType, protoName);
if theProto = nil then
Message(noProtocol, cautionIcon)
else begin
GetResInfo(theProto, theProtoID, transType, protoName);
HLock(theProto);
CallProto(serialInput, serialOutput, theProtoID, true, theProto^);
HUnlock(theProto);
HPurge(theProto);
end;
end;
Id show you the original note from THINK I got on CompuServe, but CIS might take offense.
From: Macdts
Subject: List Manager Scrolling
Yes, its Tech Note 203 dont abuse the Managers. It would be better to write your own LDEF, or avoid the List Manager all together.
From: Bryce
Subject: Setting current folder
I am using a filter from SFPPutFile to allow the user to create a new folder. Does anyone know how to enter the created folder from within the filter? The code Im using is:
function MyPutFileDlg (item: INTEGER; theDialog:
DialogPtr) : INTEGER;
{ This filter is used to allow the user to create a new folder from within
SFPPutFile }
const
CurDirStore = $398;
var
topLeft : Point;
curDirPtr : ^Longint;
dirParmBlk : HParmBlkPtr;
begin
case item of
-IntOne,getOpen : begin
firstCall := true;
MyPutFileDlg := item;
end;
newFoldButton : begin { RNew FolderS button pressed }
topLeft.h := 90; { top left horiz coord for Put File
dialog }
topLeft.v := 75; { top left vert
<< hit any key >> }
firstCall := true;
SFPPutFile(topLeft,Enter New Folder name:,Empty Folder,
NIL,Reply,NewFoldID,@MyFilter);
firstCall := true;
if Reply.good then begin { Create the designated folder
}
curDirPtr := Pointer(CurDirStore);
putFileVRefNum := Reply.vRefNum;
with dirParmBlk^ do begin
ioCompletion := NIL;
ioNamePtr := @Reply.fName;
ioVRefNum := putFileVRefNum;
ioDirID := curDirPtr^;
end;
theErr := PBDirCreate(dirParmBlk,false);
MyPutFileDlg := 101; { Tell SFPPutFile to update
file list }
end;
end;
otherwise
MyPutFileDlg := item; { Pass control back to SFPPutFile }
end; { case }
Ive seen this done in Raymond Laus SFVol init. Bryce
From: Peter
Subject: Serial.LSP
In the comments for this code, you said to put the SERD resource into the system folder. Unfortunately, I dont have that. Can it be sent up the line to me? Second, if I want to send a 3 char string out the modem port, does char[0] change to char[2] as a packed array? Thanks for the help.
Peter
P.S. I am using TurboPascal.
From: Nicks
Subject: WMgrPort ?s
How do DAs such as BackDrop update the whole screen? I wanted to try the Disk icon INIT from the May MacTutor in real time, changing the icon, then informing the Mac that the screen was invalid. I tried getting the WMgrPort (yeah, I know this is a no-no, but Im just spelunking for fun, not publishing), setting the port to what was returned, getting the portRect, then calling InvalRect with it. Boom! Same thing happens when I get the GrayRgn and call InvalRgn.
Sample:
GrafPtr oldport, wport;
Rect r;
GetPort(&oldport);
GetWMgrPort(&wport);
SetPort(wport);
r = wport->portRect;
InvalRect(&r);
SetPort(oldport);
The code appears to blow up in the InvalRect call in the ROM in EqualRgn with a odd address. Am I missing something stupid, or is there another approach to doing this? Thanks in advance.
From: Batista
Subject: My Cdev is a little confused.
The Control panel may not be using globals, but, if it is, then it is using them of A4. That of course is of no help and you should not even try to use anything that belongs to the control panel. If they happen to have some globals addressed of A4 you dont even know what they are. The problem you had with the pattern would apply to anything that is one of the QuickDraw Globals in an application such as color and patterns. The easiest way to get around this things is to make your own variables when you need them. The AppleTalk project of LSC makes a socket listener to get requests, and it is inside the code, so dont try doing things with AppleTalk in resource that may get moved like cdevs.
Ricardo Batista
From: Macww
Subject: My Cdev is a little confused.
Make sure you take a look at both Tech Notes 180 and 208 if you hope to do SetupA5() and RestoreA5() in a MultiFinder environment. I think they both used to be on Mousehole Download. I am just now trying to get used to this new BBS host software, so I havent check the files section to see if those tech notes are posted. If not, leave a note requesting them.
From: Pkram
Subject: file busy
I have adapted the text editor in Using the Macintosh Toolbox with C for Aztec C 3.6b. However whenever I save a document created by this editor, other applications such as Word 3.01 or Edit, cannot open the document without getting an alert stating that the file is busy and can only be opened with read only permission. I then used MacTools and checked the busy flag. The file according to the busy flag, was NOT busy. Where in IM can I find the answer to this problem?
From: Fischer
Subject: Editing in a scroll back buffer
I am currently developing a DA with X/Y Modem file transfer, Hayes compatible modem control, and Scroll Back Buffer, in MPW C. I have reached the point where I have to implement a text selection (Copy, Cut, Paste ...) in my Scroll Back Buffer. I havent found any concrete idea on how to do this in MacTutor. I feel frustrated because I have to reinventer la roue for this. Is there anybody here who could help me ? Thank you. Pierre.
From: Mike
Subject: C-ing is not believing!
I have recompiled some XFCNs written in LightSpeed C 2.0 using LSC 3.0. They dont work! Although they compile OK, the call backs to Hypercard dont seem to work all the time. For example,
paramPtr->returnValue = (Handle) CopyStrToHand(A string);
always gives an empty hypercard XFCN result. Anyone have any ideas about what on earth I am doing wrong?
From: Siegel
Subject: C-ing is not believing!
In TLSC 3.0 and later, strings are treated as global variables, rather than being placed pc-relative. Therefore, you need to do a RememberA0() and a SetupA4() at the beginning of your main, and a RestoreA4() at the end. The same applies for floating-point constants.
From: Apage
Subject: Smalltalk/V Primitives
I am about to embark on some development with MPW assembler to generate a new set of floating point primitives for Smalltalk/V Mac. By using TMON to set a trap intercept for _FP68K I found that Smalltalk is still trapping through SANE to get to the 881 processor. I am interested in seeing if I can generate faster primitives in Assembly that will address the coprocessor directly. I am doing this both to see if there is benefit to be gained and to get the feel of the interface in Smalltalk and its primitives. Would anyone be interested in my results and experiences?
From: Chiefauto
Subject: LASERWRITER
HAVING JUST PURCHASED A LASERWRITER IINT, I AM NOW FACED WITH A PAGE COMING OUT EVERY TIME I TURN THE MACHINE ON. I REMEMBER A UTIL THAT ENABLED A PERSON TO DO AWAY WITH THAT ANNOYANCE. CAN SOMEONE U-L IT?, IF NOT, WHERE COULD I PURCHASE IT? ALSO IS THERE A UTIL THAT RESETS THE COUNTER?
From: Macdts
Subject: LASERWRITER
Simply leave the paper tray out, or just slightly out, when turning the printer on. I dont recommend resetting the page counter. It has a meaning, just like the odometer of your car. Setting it to a wrong number does not do any good.
Jim Reekes E.O.,
Macintosh Developer Technical Support
From: Rdclark
Subject: LASERWRITER
Theres another way to do it, and thats with the Widgets application which comes with CE Softwares Disktop. Or, if you have a PostScript downloader program, try this:
serverdict begin
0 exitserver
statusdict begin
false setdostartpage
...Richard Clark
Apple Developer University
From: Noisy
Subject: SysEnvirons help?
OK: so not all of us rush out and buy MPW 3.0 as soon as its released. Can anyone help out a (starving) LSC coder by revealing the SysEnvirons codes for the MacSE/30 & MacIIcx? Pretty please?
From: Batista
Subject: My DA drawing dont work! (sob)
Check the messages on C, there was a similar case. The work around is to declare your own gray pattern.
Ricardo Batista
From: Shell
Subject: Scrolling
Anyone out there have some good generic scrolling code? I want something that will do windows like the Finders and works by shifting the ORIGIN of the port, not merely blitting and Subject-locating things. I need it this way so that I can get object-oriented forms and nested forms to work properly. Any help would be greatly appreciated.
Mail to me here, or as acb@eastek.oz if you are on the Net.
Thanks in advance,
Shell
From: Sped
Subject: Dialog Redrawing
In every serious application Ive ever written, Ive run into this problem. Inevitable, I write a FlushUpdates procedure that goes thru each of my windows and redraws those that have non-empty updateRgns. For dialogs (modal and otherwise), a call to DrawDialog does the trick. Clears up all kinds of ugliness, such as when one modal dialog appears in front of another.
From: Skarosx
Subject: lhe
This is a neat board. A lot of programming info in one place is a time saver. I downloaded some of the code snippets and have been trying to install a VBL task as init. Well, I ran into a small problem. To get a VBL to live in the system heap, it seems I have to get a pointer to a block in the Sysheap. Then I can blockmove the VBL code to that pointer. After speaking with the helpful folks at Symantec, the call one needs to make in pascal has to be defined in assembly or with inline code. No problem, it is:
{3}
Function newPtrSys (N: longint): ptr;
Inline
$201F, $A51E, $2E88;
Mucking around with the system heap got me nowhere, so, I tried to get the technique to work with the application heap. First, an innocuous VBL task (something that just posts an APP1 event) is compiled separately as a code resource with a specific ID. Second, an application is written to install this VBL code in the application heap, and then the application checks for APP1 events in its event loop. The commands to set up the VBL are:
{4}
resH := GetResource(CODE, 600);{This TcodeT resource}
{with ID = 600 contains the compiled VBL task }
Hlock(resH);{Lock the handle}
resSize:= GetHandleSize(resH);
Aptr := newptr(resSize);{Get a pointer on the appHeap to
a block big enough to accomodate theTcodeUresource}
Blockmove(resH^, Aptr, resSize);{Move the TcodeU tothere}
The rest of the application finishes setting up a simple menu and window and the VBL is set up with:
{5}
VBL_ptr := @vbl_rec;
With vbl_rec Do
Begin
qType := ord(vType);
vblAddr := resH^;{the VBL task is a code resource
{moved into the address at sysptr}
vblCount := 60;
vblPhase := 1;
End;
os_result := Vinstall(VBL_ptr);
With this program , all I get is one interrupt. Quitting the app gives me qerr ,i.e., the task is not installed! Help! Stegfan Karos
From: Nicks
Subject: VBL
Sounds like youre not setting the vblCount back to a non-zero value inside your VBL task. A quote from IM: VBLCount specifies the number of ticks between calls to the task. This value is decremented each [tick] until it is zero, then the VBL task will be called The task must reset VBLCount, or its entry will be removed from the queue after it has been executed.
From: Skaros
Subject: VBL
Right! My guess as to what is happening is that my vbl counter that is supposed to be initialized during every cycle of the VBL task with the statement--vbl_rec.vblCount := 10; really isnt working. After all , how can a VBL task that is moved into a heap with blockmove ever know where its VBL record is. Therefore, it doesnt reset its counter and therefore it expires after one interrupt. How do I pass the address of the VBL record used in the installer program to the VBL task so that after the VBL is installed, it resets its counter? Or, is there another way to set up a VBL task as an init?
Stefan Karos
From: Rdclark
Subject: SysEnvirons help?
Look at Tech Note 129. The codes are:
{ in the MachineType field }
envMacIIX = 5;
envMacIIcx = 6;
envSE30 = 7;
and the new CPU type:
env68030 = 4; { in the processor field }
...Richard Clark
Apple Developer University
From: Rdclark
Subject: Scrolling
Using SetOrigin() is probably the _worst_ possible way to do scrolling, as it causes your sroll-bars to flicker and generally behaves in strange ways. If you are using object-oriented programming, as you imply, it should be easy to base your display objects on a display device type which contains the (virtual) top-left of the GrafPort and redraw all objects in relationship to that. Still, if you still want to use the SetOrigin method, drop me a line at rdclark@applelink.apple.com (or here as rdclark), and Ill dig up some code.
...Richard
From: Gurglekat
Subject: Souping up TE
Don Brown managed to soup up TextEdit for his terminal DA MockTerminal. Ive put trap breaks on all the relevant TE traps, and he seems to be using TEInsert for everything but backspaces and TEKey for backspaces. I dont know why he made the distinction, because there doesnt seem to be any speed benefits. Maybe there are on the 8 MHz Macs. But in any case, when I use the same strategy in my code, the screen i/o can barely keep up with 300 baud, if that. Whats DBs secret? I sure dont want to write a TE clone.
From: Frankh
Subject: Souping up TE
If you want to use TextEdit to display data any faster than 300 baud, youll have to buffer the incoming data, giving time for TE to digest it. The easiest way to do this is to increase the serial port input buffer size to something reasonable - the default 64 byte buffer just isnt enough. Use SerSetBuf to increase this buffer to 512 or 1K bytes. Don Brown is probably using TEKey to backspace over text that already has been displayed and is no longer in his buffer. Its the easiest way.
From: Gurglekat
Subject: Souping up TE
Hmmm. Well, what I meant about the distinction was that I wondered why he used anything but TEKey. Whatever. Now, whats this about buffering data? Ive got a 10K serial buffer. Should I only get characters from it when its full to a certain level and then get a lot of them? At the moment Im getting a character each time through the main event loop. And emptying the buffer entirely each time through the main event loops doesnt seem to help either.
From: Frankh
Subject: Souping up TE
If you use the SerSetBuf function to increase the serial port buf, then all you have to do is do a SerGetBuf (which returns the # of bytes in the input buffer) once through the main event loop. If the input buffer (the one increased with SerSetBuf) has data in it, just read off however many bytes were received (usually into another buffer) and process them at your leisure. Since you may end up with more than one character, its easier to display this data by using TEInsert. Usually, youll handle backspace and other control characters before you sent the buffer out to TEInsert, but if you only have a BS in the buffer, then you have to use TEKey to make TextEdit backspace for you. TEInsert ignores BS.
- Frank
From: Gurglekat
Subject: Souping up TE
Not only does it WORK, but it works in a neat way. As soon as I added the scrollbar for the scrollback buffer, I had to update the scrollbar control bar max and the value to match every time a new line came in. So now, instead of the output jerking along like some sad approximation of multitasking, most of the buffering goes on during the new line sequence, so lines appear all at once but partial lines are also taken care of! Thanks again.
From: Inbox
Subject: Scrolling
Im also very much interested in getting some good scrolling code. Im writing a spreadsheet-type of thing, and I cant redraw the whole screen every time - takes too long. So, please e-mail any scrolling code at all. Thanks in advance,
_inBox_
From: Mrteague
Subject: high speed modems
It really depends on how much money you have to spend - if money is not the biggest object, then go for the Telebit Trailblazer line of modems - which range from a 9600/PEP model to dual 19200/PEP/V.32 model with prices to match. It has a 68000 in it, to give you an idea of its power. They have Sysop programs on a regular basis, with retail prices about the $1000-$1500 mark, and Sysop prices about 40% off. These modems will pay for themselves in no time, if you are heavily into communications. Slightly cheaper I would recommend the USR 9600 Courier HST - USR make very good modems, and have an excellent service record and agressive Sysop program. Again they make a range of products, such of which are supposedly compatible with Telebit. Retail around the $800-$1400 mark, with same sort of Sysop pricing as Telebit. They run a support BBS (I cant remember the number offhand). Telebit can be reached at 1-800-TELEBIT (voice), Im sure someone can give you the number for USR, or I will next time. I have both these modems, and I have extensive experience with them and others, so if you have any questions, feel free to ask.
From: Gurglekat
Subject: LocalTalk Zones
Im looking for an inexpensive way to create LocalTalk zones. Apparently, I need to buy some hardware, but if all I want to do is divide up some zones to manage traffic between work groups better, it doesnt seem like I ought to have to buy a Hayes InterBridge. We have a patch board where all the networks converge physically, so this doesnt have to be a long-distance thing, either.
From: Daveplatt
Subject: JumpStart 1.0
Id recommend being very cautious with JumpStart these days. If you use the option that moves the resource map to the beginning of the resource fork, then any further modification to the resource fork can (Im told) cause the entire fork to become corrupted. JumpStart should probably _not_ be used to accelerate any application that stores any sort of configuration information in its own resource fork, or any application for which the MultiFinder configuration information will need to be modified (since this is stored as a resource, too). As Greg said, it can be useful... but use it CAREFULLY!
From: Mrteague
Subject: Font utility
Apples LaserWriter Font Utility will do exactly this for you - only problem is it only works with LaserWriter II models, and it is suggested for speed that you use an NTX and preferably put the fonts you want listed, on a hard disk connected to the NTX.