Re: debugging cursors

2009-10-16 Thread Uli Kusterer
On 08.10.2009, at 23:02, David M. Cotter wrote: sorry, yes. when the user types a number in a box and presses enter, i create a cursor based on that number and set it. So now you've told us what you are doing, you still haven't said why ... ? Please tell us, in high-level terms that a user

Re: debugging cursors

2009-10-09 Thread David M. Cotter
yes i have been using remote debugging the whole time. On Oct 9, 2009, at 10:00 AM, Sean McBride wrote: On 10/7/09 5:50 PM, David M. Cotter said: how do i tell the OS to stop setting my cursor to the beachball whilst stopped in the debugger? i'm debugging my cursor setting stuff and that m

Re: debugging cursors

2009-10-09 Thread Sean McBride
On 10/7/09 5:50 PM, David M. Cotter said: >how do i tell the OS to stop setting my cursor to the beachball whilst >stopped in the debugger? i'm debugging my cursor setting stuff and >that makes it impossible Debugging such things is often easier with two machines. This is dated, but a good star

Re: debugging cursors

2009-10-08 Thread Mike Abdullah
On 9 Oct 2009, at 00:01, David M. Cotter wrote: Read the documentation i have extensively read the documentation tell us what you tried (preferably by posting your code), and we might be able to help. i told you: i set the cursor in response to the user pressing enter after editing a text

Re: debugging cursors

2009-10-08 Thread I. Savant
On Oct 8, 2009, at 7:01 PM, David M. Cotter wrote: Read the documentation i have extensively read the documentation tell us what you tried (preferably by posting your code), and we might be able to help. i told you: i set the cursor in response to the user pressing enter after editing a te

Re: debugging cursors

2009-10-08 Thread Quincey Morris
On Oct 8, 2009, at 16:01, David M. Cotter wrote: i set the cursor in response to the user pressing enter after editing a text edit. then 1/2 second later, the OS sets it back to an arrow. either ther'es a way to trap that, or there isn't. how do i set a breakpoint on that? There isn't.

Re: debugging cursors

2009-10-08 Thread Dave Keck
Have you tried breaking on NSCursor -set? How about -push? Or SetThemeCursor()? ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lis

Re: debugging cursors

2009-10-08 Thread David M. Cotter
Read the documentation i have extensively read the documentation tell us what you tried (preferably by posting your code), and we might be able to help. i told you: i set the cursor in response to the user pressing enter after editing a text edit. then 1/2 second later, the OS sets it bac

Re: debugging cursors

2009-10-08 Thread I. Savant
On Oct 8, 2009, at 5:02 PM, David M. Cotter wrote: sorry, yes. when the user types a number in a box and presses enter, i create a cursor based on that number and set it. one second later, without any of my code running, the OS seems to change the cursor to an arrow. i want to find out w

Re: debugging cursors

2009-10-08 Thread David M. Cotter
Really?? does nobody know how to do this? Likely not, because you're not explaining why. You mention "changed the cursor out from under me" ... is this because you're having some problem in your app? sorry, yes. when the user types a number in a box and presses enter, i create a curso

Re: debugging cursors

2009-10-08 Thread I. Savant
On Oct 8, 2009, at 4:50 PM, David M. Cotter wrote: Really?? does nobody know how to do this? Likely not, because you're not explaining why. You mention "changed the cursor out from under me" ... is this because you're having some problem in your app or do you really want to try changing

Re: debugging cursors

2009-10-08 Thread David M. Cotter
Really?? does nobody know how to do this? On Oct 7, 2009, at 5:57 PM, David M. Cotter wrote: okay what i *really* need to do is override the OS *ever* setting the cursor to arrow eg: [[NSCursor arrowCursor] set]; i want to override that. i need to tell the OS to knock it off. worst ca

Re: debugging cursors

2009-10-07 Thread David M. Cotter
okay what i *really* need to do is override the OS *ever* setting the cursor to arrow eg: [[NSCursor arrowCursor] set]; i want to override that. i need to tell the OS to knock it off. worst case i need a notify that the OS changed the cursor out from under me. On Oct 7, 2009, at 5:50

debugging cursors

2009-10-07 Thread David M. Cotter
how do i tell the OS to stop setting my cursor to the beachball whilst stopped in the debugger? i'm debugging my cursor setting stuff and that makes it impossible ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requ