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

  1. #1

    Default Scrolling CDmap

    Trying to creae a scrolling text cdmap, with all the sections of a cd in text
    which is coloured corresponding to the section. You know the thing

    Section
    Subsection
    Another subsection
    Another Subsection
    Section

    etc.

    TO link it to the parts of the cd that each line corresponds to I used links
    to the markers. Thing is, when creating these links(I assume that they are
    hyperlinks) the colouring changes to standard blue. How can I create these
    links while retaining the differing colours? Again I am new to all this so can
    you keep any remedies simple

    I'd be grateful for any hel

    boris the spie Guest

  2. Similar Questions and Discussions

    1. Scrolling
      not when focus is at the top of the form, can you still see the subform? if yes, this may work: private sub form_open Me!TopControl.SetFocus...
    2. InD CS scrolling
      Hello My scrollfunction on the touchpad also crashes. But its with the Acrobat 6.0 I am using a W-720 notebook with synaptics touchpad. WinXP...
    3. scrolling?
      hi, can anyone direct me to a tutorial where i can find out how to do scrolling exactly like in the link below? http://www.consortium.ru/ ...
    4. combination scrolling text scrolling picture and on MouseEnter function
      it would help if you posted the code for us to look at... that way we can try to help ;) In article <bk6jip$ctm$1@forums.macromedia.com>, <...
    5. Custom Scroll Bar: Want to switch scrolling member, but keep scrolling intact.
      Hey all. This is a juicy one. Simple Idea, Simple minded author can't find solution.... I have a text member in sprite 29. I have the "Custom...
  3. #2

    Default Re: Scrolling CDmap

    To retain the custom colors you probably have to craft your own custom
    hyperlink code, probably would just check the mouseLine in a mouseDown
    handler, perhaps looking up the corosponding marker in an off screen
    field member with the same number of lines as the displayd field.




    displayed field script


    on mouseDown me
    clickedLine = the mouseLine
    go to line clickedLine of field "offScreenTable"
    end

    adding some temporary color change code would be a feasible addition for
    click hilite.
    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