Gallery modifications (hints wanted)

Hi,
I'm a newcomer in the area of web development but I've spent
a few years in VB development so I thought I'd give the Gallery a
try.
I've setup up my own gallery based on the demo example and it
works just fine. The web is not public yet, but it looks more or
less just like the samle with china/egypt/paris.
I'd like to make a few changes to it and I hope someone could
give me a few hints.
How do I:
1. generate the
xml automatically? I have thousands of photos that I'd like
to add to the gallery and so far I've created the xml files
manually in notepad. This question goes both for the galleries.xml
and most important the photos.xml.
2. Make the
thumbnails grow even more when I hover them?
3. Modify the
size and appearance of the PREV/PLAY/NEXT buttons?
4. Keep the html/js/css code separated from my photos? I
already have all my
photos stored on another drive. Is it possible to load the
pictures from where they are today= I've tried, but failed a few
times - it seems like it can't reach the files on E:\Pictures\...
when the html codes lies on D:\Web\Inetpub\Photos\.
Sorry if the level of the questions is a bit low but I hope
to get up to speed once I've spent some time in code land!

Hi Mik,
To generate the XML automatically, use server side scripting.
What I do in ColdFusion is use CFDirectory to read all the images
in the photos directory. This makes a query that I can them use to
dynamically generate the XML.
I can use this query to either use the CF page as the source
for the data set or the CF can generate the static XML page. I
prefer the former as it lets me add new photos to the directory
without having to regenerate the XML. But, if you want more meta
data in the XML, generating a static file might be better.
<cfset
path="#GetDirectoryFromPath(GetCurrentTemplatePath())##url.id#\images">
<cfdirectory directory="#path#" action="list"
name="photos" recurse="yes">
<!--- Create an XML document object containing the data
--->
<cfxml variable="mydoc">
<gallery>
<photos path="<cfoutput>#url.id#</cfoutput>"
title="<cfoutput>#url.id#</cfoutput>" >
<cfoutput query="photos">
<photo caption="#name#" src="#name#" />
</cfoutput>
</photos>
</gallery>
</cfxml>
<!--- Displays the XML output. Use this option to use this
cfm page as the source.--->
<cfprocessingdirective suppresswhitespace="yes">
<cfcontent type="text/xml" reset="yes">
<cfoutput>#mydoc#</cfoutput>
</cfcontent>
</cfprocessingdirective>
<!--- Write the XML file to this directory. Use this
option to create a XML file. --->
<!---<cffile action="write"
file="#GetDirectoryFromPath(GetTemplatePath())#artists.xml"
output=#toString(mydoc)#>--->
Similar things can be done with PHP or ASP.
For the thumbnail size, check the gallery code. The initial
size is set in the IMG tag. The growth size is set in the
onMouseOver behavior. 'thumbwidth' and 'thumbheight' are stored in
the XML file and dropped in by Spry. They can be hardcoded or
stored in the XML.
The image style is done with CSS. Check the CSS for the
#transport a:link rules. If you have Dreamweaver, click on a button
and check the CSS Panel.
One of the goals of Spry is that the markup is clear and
styling is done with CSS.
To have your photos stored on another drive, you are going to
have to configure the webserver to see the other drive as part of
the webroot. Depending on how the virtual web folder is set up, you
will have to use an absolute path to the other drive. Just depends
on the config.
Hope this helps.
Donald Booth
Adobe Spry Team

