Contribute and Pop-Up windows

Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Contribute and Pop-Up windows

    Hi there,

    Offently I have user that want pop-up windows on their site to provide
    enlarged view of thumbnail pics to their website visitors. Of course with a
    little javascript fonction and a link do the trick.

    But how to provide Contribute Users the possibility to add more thumbnails and
    a larger associated view in a pop-up window using a javascript link?

    Code:
    [Q]<a href="/i/terrasse.htm" onclick="return popup('/p/en/terrasse.php')"><img
    src="/i/terrasse_s.jpg" alt="Terrasse View" width="350" height="258"
    class="image_align_left" /></a>[/Q]

    Javascript:
    [Q]function popup(url, name, width, height) {
    var settings =
    "toolbar=no,location=no,directories=no,status=no,m enubar=no,scrollbars=yes,resiz
    able=yes,width="+width+",height="+height;
    window.open(url,name, settings);
    }
    [/Q]

    Any idea?


    richsky Guest

  2. Similar Questions and Discussions

    1. Windows wants to install Contribute
      I no longer have Contribue 3 on my computer. When I use Windows Explorer and right click on a file, or delete an item from my Desktop, or sometimes...
    2. Contribute and Windows Vista
      I just upgraded to a computer running Windows Vista Ultimate. I have Contribute 3.0 loaded, but it will not run on this computer. Is there a fix,...
    3. Contribute 4 with Windows Vista
      Has anyone tried Contribute 4 with the Vista environment yet? I have a client using Contribute 4 that is wanting to move to Vista. I've read the...
    4. Bug in contribute with Windows FTP
      I have Windows FTP server 2003 with WIndows FTP. I tried COntribute 3, but the problem is that after I edit and publish file it says Ican not edit...
    5. HELP!!! Contribute 3 Windows will NOT open
      Help!!! Contribute 3 will not open for my client. I went to fix her computer problems, I uninstalled .Net 1.1, and while it was doing so, a dialog...
  3. #2

    Default Re: Contribute and Pop-Up windows

    Hmm, nobody's ever had this question or I'd better to go on Dreamwavers' forum?
    richsky Guest

  4. #3

    Default Re: Contribute and Pop-Up windows

    I usually create some javascript/php app that calls image files from a specific
    folder. In that folder the Contribute user uploads images (menu: File, Publish
    file from my computer) and the thumbnails can be created dynamically. Some
    lightbox scripting would be nice to, instead of using popups.

    ThinkInk 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