Jon,

I sent you a suggestion before; did you get it?

Anyhow here it a revised version.


The way I do it is as follows:

Select the open rectangle Tool with the line set to none and draw
a small shape directly onto the stage and set its ink to transparent.

Place this shape off stage and then name the corresponding cast
member  (example: Pointer).

Add the following behaviour to your

on mouseWithin me
    sprite(?).loc = point (the mouseH, the mouseV) ---(?) stands for
---the number of the channel where your Pointer is in the score.
    sprite(?).member = "the name of your image"
end

on mouseLeave me
     sprite(?). loc = point (-2000, -2000)
    sprite (?).member = "Pointer"
end

When you have finished you can simply swap the cast members
and place the sprite back off stage.

HTH

JohnT




Jon_Rolph wrote:

> I am a student who is still at the basic levels of lingo.  I am working
> on a project in which I want to attach a downloaded jpg image as my cursor.
>  I know how to attach cursors through the library pallette, but what lingo
> do I use to attach my own cursor?  Any other interesting cursor ideas you
> have would be appreciated.  Thank you all so much for your help.  I am
> just getting started but really enjoying what I am learning.
>
> Jon Rolph


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to