Ask a Question related to Macromedia Director Basics, Design and Development.
-
mattc1982 webforumsuser@macromedia.com #1
Cursor problem with editable text members
I've been developing a large product for a government agency this past year and have one problem left that is driving me insane.
All my conent is kept in editable RTF text members so users can copy the text.
I have other editable text members (can't use fields) for things like search and a note keeping area.
The problem is that whenever the user brings two editiable text members up and switches between them (such as copying from one and pasting to another) all cursors within the text members stop working and the default arrow is shown. I would like the I-beam over the main content and the finger over hyperlinks within the content (so I can't use sprite.cursor commands). The cursor flashes and very briefly does show the correct cursor so something is overriding my 'cursor 1' command...
Has anyone ever seen this? Is it a Director bug?
Cut down version of what I have:
Two editable text members on the stage both with this script attached will demonstrate the problem if you click in one then the other a few times
on mouseWithin
cursor 280
end
on mouseLeave
cursor -1
end
Matt
mattc1982 webforumsuser@macromedia.com Guest
-
Text cursor problem
I have seen this problem in Freehand 9 & 10 on multiple PCs. You try to click the cursor in the middle of the page but it jumps to the top of the... -
Flash MX members with dynamic textfields cause cursor flicker?
I'm running a movie with a flash member with buttons that call for lingo handlers to change the cursor on mouseovers. Everything works fine, until I... -
changing a text members text content with lingo
Is there a way of setting the content of a text member through lingo, specifying where there should be Carriage Return. I have a director movie... -
cursor 200-problem on mac but not pc? how to swap cursor image?
Hi, I want to hide the cursor in my projector. I've been using "cursor 200" for some time now and it works fine. But now, when I try my projector... -
"No Editable Text" Problem
I'm fairly new -- use Dreamweaver MX. I set up a small site that redirects to my main site. I kept it small while making sure the redirect works.... -
JB #2
Re: Cursor problem with editable text members
One potential problem:
the mouseWithin handler gets called often, ( similar to an idle handler
) it's probably a bad practice to repeatadly set the cursor as you do
below, better to set the cursor on mouseEnter or set the cursor of the
sprite to 280.
on mouseWithin
cursor 280
end
JB Guest



Reply With Quote