Similar Messages

  • Bridge 4 html gallery modification

    I have been using a custom set of html templates for web photo galleries with CS3. The identical feature can be invoked from Bridge/Photoshop CS4 with the provided "extra" plugin.
    However, is there any way to tailor the "output / web gallery", html gallery template option of Bridge CS4 manually. I suspect that this should be a "style" option that I can create. For example, I wish to add buttons and other options to web gallery. I cannot find help information regarding this on Adobe's site.

    I have succeeded in doing some more extensive modification to the web gallery styles:
    By creating a new template style. In my case, I duplicated the html gallery style and giving it another name ("09myHTMLgallery"), then modifying the default settings within the file. The templates are located here: Library/Application Support/Adobe/Bridge CS4 Extensions/Adobe Output Module/mediagallery/resources/templates
    By modifying/hacking the master.css file, which is located here: Library/Application Support/Adobe/Bridge CS4 Extensions/Adobe Output Module/mediagallery/resources/htmlgallery
    Note that the above is based on using Photoshop/Bridge CS4 on a Mac.
    Step 1 is fairly straightforward. What i was able to do with Step 2 is change some of the default styles like ths size of the image numbers, which was really bugging me, and i was also able to add in an image/logo header at the top by inserting it as a background image into the sitetitle div.
    Definitely NOT an elegant work-around. And it doesn't address the image caption issue. But better than nothing.
    Hope this helps someone out there...

  • Gallery Modification

    I was wondering if you guys could help me out with this. I am
    trying to implement an art gallery to show just an image and a next
    and previous button and I have modified the gallery.js to exclude
    the thumbnails. The data loads succesfully but the image and
    current row are not working. Any help is deeply appreciated.
    Script tags in the html file:
    <script type="text/javascript"
    src="includes/xpath.js"></script>
    <script type="text/javascript"
    src="includes/SpryData.js"></script>
    <script type="text/javascript"
    src="includes/SpryEffects.js"></script>
    <script type="text/javascript">
    var dsArt= new Spry.Data.XMLDataSet("gallery.xml",
    "gallery/art");
    var row = dsArt.setCurrentRowNumber(0); // to dynamically
    call an artwork outside gallery.html
    </script>
    <script type="text/javascript"
    src="includes/gallery.js"></script>
    Gallery.js:
    var gBehaviorsArray = [];
    var gSlideShowTimer = null;
    var gImageLoader = null;
    function GetOpacity(ele)
    var o = Spry.Effect.getStyleProp(ele, "opacity");
    if (o == undefined || o == null)
    o = 1.0;
    return o;
    dsArt.addDataChangedObserver("mainImage", { onDataChanged:
    function(dataSet, odcType)
    if (odcType != Spry.Data.DataSet.ODC_DataChanged)
    return;
    StopSlideShow();
    setTimeout(function() { ShowCurrentImage(); }, 100);
    function GetDimensions(element)
    // Spry.Effect.getDimensions() returns offsetWidth and
    offsetHeight
    // which includes the dimensions of the element and its
    padding.
    // We need the dimensions of the content area without the
    padding,
    // so we look up width and height in style first. If we get
    dimensions
    // back in pixels, we use it. If not, we fall back to using
    offsetWidth
    // and offsetHeight.
    dimensions = Spry.Effect.getDimensions(element);
    if (element.style.width)
    dimensions.width = parseInt(element.style.width);
    if (element.style.height)
    dimensions.height = parseInt(element.style.height);
    return dimensions;
    function GetOffsetPosition(element)
    // Spry.Effect.getOffsetPosition() returns offsetLeft and
    offsetTop
    // which includes the position of the element content and
    its padding.
    // We need the position of the content area without the
    padding,
    // so we look up width and height in style first. If we get
    position
    // back in pixels, we use it. If not, we fall back to using
    offsetLeft
    // and offsetTop.
    pos = Spry.Effect.getOffsetPosition(element);
    if (element.style.left)
    pos.x = parseInt(element.style.left);
    if (element.style.top)
    pos.y = parseInt(element.style.top);
    return pos;
    // Trigger the transition animation from the current image
    // being displayed to the image at imgPath.
    function SetMainImage(imgPath, width, height)
    var img = document.getElementById("mainImage");
    if (!img)
    return;
    CancelBehavior("mainImage");
    Spry.Utils.SelectionManager.clearSelection("thumbnailSelection");
    if (gImageLoader)
    gImageLoader.onload = function() {};
    gImageLoader = null;
    gBehaviorsArray["mainImage"] = new Spry.Effect.Opacity(img,
    GetOpacity(img), 0, { duration: 400,
    onComplete: function()
    gBehaviorsArray["mainImage"] = new
    Spry.Effect.Size(img.parentNode, GetDimensions(img.parentNode), {
    width: width, height: height}, {duration: 400, steps: 10,
    onComplete: function()
    // Use an image loader to make sure we only fade in the new
    image after
    // it is completely loaded.
    gImageLoader = new Image();
    gImageLoader.onload = function()
    img.src = gImageLoader.src;
    gImageLoader = null;
    gBehaviorsArray["mainImage"] = new Spry.Effect.Opacity(img,
    0, 1, { duration: 400, steps: 10, finish: function() {
    gBehaviorsArray["mainImage"] = null; }});
    gBehaviorsArray["mainImage"].start();
    gImageLoader.src = imgPath;
    gBehaviorsArray["mainImage"].start();
    gBehaviorsArray["mainImage"].start();
    // Cancel the animation behavior of the object with the given
    id.
    function CancelBehavior(id)
    if (gBehaviorsArray[id])
    gBehaviorsArray[id].cancel();
    gBehaviorsArray[id] = null;
    function SizeAndPosition(id, toX, toY, toWidth, toHeight,
    callback)
    CancelBehavior(id);
    var effectCluster = new Spry.Effect.Cluster;
    var ele = Spry.Effect.getElement(id);
    var moveEffect = new Spry.Effect.Move(ele,
    GetOffsetPosition(ele), { x: toX, y: toY}, { duration: 400 });
    var sizeEffect = new Spry.Effect.Size(ele,
    GetDimensions(ele), { width: toWidth, height: toHeight}, {
    duration: 400 });
    effectCluster.addParallelEffect(moveEffect);
    effectCluster.addParallelEffect(sizeEffect);
    effectCluster.finish = callback;
    gBehaviorsArray[id] = effectCluster;
    gBehaviorsArray[id].start();
    // Show the image of the current selected row inside the
    dsArt data set.
    function ShowCurrentImage()
    var curRow = dsArt.getCurrentRow();
    SetMainImage("images/" + curRow["artist"] + "/" +
    curRow["href"], curRow["width"], curRow["height"]);
    // Utility function to advance (forwards or backwards) the
    current selected row
    // in dsArt. This has the side effect of "selecting" the
    thumbnail and image
    // of the new current row.
    function AdvanceToNextImage(moveBackwards)
    var rows = dsArt.getData();
    var curRow = dsArt.getCurrentRow();
    if (rows.length < 1)
    return;
    for (var i = 0; i < rows.length; i++)
    if (rows
    == curRow)
    if (moveBackwards)
    --i;
    else
    ++i;
    break;
    if (!moveBackwards && i >= rows.length)
    i = 0;
    else if (moveBackwards && i < 0)
    i = rows.length - 1;
    curRow = rows;
    dsArt.setCurrentRow(curRow["ds_RowID"]);
    ShowCurrentImage();
    // Start the slide show that runs forwards through all
    // the rows in dsArt.
    function StartSlideShow()
    if (gSlideShowTimer)
    clearInterval(gSlideShowTimer);
    gSlideShowTimer = setInterval(function(){
    AdvanceToNextImage(false); }, 6000);
    var playLabel = document.getElementById("playLabel");
    if (playLabel)
    playLabel.firstChild.data = "Pause";
    // Kill any slide show that is currently running.
    function StopSlideShow()
    if (gSlideShowTimer)
    clearInterval(gSlideShowTimer);
    gSlideShowTimer = null;
    var playLabel = document.getElementById("playLabel");
    if (playLabel)
    playLabel.firstChild.data = "Play";
    }

    quote:
    Originally posted by:
    Keith Dodd
    <snip>
    Did you check this recently? I *thought* had fixed that
    broken title tag this morning.
    What seems weird now, that it seems sporatic. Sometimes on
    first call to page, it comes up in IE. But then if refresh, it
    hangs and doesn't show the picture.
    <snip>
    Keith
    I re-used the
    http://labs.adobe.com/technologies/spry/demos/gallery/
    without change the code.
    Only adaptation were
    + folder names, gallery names, and the individual picture
    name
    + integration into my web page
    + display of the photographers name
    Everything display fine in Opera and Firefox.
    IE 6 and IE 7 are able to display the original demo, but not
    my adapted site.
    My investigations are not finished yet, but 1st indications
    exist:
    IE loads the data but refuses to display the gallery
    selection.
    First problem are blanks and other "special" characters in
    the displayed gallery name.
    I identified so far " ", "_", "(", ")" as trouble-makers.
    example: lack of IE display at
    http://www.percolators.de/pics/bild_med.htm
    (status as of Nov 7 13:40 GMT)
    --> a workaround is to put dashes between the words
    example: partly working at
    http://www.percolators.de/pics/bild_big.htm
    (status as of Nov 7 13:40 GMT)
    Second problem are special national characters (e.g.
    "ä", "ü", "ö") in the "photographer" part of the
    "photos.xml"
    --> this hinders to display the respective gallery and the
    subsequent one. The 3rd gallery after the troubled one enjoys a
    resynch and is displayed again.
    Maybe somebody can benefit from these observations - and
    maybe somebody can explain additional rules / restrictions to obey
    when catering for IE.
    Juergen

  • Hint wanted: EditCurrentRecord, execute, error: dead view row

    Hello, I'm searching for a workaround on a typical insert problem.
    I have an HTML page with a <FORM> dynamically created using EditCurrentRecord.render() function. This <FORM> is used to insert a new record.
    If the user, after getting an exception (for example because he didn't fill a required field) GOES BACK TO THE PAGE with the form, corrects the problem and click the submit button again, he always get the following error:
    JBO-27102: Attempt to access dead view row
    Imagine a <FORM> with about 50 fields, many filled up and a required field left blank...
    I have extended EditCurrentRecord, so I can "manipulate" something if necessary, but please tell me further detail about this mechanism.
    TIA
    Fabio

    Hi, I extended EditCurrentRecord too, I have deployed locally, and I have same problem you indicated.
    If for any reason I have to return to the page with the HTML form using browser's back button, first time I post data I get the error JBO-27102: Attempt to access dead view row
    This doesn't happen if the page is refreshed.
    I think the reason resides in RowKeys, a runtime address generated when preparing to insert a row (look at EditCurrentRecord.render() function for details), address which is stored in a hidden field when generating the form (name "_ROWKEY") and requested later with the execute() function.
    Anyway, there is a thing that I don't understand: if I comment the following lines from EditCurrentRecord.execute() function:
    // if (getRowKeys().get(sRowKey) != null)
    // row = (Row)getRowKeys().get(sRowKey);...even if next line of code assign a value to the row variable...
    if (row == null)
    row = qView.first();...why in this case, even if the row variable is not null, I ALWAYS get the JBO-27102: Attempt to access dead view row error?
    I can't understand. Maybe the solution to our problem resides in that clue.

  • Photo gallery in details view

    Hey all. I'm developing a site for a real estate agency. I have built a web app that lists and displays individual properties. I have managed to hook up Business Catalyst's Photo gallery module that displays a specific gallery (one for each property) on the details page template. I did this by creating a text sting field in the web app, into which you can input the gallery tag specific for each property. Like this: ({module_photogallery,33715, 4,,6,175,150,ThumbnailAlgorithm,fill_proportional}). This works, but the client now says they don't like the "lightbox" function of the default BC gallery module, and want it to function differently. As in having clickable thumbnails that populate a static image area. Is this possible? I understand that I could use different image galleries, if it were a gallery on a static page. My problem is that I need a gallery that can be different for each web app item and work within the details page of a web app. Any help would be appreciated.
    Here is the test link: Anne Rogers Realty Group, Inc - Committed to our clients, our neighborhood, with personalized service every time. note the way the list and details pages function.
    Thanks

    Yes,
    What you are seeing by default is shown as 'My folders' view. It's a flat alphabetical list of the last level subfolders in which you have media files.
    Click on the little yellow icon just right of the 'My folders' title bar, and you switch to the 'Folders' view which reflects what you see in your explorer. The difference is that by default, you see only subfolders having image files; if you want to display subfolders without image files, right click on the master folder and choose to show empty folders; that choice is not sticky.

  • How do I get my bridge web gallery to actually work in my photoshop website

    Hi
    Can anyone explain to me in simple english (please - as I'm just a learner) how I get my web gallery (created in bridge) to work with my photoshop website.
    This is what I have done so far:-
    (1) I've created my root folder called 'test'. It has 3 subfolders called:-
    - 'page1' (which is my homepage created as said below)
    - 'page2-gallery' (where I want my bridge web gallery to be)
    - 'page3-other' (for another page link - not important here).
    (2) I have also created a simple website in photoshop (my homepage said above), using the slice tool and have saved it by saveforweb. So I now have my html website file and which works when tested online. One of the slice segments is for my 'gallery' icon on the homepage which, when clicked, should go directly to my bridge web gallery created.
    (3) I have also created a web gallery in bridge and I saved it applying the 'savelocation' as being in page2 of my root folder. But when I checked it online the 'gallery' icon on my homepage does nothing. I then tried saving the gallery to my root folder instead (i.e. not in the page2 of my root folder) but with zero results.
    (4) I've then dragged the root folder's html file (my website's homepage) into dreamweaver, clicked the 'gallery' icon and tried to apply the page2 of my root folder file to the properties inspector's link box (bottom of dreamweaver workspace) - but this wouldn't work either.
    I know that I must be close to solving this riddle and so can anyone help me please.
    J in London, UK

    http://forums.adobe.com/community/photoshop
    http://forums.adobe.com/community/bridge
    http://forums.adobe.com/community/dreamweaver
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

  • Cloud set up, Old Mobile me, too wanna share Gallery!

    Cant make it work.... How? I have numerous photo albums and a a few videos in my gallery. I want to share a video I uploaded today, getting plug in failure messages (where I used to get none) when attemting to play in gallery. .mov file exported from iMovie.
    I want to move ahead into the cloud but cant see how to get there to share video. Only see mail, contacts, find iphone, calander etc. as options in cloud

    Unfortunately, there is no equivalent to MobileMe's gallery in iCloud. You might want to consider third-party solutions for uploading your videos such as You-tube.

  • HTML Photo Gallery / PSE4

    I can create a new HTML Photo Gallery, but can not see how to modify an existing one. Slide shows appear in "Open Creation", but no HTML Photo Gallery.
    I want to be able to easily modify an existing html photo gallery, so that any time I need to add an image, I don't have to create a whole new gallery and upload it to the server. Can someone guide me through this process? I've looked in "help", and there's nothing re "modify html photo gallery".
    Background: I bought PSE2 a few years ago, and it fairly well met my needs. Recently I decided to buy a new digital camera. After confirming that the new PSE4 worked with Adobe Camera Raw, and that my camera model was supported, and checking the fetures of PSE4, I went ahead with both purchases. Now I wish to begin using an on-line server to display photos in an "html photo gallery". I've been advised by the sysop to use JAlbum, as it has the ability to easily modify an existing albm, but I prefer not to install yet another software package if PSE4 can do what I need.
    Thank you. - David Thornburg

    David
    I use a program called PhotoThumbs to generate the Challenge. It is very
    configurable and lighting quick generating web sites in seconds not minutes.
    I then upload using a program called WinSCP3 that is cleaver enough only to
    upload those pages that are new. I do want something and easy because I am
    generating the site over 50 times a week and these programs working in
    conjunction do yeomen's duty. The only down fall is that PhotoThumbs is
    commercial although inexpensive.
    I have tried Jalbum and found it easy to do the pre packaged programs but a
    little complex to do more complex things. It is free and being a Java
    program is available for many platforms. The time to generate a site was
    much slower than PhotoThumbs but things might change.
    Grant
    Home Pages http://home.cogeco.ca/~grant.dixon
    Challenge Pages: http://www.cavesofice.org/~grant/Challenge
    Photo of the Day http://www.cavesofice.org/~grant/POD
    Creativity is so delicate a flower that praise tends to make it bloom, while
    discouragement often nips it in the bud. Any of us will put out more and
    better ideas if our efforts are appreciated.
    Alexander Osborn (1888 - 1966)

  • Web Gallery pictures after deletion still in Finder

    Hello....
    I create a web gallery on MobileMe using iPhoto '08 and had it allow others to upload the pictures to the gallery using web interface.
    Now, when someone uploads the pictures they appear in the iPhoto the next time it syncs. However, if I delete the picture from the Web Gallery it disappears from iPhoto BUT the picture can still be found in the Finder under the iPhoto package in Pictures directory. I mean the picture do not get deleted from the iPhoto package in Finder when they are deleted from Web Gallery.
    How the picture should be deleted from Web gallery so it gets deleted from the Finder as well? I mean it is difficult to trace the pictures and delete manually in Finder.
    One other question I have is if someone uploads the picture and it appears in iPhoto under Web Gallery and I want to move this picture to my library so to keep along with my other pictures how should I do it?
    Thanks.

    Atique:
    Welcome to the Apple Discussions. If you just selected the photo and hit the Delete key the photo will only be deleted from the gallery and not the library. You need to use the CommandOptionDelete key combination to move the photo out of the web gallery and into the iPhoto trash bin. Then empty the trash bin via the iPhoto->Empty Trash menu option. That will delete the photo from your library and your HD.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Need help installing pic gallery

    I need help on installing something please. I downloaded this
    flash things from this link
    http://www.flasheezy.com/flash_file/4-XML-gallery-3
    but I have to make a few changes to the background. How do I
    save it so that i can export it to dreamweaver? I don't know how to
    save a .swf flash document. It keeps saving it as a .swf
    movie...Also it says that I need the mc_tween but I dont know how
    to use it...when I go to download it, it has a different name so I
    am not sure if I am using the correct mc_tween2.as that I need. How
    do I make this work? Anyones help will be greatly appreciated!!
    Thank you,
    Elenis

    Never mind I figured it out...now I also made the document
    smaller but the pics still run off of the document when I put it on
    the site...can someone help me figure this out please? I looked
    through the ActionScript but I can't find anything. Check this
    sample out that I did...
    http://www.levelgraphics.biz/4colorfoil/gallery.html
    I want all the pics to stay on the page, atleast a piece of
    them so that the clients can click on them.
    Thanks in advance!

  • Updating a web photo gallery

    Hi,
    I have created a website using Dreamweaver CS6.  On one of my pages I have a web photo gallery which I created in Adobe Bridge and then embedded onto the web page by using iframe in Dreamweaver.  If I wanted to add or delete photos in this web gallery, how do I do this?
    Thanks, I look forward to hearing from you.
    Cheers
    Anna

    Hi Hans,
    Thanks, I managed to work it out.  I already have the web gallery incorporated into my website via bridge into dreamweaver cs6 using iframe (http://foundationphp.com/tutorials/gallery/embed1.php) no problem but was wondering how you update this gallery if you wanted to remove or add new photos to this gallery,
    This is what you do for anyone out there who may want to do the same and their site is not yet live on the www.
    1) Go back to the folder that contains all the photos for your photo gallery on the hard drive in windows explorer.  Remove or add photos there in Windows Explorer.
    2) Then open Bridge and select that folder.  In the panel on the right should contain all the properties for your photo gallery. 
    3) Check in the main screen that the new photos have been added or the old ones have been deleted. 
    4)Click save in the right panel.  Bridge will then update the Adobe Web Gallery Folder.  Then go into that folder and check name of html file.  Rename it if you like (make sure it doesnt have the same name as any other html files that's in your website root folder). 
    5) Then select your new html file and the resources folder in your Adobe Web Gallery folder and right click and copy. 
    6) Paste both files into your website root folder.  You dont need to do anything to your html code in dreamweaver at all as you have somehow already created a link in there when you embedded your gallery originally!!! 
    7) Then check the page on internet explorer in dreamweaver to test it and bingo it should work!!  It worked for me :-)
    Hope this helps?
    Cheers
    Anna

  • What is the easiest way to put a photo gallery into an existing website?

    I am ready to give up.  This really can't be this difficult. 
    Either that or I am the dumbest person in the world.  Up until now, I didn't know that I was. 
    I just want something easy.
    I am designing a website using Dreamweaver Cs5.5.  I am on a PC with Windows Vista Operating System.
    I have an existing website www.metzartonline.com. 
    On the Gallery page, I want to include a simple photo gallery where I can showcase paintings.  I would like a simple (theres that word again) grid that shows the photos as thumbnails.  When you click on the thumbnail, it shows the image in a larger size with a small caption.
    I've tried using Bridge which was very easy to set up but I'm at a loss on how to integrate that into the webpage.  After lots of research, I've come to the conclusion that integrating that into an existing website just insn't that easy to do.
    I purchased the Classic Photo Gallery from Flash Development 24 because it was described as "easy to use."
    It is not easy to use.
    The steb by step guide for one, isn't even written in proper English.  I've tried to work with it an I've emailed support several times.
    I'm ready to give that up.
    I just want to make a simple gallery that I can integrate into an existing website.
    Can anyone suggest the easiest program to use?
    Please?

    You can use Adobe Bridge (it is built into Dreamweaver) and Adobe Fireworks.  Once you have Dreamweaver open, go to File and you will see "Browse in Bridge".  Adobe Fireworks is a separate program and must be installed to make this work.  The instructions below are step by step and I was able to follow them even though I am not overly experienced in Dreamweaver.  I created these with Dreamweaver CS4 but the instructions below should work for CS5 as well.
    The first address here is to create a photo gallery with the Adobe Output Module which you open in Bridge.
    http://help.adobe.com/en_US/Bridge/3.0/WSCF044571-2772-4d28-9EBD-2C9F46AF008A.html
    The second address explains how to incorporate the gallery into a Dreamweaver page.
    http://foundationphp.com/tutorials/gallery/embed1.php
    Here is my wife's website for her art:   www.tanglewoodbrushstrokes.com
    You may want to look at the galleries there first to see if they are what you are looking for. 
    There are two disadvantages to these galleries.  One is that to add or subract images requires creating a new gallery.  The good side is that this can be done fairly quickly once you become accustomed to how they are created.  I can do a new one now in a half hour or less.  To make it easier, you can go to split screen once you have the new gallery made and substitute the html for the new gallery in place of the old one without recreating your page parameters for the gallery.
    Secondly, the galleries created in Fireworks use flash technology so they will not work on Iphones or Ipads.  To correct this on my wife's website, I upgraded to CS5.5 in order to use HTML5.  I am going through the tutorials for creating HTML5 web pages now.  Once I have completed them, I will be re-doing my wife's site.  I haven't yet figured out how I will create and install the galleries yet.  I have posed a question about albums for HTML5 on this forum.  Using HTML5 appears to be more complex than what I have experienced in the past, but we will see.
    Hope this helps.  Don't get too frustrated when you go through the tutorials above.  Take your time and you will be able to figure it out.  If I could do it, so can you.  I am a 65 year old retiree who only began working with Dreamweaver about three years ago.  My work experience was not in the computer field although we bought our first computer, an Apple IIE, in 1980.

  • Image gallery: Open browser w/ 'Next/Back' button?

    Howdy people. I am planning on making a photo gallery. I want
    to have the user click on the first image - have a browser window
    open then have a 'NEXT' 'BACK' and "CLOSE WINDOW" button in that
    browser window. I know how to do all except the arrow part. Can
    anyone help? Thank you so much!

    Create your second page so it's layed out the same way as the
    first. The
    next link simply points from one page to another as per
    normal hyperlink.
    You'll need to change the next link (and previous link) on
    each page
    manually.
    So, page2.htm will have a previous link to page1.htm and a
    next link to
    page3.htm, and
    page3.htm will have a previous link to page2.htm and a next
    link to
    page4.htm.
    Or are you looking for more automated way using a server-side
    language?
    HTH,
    Piers

  • Add url link in "lightbox style" js gallery

    Hello,
    Can someone help me add a url link in the image description? I am using an "overlay" gallery (prettyphoto) and want viewers to be able to visit a site instead of going to the next image when clicked on images that are websites.
    CSS Code I am using:
    <li><a href="images/work/work-full1.jpg" rel="prettyPhoto[1]" title="Trade Show Panels - 2011"><img src="images/work/work-thumb1.jpg"></a></li>
    <li><a href="images/work/work-full2.jpg" rel="prettyPhoto[1]" title="Local Resource Website - Lake Wylie, SC"><img src="images/work/work-thumb2.jpg"></a></li>
    and so on...
    View gallery in action here:
    click on the work tab.
    http://doubleulabs.com/
    Thanks for any help on this.

    I no longer use lightbox.  I prefer Fancybox because you can do more with it.  Copy & paste  this code into a new, blank document.  SaveAs test.html and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5, with Fancybox2 and Captions</title>
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--LATEST JQUERY CORE LIBRARY-->
    <script src="http://code.jquery.com/jquery-latest.min.js"></script>
    <!--FANCYBOX plugins-->
    <link href="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.css" rel="stylesheet" media="screen">
    <script src="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.pack.js"></script>
    <style>
    /**LINKS**/
    a {text-decoration:none}
    a:link {color:#FF0}
    a:visited {color:#920000}
    a:hover, a:active, a:focus {text-decoration:underline}
    /**this styles image container**/
    #thumbs p {
        float: left;
        width: 180px;
        margin: 10px;
        padding: 10px;
        text-align: center;
        border: 1px solid silver;
        /**rounded borders**/
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        border-radius: 20px;
    /**recommend using same size images**/
    #thumbs img {
        width: 160px; /**adjust width to thumbnail**/
        height: 120px; /**adjust height to thumbnail**/
        opacity: 0.75;
    #thumbs img:hover { opacity: 1.0 }
    /**float clearing**/
    #thumbs:after {
        content: ".";
        clear: left;
        font-size: 0px;
        line-height: 0;
        display: block;
        visibility: hidden;
    </style>
    </head>
    <body>
    <h1><a href="http://fancyapps.com/fancybox/">Fancybox2</a> Viewer with images</h1>
    <h2>Captions contain text and links</h2>
    <div id="thumbs">
    <!--insert thumbnails with links to full size images below-->
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 1" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 2" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 3" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 4" /></a> </p>
    <p><a class="fancybox" data-fancybox-group="gallery" href="http://placehold.it/400x320.jpg" title="optional title" caption="&lt;a href=&quot;http://example.com">Example.com</a>  some plain text here...   &lt;a href=&quot;http://example.com">Example.com</a>"><img src="http://placehold.it/160x120.jpg" alt="Thumbnail 5" /></a> </p>
    <!--end thumbs--></div>
    <!--FancyBox function code-->
    <script>
    $(document).ready(function() {
        $(".fancybox")
        .attr('rel', 'gallery')
        .fancybox({
         beforeLoad: function() {
         this.title = $(this.element).attr('caption');
    </script>
    </body>
    </html>
    Nancy O.

  • Bridge Web Gallery Photos Not Loading

    Just upgraded from CS4 to CS6.  I had been using the Create Web Photo Album command in CS4 which of course is no longer available.
    So, opened Bridge and created an HTML Web Gallery.  The HTML Gallery looks great and when I open it with DW locally it works fine in preview mode.  After uploading the gallery to the server, the gallery page layout is there but the thumbnails don't load.  Page is functional and when I click on one of the thumbnails its large pic page opens but again the pic does not load. The images, both the thumbnails and large images, upload OK and are present on the server.
    Here is a link to the album page:
    http://ashlandhiking.org/badlink.html
    I also tried two other gallery formats; Standard and Lightroom Flash.  Both of these worked fine after uploading.  So it appears to be a problem associated with the HTML gallery.  I tried changing the page doc type to HTML 5 and HTML 4, to no avail.
    Please help. Thanks.

    It's funny: I had just posted to someone else that they should update to 7.1 to get the web gallery to upload. I didn't realize I was not up all they way myself. So now I'm at 7.1.1.
    Problem was, I still had upside down photos.
    So the work around I employed was to export the edited photos out, delete the photos within iPhoto, then re-import the edited photos back in. Ah, now they show properly.
    Not my favorite solution, but what are you going to do?
    I still suspect there might something within the web gallery functionality, which wants to upload the Originals and not the Modifieds. Thoughts anyone?

Maybe you are looking for

  • How to switch on MacBookPro monitor instantly after being in clamshell mode

    So I use Skype Video a lot, and I use a Samsung external monitor. The problem is that I have my MacBook in Clamshell mode nearly all the time, and at the moment, when I get a Skype video call, all I can do is open the screen on the MacBook and just h

  • Vendor banking details

    Hi all, Which table can I use to view all the changed details and the newly created details. For every new and changed banking detail I want the time when the change or the creation occured (Date and time) and who did it. Regards, B

  • Return key now send key

    In SMS while texting my return key is now the send key with the new update. Why? How do I get the return/enter key back? Is this intended?

  • Invalid Handle Exception!

    Background: I have a SQL database created and maintained via MS Access 2003. I use JDBC to connect and interact with this database. So far my program has been able to do everything from querying a table to inserting new rows to deleting others, but h

  • Auditing loads?

    I've already looked at OWB's Runtime Audit Browser and I like it. But my auditing needs are different. First let me explain, what I know and have already. I'm executing OWB mappings with OEM jobs. To do this, I use the oem_exec_template.sql script pr