sho@gibbs.physics.purdue.edu (Sho Kuwamoto) (06/09/91)
I've had some problems implementing AppleEvents.  I've taken the program
and stripped it down as much as possible.  The code which processes 
events looks like this:
void ProcessEvent(void)
{
    OSErr         err = noErr;
    EventRecord   event;
        
    if (WaitNextEvent(everyEvent, &event, 15, nil))
        if (event.what == kHighLevelEvent)
            err = AEProcessAppleEvent(&event);
}
The error I get when I call AEProcessAppleEvent is noOutstandingHLE.
Has anyone seen behavior like this before?
-Sho
-- 
sho@physics.purdue.edu