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

  1. #1

    Default Score Question...

    I have a simple interface I've designed with sort of a window or screen to
    view the content. (furniture catalog and .mov files.)

    for each furniture piece that section of sprites are 5 frames long in the
    score (to allow a fade in when the user clicks to it)

    the navigational interface is stretched out pretty much over the whole
    timeline, but my timeline is now about 400 frames in length.

    is this ok? does the span of a sprite in the score affect RAM usage as
    opposed to multiple short segments?

    big thanks in advance,

    -Jason


    high on a mountain top Guest

  2. Similar Questions and Discussions

    1. Score keeps resetting!
      Hi All, I'm making a Rock, Paper, Scissors game, and I have many lingo scripts which I've written. The file is here:...
    2. Score Recording
      I'm looking into score recording as I think it will help me a lot with my current project, however I can't find out how to add a marker to my score...
    3. ADD SCORE
      in the game im making i need to keep a score. the points will increment by 5 and 15. how do i make a button that adds 5 to the score board but at...
    4. Adding to a score
      How do I add points ie. 10 points to my score feild? Because when I do it all it does is write 10 to the feild not the number 10
    5. put score into textfield
      Hi All, I wrote an easy game to go with a project, but I'm stuck with a problem. The point of the game is, you fly a rocket that has to evade...
  3. #2

    Default Re: Score Question...

    400 frames of score should no problem, I don't believe the ram overhead
    to maintain te score is significant, more import is setting a layout
    scheme that minamizes the authoring time per catalog item.

    To save the effort of making a unique score marker for each 'page' you
    can use a calculated offset from a base marker to locate an entry.


    example:

    on accessCatItem catItem
    go to marker("catalogStart") + (catItem - 1) * 5
    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