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

  1. #1

    Default random images lingo

    i'm not sure if anyone can help. i have just started using director and wondered if it's possible to have a folder/cast of around 30 images and for these to be randomly viewed on the stage. Do i need to create a field on the stage where they wold appear?? If anyone has a suggestion or lingo which would enable me to do this that would be great. any help is gratefully received.

    many thanks.


    rozza1 webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Extension: Dynamic Images/Advance Random Images
      Hi there, I have downloaded 2 extensions: Dynamic Images or/and Advanced Random Images (kaosweaver.com); it seems both are the same and I have...
    2. Random Images
      I'm struggling with adding random images to a Dreamweaver site. I'm fairly new to Dreamweaver and had a lot of problems adding a menu that I...
    3. Advanced Random Images
      :confused; I too encountered the same problem as design girl after installing the extension Advanced random images. However the solution...
    4. Random Images on Mac?
      I am using the Kaosweaver Advanced Random Images and have for sometime. However, I have recently uploaded files that work while viewing on a PC but...
    5. Help - Random images
      Hi, I have a web page which is a simple html table whish contains a picture in one of the cells. I want this to be one of 13 random pictures...
  3. #2

    Default Re: random images lingo

    Yes it is very possible :)

    all you have to do is to name those cast members with the same name
    followed by a number. This number will identify the member to show on
    stage E.g. image1, image2, ..., image 30

    then you have to calculate a random number between 1 and 30 (in my
    example).

    and do this to show that image on stage
    sprite(thisSpriteNumber).member =
    member("image"&randomCalculatedNumber)
    -- updateStage (this might be needed or not, depending on when/where
    the script is run)

    And that should do it

    Hope this will help you

    On Wed, 13 Aug 2003 14:42:17 +0000 (UTC), "rozza1"
    [email]webforumsuser@macromedia.com[/email] wrote:
    >i'm not sure if anyone can help. i have just started using director and wondered if it's possible to have a folder/cast of around 30 images and for these to be randomly viewed on the stage. Do i need to create a field on the stage where they wold appear?? If anyone has a suggestion or lingo which would enable me to do this that would be great. any help is gratefully received.
    >
    >many thanks.
    >
    TomaHawK Guest

  4. #3

    Default Re: random images lingo

    Hi,

    This is pretty straight forward:

    You store your images in the cast and change the cast member property of a sprite on stage to a random number between 1 and 30.

    For example if your sprite was in channel 1 and your pictures where between 1 and 30 in the cast:

    sprite(1).membernum=random(30)

    Of course you?ll have to decide when this is going to happen ? on mousedown, on keydown, on exitframe etc etc.
    The basics forum s probably a good place to start if you re not sure of this kind of thing - and of course the help file.
    I ve attached a little file which might get you started.

    Good luck

    Des


    [url]http://webforums.macromedia.com/attachments/RandomMember.zip[/url]


    Desmond22 webforumsuser@macromedia.com Guest

  5. #4

    Default Re: random images lingo

    thanks a lot for your help. will give it a go...


    rozza1 webforumsuser@macromedia.com 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