Cursor problem with editable text members

Ask a Question related to Macromedia Director Basics, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. "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....
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139