Alert merely beeping, not displaying
Alert merely beeping, not displaying
- Subject: Alert merely beeping, not displaying
- From: Randall Meadows <email@hidden>
- Date: Wed, 2 Apr 2008 10:38:22 -0600
- (BOOL)burnProgressPanel:(DRBurnProgressPanel *)theBurnPanel
burnDidFinish:(DRBurn *)burn
{
[theBurnPanel orderOut:self];
NSAlert *reminder = [NSAlert alertWithMessageText:msg
defaultButton:@"OK"
alternateButton:nil
otherButton:nil
informativeTextWithFormat:info];
[reminder beginSheetModalForWindow:myWindow
modalDelegate:self
didEndSelector:@selector(burnReminderDidEnd:returnCode:contextInfo:)
contextInfo:NULL];
return YES;
}
All I get out of that beginSheet... method is a beep; the alert does
not display, I get no messages anywhere (that I can find) that might
indicate what's wrong. The orderOut: message to theBurnPanel works,
so it's not like I'm trying to put one sheet on top of another.
"msg", "info", and "myWindow" all appear to be valid objects.
Any ideas on how to figure out the problem here?
Thanks!
randy
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden