Re: Copy via Pasteboard
Re: Copy via Pasteboard
- Subject: Re: Copy via Pasteboard
- From: Shin Yamamoto <email@hidden>
- Date: Tue, 10 Jul 2001 22:42:24 +0900
On mardi, juillet 10, 2001, at 11:30 AM, Stefan Jung wrote:
>
The problem: Copy is always ghosted.
>
The solution: - fill in please- :-)
You might want to send the NSWindow's message,
-(void)makeFirstResponder:, somewhere in your view's -(void)mouseDown:,
something like:
...
[[yourView windoow] makeFirstResponder:self];
...
and see what happens.
- shin