Re: Custom cursors

2011-02-19 Thread stgoldb...@aol.com
I created a stack that explains how to make custom cursors. It includes a library of cursors that can be used within LiveCode for games or other applications. If interested, let me know and I'll email it gratis. Steve Goldberg stgoldb...@aol.com

Re: Custom cursors

2011-02-19 Thread J. Landman Gay
On 2/19/11 6:43 PM, stgoldb...@aol.com wrote: I created a stack that explains how to make custom cursors. It includes a library of cursors that can be used within LiveCode for games or other applications. If interested, let me know and I'll email it gratis. Steve Goldberg stgoldb...@aol.com

Custom cursors

2011-02-18 Thread Richmond
Yes, I know this is a fairly well trodden path; BUT . . . . I am looking to use a PNG image (XXX.png) as a cursor image within a text field only. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

Re: Custom cursors

2011-02-18 Thread David C.
Hi Richmond, How about: on mouseEnter set the lockCursor to true set the cursor to 1005 -- your image id end mouseEnter on mouseLeave set the lockCursor to false set the cursor to arrow end mouseLeave Best regards, David C. ___

Re: Custom cursors

2011-02-18 Thread Peter Brigham MD
On Feb 18, 2011, at 1:46 PM, David C. wrote: Hi Richmond, How about: on mouseEnter set the lockCursor to true set the cursor to 1005 -- your image id end mouseEnter on mouseLeave set the lockCursor to false set the cursor to arrow end mouseLeave Best regards, David C. Best to not

Re: Custom cursors

2011-02-18 Thread Colin Holgate
On Feb 18, 2011, at 5:59 PM, Peter Brigham MD wrote: I seem to remember having to do some tricks with the png image before trying to use it as a cursor That didn't seem to be the case when I was trying it. The image is also used at its scaled size, so you can import as control a png,

Re: Custom cursors

2011-02-18 Thread David C.
An interesting thing I've learned about custom cursors in this discussion it's really hard (nigh impossible) to take a screen-shot of the custom cursor when it is being displayed. I tried taking simple Prt Scr type screen-shots on both Windows and Linux, never being successful at all on Linux

Re: Custom cursors

2011-02-18 Thread Colin Holgate
Untested on Mac It's hard there too. I use Snapz Pro X v2, and it has a movie recording feature where you can choose that the cursor be showing, and that gets the custom cursor ok. I would have thought that the utility, Grab, with its Timed Screenshot would do it, but it doesn't.