Associate a description to a jpg

Ask a Question related to Macromedia Flash, Design and Development.

  1. #1

    Default Associate a description to a jpg

    Hi!
    I hope somebody can help me:
    In my web page there are some buttons that allow to load several jpeg
    pictures in the same main movie,I created an empty movie in the main movie
    so I can load the picture into it and positioning the picture wherever I
    want, but now I'd want that pressing the button you can also see a
    description, so I need to associate a description for each picture, how I
    can do it?
    below what I use to load the photo:

    on (release) {
    shell.loadMovie("prova.jpg", 0);
    }

    Many thanks in advance

    Gianluca


    Gianluca Guest

  2. Similar Questions and Discussions

    1. Version 10 will not associate with swf files
      Please tell me what to do as I have tried all the window's methods. I installed today and do not have a desktop icon or an entry in All Programs....
    2. Associate multidim array
      I have the following table I am going to read from a database: ROD S_PD S_RF BZ_BRG 0.63 8.7 38 5.7 1.00 12.1 41.6 13.5 1.38...
    3. How to associate the value of dropdown with checkbox
      Hi All, I have the following case. I am trying to update a table based on the value of dropdown box and checkbox. Here is what I have in...
    4. Associate buttons with keyboard?
      I'm relatively new to flash and far from familiar with Action Script, however, is there a way to associate buttons being pressed on a webpage with...
    5. re-associate photoshop with .psd files
      hi, i have photoshop 5.5 and windows98se i recently installed irfanview 3.8 and since i did that, something strange has happened: normally...
  3. #2

    Default Re: Associate a description to a jpg

    hi,

    if you have one button per image (it does look so) you could display the
    text in the onPress event.

    just make anoter mc, put an dynamic text in it and make it invisible.

    onPress set the text for the current image and make it visible again. (or
    just leave it visible and set the text to "")
    onRelease (or whenever the text should disapear) make it invisible ...

    nGFX


    --
    [url]http://www.widebight.de[/url]
    [url]http://www.cauldron-2.com[/url]
    [url]http://www.ngfx.de[/url]
    [url]http://www.the-wizards-hat.com[/url]

    People who used magic without knowing what they were doing usually came
    to a sticky end. All over the entire room, sometimes.
    -- Terry Pratchett, Moving Pictures


    p.s. nGFX is now selling his services: WideBight /2.0, flash games and 3D.
    contact: info (at) ngfx.de


    "Gianluca" <giarriz@tin.it> schrieb im Newsbeitrag
    news:18NZa.70627$cl3.2171060@news2.tin.it...
    > Hi!
    > I hope somebody can help me:
    > In my web page there are some buttons that allow to load several jpeg
    > pictures in the same main movie,I created an empty movie in the main movie
    > so I can load the picture into it and positioning the picture wherever I
    > want, but now I'd want that pressing the button you can also see a
    > description, so I need to associate a description for each picture, how I
    > can do it?
    > below what I use to load the photo:
    >
    > on (release) {
    > shell.loadMovie("prova.jpg", 0);
    > }
    >
    > Many thanks in advance
    >
    > Gianluca
    >
    >

    nGFX 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