Skip navigation.
 
mlRe: main window sound
FROM : David Cairns
DATE : Sat Jan 25 23:24:42 2003

You can use an NSSound to play a .snd or AIFF or mp3 or whatever you
want.  try this:

- (void)awakeFromNib {
   NSSound *mySound = [[NSSound alloc] initWithContentsOfFile: myFile
byReference: NO];
   [mySound play];
}



  -- dave

--------------------------------------------
"see you later, space cowboy..."
--------------------------------------------
_______________________________________________
cocoa-dev mailing list | <email_removed>
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.

Related mailsAuthorDate
mlmain window sound John Q. Jan 24, 08:25
mlRe: main window sound David Cairns Jan 25, 23:24