Re: Open File/NSMovieView problem
Re: Open File/NSMovieView problem
- Subject: Re: Open File/NSMovieView problem
- From: Thilo Ettelt <email@hidden>
- Date: Sat, 9 Feb 2002 22:15:07 +0100
Well, I did this now:
- (void)windowControllerDidLoadNib:(NSWindowController *) aController
{
[super windowControllerDidLoadNib:aController];
[myQuickTime setMovie:myMovie];
}
- (BOOL)readFromFile:(NSString *)fileName ofType:(NSString *)docType {
NSURL *url = [[NSURL alloc] initFileURLWithPath:fileName];
myMovie = [[NSMovie alloc] initWithURL:url byReference:YES];
return YES;
}
In the window title bar appears a quicktime logo. The movie is not
visible and when I press spacebar I get the following message:
## Component Manager: somone is attempting to find symbols in a
component alias of type (imdc/MPG4/MSFT)
## Component Manager: somone is attempting to find symbols in a
component alias of type (imdc/MP42/MSFT)
## Component Manager: somone is attempting to find symbols in a
component alias of type (imdc/MP42/MSFT)
## Component Manager: somone is attempting to find symbols in a
component alias of type (imdc/MP4S/MSFT)
## Component Manager: somone is attempting to find symbols in a
component alias of type (sdec/MS42/FhG )
## Component Manager: somone is attempting to find symbols in a
component alias of type (imdc/MP43/MSFT)
What does this mean?
Cheers, Thilo
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.