Inserting images in a field?

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

  1. #1

    Default Inserting images in a field?

    Hi guys.

    I'm having a custom scrollbar in my presentation and I have one section that
    works like a photo gallery. Now, what I wonder is how do I make it possible to
    scroll the images? I have got the scrollbar to work at textfields, so I wonder
    if there is any way to insert the images into a textfield. If not, then how
    should I do? :)

    Zlaxzzor Guest

  2. Similar Questions and Discussions

    1. Inserting New Images
      I'm trying to set up preferences for a particular role. I've selected "new images" on the left hand side and am trying to select the option...
    2. inserting images and text
      how do you add an image to the document on photoshop? And how do i get text with effects, like wordart text, not just normal text? peace.
    3. Help with inserting transparant images
      Grab Stephen Leban's download at: http://www.lebans.com/transparent.htm -- Allen Browne - Microsoft MVP. Perth, Western Australia. Tips for...
    4. Inserting Images
      Complete newbie question. What kind of program do I need to enable me to 'splice' to different photos together? I want to make some photo effects,...
    5. inserting into db from hidden field
      On Tue, 8 Jul 2003 16:44:16 +0200, "awebb" <andywebb25@hotmail.com> wrote: I'm curious why you are using an entire table cell for a hidden...
  3. #2

    Default Re: Inserting images in a field?

    --Make two buttons: upButton and downButton (for example):

    --upButton script:
    on mousedown me
    repeat with allMyScrollableTextAndImages = 1 to 10
    --in this example you need to put yoour images and text in the score on the
    channels 1 to 10
    sprite(allMyScrollableTextAndImages).locV =
    sprite(allMyScrollableTextAndImages).locV - 1
    end repeat
    end

    --downButton script:
    on mousedown me
    repeat with allMyScrollableTextAndImages = 1 to 10
    sprite(allMyScrollableTextAndImages).locV =
    sprite(allMyScrollableTextAndImages).locV + 1
    end repeat
    end

    Succes


    Vincent is Schattig Guest

  4. #3

    Default Re: Inserting images in a field?

    Ok, I think I got the buttons to work. Though now I wonder how to make the area
    where the images are to a fixed height and width (so the scroll works)... Like
    you could have done if you somehow could insert the images into a text area and
    make the height and width of that area fixed like I've done with the texts in
    the other sections of the presentation.

    Zlaxzzor Guest

  5. #4

    Default Re: Inserting images in a field?

    Anybody knows how to deal with this problem?

    And can someone tell me if this sort of bumping is allowed in these forums? If it isn't, I'm sorry... but I really want to know how to fix this ;)
    Zlaxzzor Guest

  6. #5

    Default Re: Inserting images in a field?

    There are probably many ways to set up a scrolling set of thumnails, but this
    is how I might approach it.
    You have a text box with the scroolable text, and you want to scrooll small
    images with such as I understand it. Beside the text box I would stack my
    image sprites so locH would be the same for all and locV would vary by the
    image height (or whatever spacing you desired). Then I would cover the screen
    with a cutout for the image box, and add the text box and my scroll bar.

    Next is the scrolling (incremental locV movement) which you seem to have
    already got a handle on, and what is left is to work out the syncronization
    between the text and images (probably just a matter of the image locV spacing).

    Lee C



    klgc 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