Where to get to xml to alter photo gallery?

In the new format for BC I can't seem to find where to upload a XML file to help me tweek the photo gallery.
I was going to buy this tutorial in the hopes it will help me fix the sizing issue of the Photo Gallery. When a picture is really large it fills the whole page when the picture is in slideshow mode. I can't figure out how to change this, however, I've seen the XML referenced a few times. Any help on where to do so in the new  layout?"
Or thoughts on this tutorial helping?
http://kiyuco.com/tutorials/build-a-custom-gallery-using-the-photo-gallery-module

The first thing to change is the module paramaters...
{module_photogallery,ID,rowLength,targetFrame,resultsPerPage,Width,Height,UseStandardMethod,thumbnailAlgorithm}
ID - System generated ID (Do not change this number.)
rowLength - Set the number of photos displayed per row
targetFrame - Set the destination frame where the photos will open (such as _blank)
resultsPerPage - Set the number of photos displayed per page
Width/Height - Set the width and height of the thumbnail images. The default value is 80 pixels wide by 80 pixels high.
UseStandardMethod - Use the standard Thumbnail Generation. Set to False for better thumbnail quality (with increased file size).
thumbnailAlgorithm - To avoid squashed images and control image proportion size. Use the following paramaters: proportional,fill,fill_proportional.
To get the xml feed you go to the gallery in the admin it will be there.

Similar Messages

  • XML Driven Flash Photo Gallery Thumbnails

    Hi,
    I need to make a XML Driven Photo slide in Flash CS5.
    It needs to have a Box that contains 5 Thumbnails(by XML) act as buttons.
    The Box sits on top of the Main photo area and shrinks (or close out) when user click its close button. And it opens out by clicking on a open button.
    I'm sure it can be done by using timeline, Tweening or you name it..But what about the Thumbnails that run from the XML file?
    Can they disappear with the Box and retrieve when it opens? is it possible?
    If yes, what would be the best way to do that?
    Any comment would be greatly appreciated!
    Here is the ActionScript.
    import flash.net.URLRequest;
    import flash.net.URLLoader;
    import flash.events.Event;
    import fl.controls.Button;
    import flash.display.Shape;
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import flash.text.TextField;
    import fl.transitions.*;
    import fl.transitions.easing.*;
    import flash.display.Shader;
    var hasloaded:Boolean = false;
    var firstLoaded:Boolean = false;
    var barWidth:int;
    var barHeight:int;
    var images;
    var imageCount:int;
    var thumbnailArray:Array = new Array();
    var bigImageArray:Array = new Array();
    var descriptionArray:Array = new Array();
    var xmlLoader:URLLoader = new URLLoader();
    var imageXML:XML = new XML();
    xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
    xmlLoader.load(new URLRequest("slideshow.xml"));
    function LoadXML(e:Event):void {
        imageXML = new XML(e.target.data);
        ParseImages(imageXML);
    Populates the arrays with the image values
    and the text for each picture.
    function ParseImages(imageInput:XML):void {
        var iconList:XMLList = imageInput.image.icon;
        var mainImageList:XMLList = imageInput.image.mainimage;
        var descriptionList:XMLList = imageInput.image.description;
        for (var i:int = 0; i < iconList.length(); i++) {
            var imageElement:XML = iconList[i];
            //trace(imageElement);
            thumbnailArray[i] = imageElement;
        for (var j:int = 0; j < mainImageList.length(); j++) {
            var mainimageElement:XML = mainImageList[j];
            //trace(mainimageElement);
            bigImageArray[j] = mainimageElement;
        for (var l:int = 0; l < descriptionList.length(); l++) {
            var descriptionElement:XML = descriptionList[l];
            //trace(descriptionElement);
            descriptionArray[l] = descriptionElement;
        loadImages();
    function loadImages():void{
        trace("inside of loadimages function.");
        trace(thumbnailArray.length);
        for(var i:int=0; i < thumbnailArray.length; i++){
            trace(thumbnailArray[i]);
            populateContainers(thumbnailArray[i], i);
            //populateContainers2();
            trace("Loaded " + thumbnailArray[i]);
    var loader:Loader;
    var xStart = -210;
    var ypos = -34;
    var currentPos = xStart;
    var incrementValue = 66;
    This takes in the name of the image file and
    displays it within the newly created movie clip
    function populateContainers(file:String, pos:int):void{   
        //create a movie clip to hold the image
        var mc:MovieClip = new MovieClip();
        mc.graphics.beginFill(0xFFFFFF);
        mc.graphics.drawRect(0, 0, 50, 51);
        mc.graphics.endFill();
        mc.buttonMode = true;
        mc.x = currentPos;
        mc.y = ypos;
        mc.name = "thumb_" + pos;
        mc.addEventListener(MouseEvent.CLICK, clickHandler); 
        loader = new Loader();
        //loader.mask = imagemask;
        var url:URLRequest = new URLRequest(file);
        loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadInitialImage);
        loader.load(url);
        //add the image to the movie clip
        mc.addChild(loader);
        this.imageBar.addChild(mc);
        //increment the currentPos
        currentPos += incrementValue;
    function clickHandler(e:MouseEvent):void{
        var str:String = e.currentTarget.name;
        var index:int = int(str.substr(6,1));
        if(hasloaded) {
            this.mainWindow.removeChild(loader);
        loader = new Loader();
        loader.load(new URLRequest(bigImageArray[index]));
        this.mainWindow.addChild(loader);
        TransitionManager.start(this.mainWindow,{type:Fade, direction:Transition.IN, duration:2, easing:Regular.easeOut});
        //setChildIndex(loader, 0);
        hasloaded = true;
        loadText(index);
    function loadText(index:int):void {
        Object(this).imageBar.txtdescription.text = descriptionArray[index];
    function loadInitialImage(event:Event):void {
        if(!firstLoaded) {
            loader = new Loader();
            loader.load(new URLRequest(bigImageArray[0]));
            this.mainWindow.addChild(loader);
            TransitionManager.start(this.mainWindow,{type:Fade, direction:Transition.IN, duration:2, easing:Regular.easeIn});
            //setChildIndex(loader, 0);
            hasloaded = true;
            loadText(0);
        firstLoaded = true;
    /*  This section defines the buttons that control the image bar */
    Object(this).imageBar.btnBarOpen.addEventListener(MouseEvent.MOUSE_UP, openImageBar);
    function openImageBar(event:MouseEvent):void {
        this.gotoAndPlay(1);

    thank you!

  • XML Driven Flash Photo Gallery Thumbnails Control

    Hi, I need to make a XML Driven Photo slide in Flash CS5.
    It needs to have a Box that contains 5 Thumbnails(by XML) act as buttons.
    The Box sits on top of the Main photo area and shrinks (or close out) when user click its close button. And it opens out by clicking on a open button.
    I'm sure it can be done by using timeline, Tweening or you name it..But what about the Thumbnails that run from the XML file?
    Can they disappear with the Box and retrieve when it opens? is it possible?
    If yes, what would be the best way to do that?
    Any comment would be greatly appreciated!
    Here is the ActionScript.
    import flash.net.URLRequest;
    import flash.net.URLLoader;
    import flash.events.Event;
    import fl.controls.Button;
    import flash.display.Shape;
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import flash.text.TextField;
    import fl.transitions.*;
    import fl.transitions.easing.*;
    import flash.display.Shader;
    var hasloaded:Boolean = false;
    var firstLoaded:Boolean = false;
    var barWidth:int;
    var barHeight:int;
    var images;
    var imageCount:int;
    var thumbnailArray:Array = new Array();
    var bigImageArray:Array = new Array();
    var descriptionArray:Array = new Array();
    var xmlLoader:URLLoader = new URLLoader();
    var imageXML:XML = new XML();
    xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
    xmlLoader.load(new URLRequest("slideshow.xml"));
    function LoadXML(e:Event):void {
        imageXML = new XML(e.target.data);
        ParseImages(imageXML);
    Populates the arrays with the image values
    and the text for each picture.
    function ParseImages(imageInput:XML):void {
        var iconList:XMLList = imageInput.image.icon;
        var mainImageList:XMLList = imageInput.image.mainimage;
        var descriptionList:XMLList = imageInput.image.description;
        for (var i:int = 0; i < iconList.length(); i++) {
            var imageElement:XML = iconList[i];
            //trace(imageElement);
            thumbnailArray[i] = imageElement;
        for (var j:int = 0; j < mainImageList.length(); j++) {
            var mainimageElement:XML = mainImageList[j];
            //trace(mainimageElement);
            bigImageArray[j] = mainimageElement;
        for (var l:int = 0; l < descriptionList.length(); l++) {
            var descriptionElement:XML = descriptionList[l];
            //trace(descriptionElement);
            descriptionArray[l] = descriptionElement;
        loadImages();
    function loadImages():void{
        trace("inside of loadimages function.");
        trace(thumbnailArray.length);
        for(var i:int=0; i < thumbnailArray.length; i++){
            trace(thumbnailArray[i]);
            populateContainers(thumbnailArray[i], i);
            //populateContainers2();
            trace("Loaded " + thumbnailArray[i]);
    var loader:Loader;
    var xStart = -210;
    var ypos = -34;
    var currentPos = xStart;
    var incrementValue = 66;
    This takes in the name of the image file and
    displays it within the newly created movie clip
    function populateContainers(file:String, pos:int):void{ 
        //create a movie clip to hold the image
        var mc:MovieClip = new MovieClip();
        mc.graphics.beginFill(0xFFFFFF);
        mc.graphics.drawRect(0, 0, 50, 51);
        mc.graphics.endFill();
        mc.buttonMode = true;
        mc.x = currentPos;
        mc.y = ypos;
        mc.name = "thumb_" + pos;
        mc.addEventListener(MouseEvent.CLICK, clickHandler);
        loader = new Loader();
        //loader.mask = imagemask;
        var url:URLRequest = new URLRequest(file);
        loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadInitialImage);
        loader.load(url);
        //add the image to the movie clip
        mc.addChild(loader);
        this.imageBar.addChild(mc);
        //increment the currentPos
        currentPos += incrementValue;
    function clickHandler(e:MouseEvent):void{
        var str:String = e.currentTarget.name;
        var index:int = int(str.substr(6,1));
        if(hasloaded) {
            this.mainWindow.removeChild(loader);
        loader = new Loader();
        loader.load(new URLRequest(bigImageArray[index]));
        this.mainWindow.addChild(loader);
        TransitionManager.start(this.mainWindow,{type:Fade, direction:Transition.IN, duration:2, easing:Regular.easeOut});
        //setChildIndex(loader, 0);
        hasloaded = true;
        loadText(index);
    function loadText(index:int):void {
        Object(this).imageBar.txtdescription.text = descriptionArray[index];
    function loadInitialImage(event:Event):void {
        if(!firstLoaded) {
            loader = new Loader();
            loader.load(new URLRequest(bigImageArray[0]));
            this.mainWindow.addChild(loader);
            TransitionManager.start(this.mainWindow,{type:Fade, direction:Transition.IN, duration:2, easing:Regular.easeIn});
            //setChildIndex(loader, 0);
            hasloaded = true;
            loadText(0);
        firstLoaded = true;
    /*  This section defines the buttons that control the image bar */
    Object(this).imageBar.btnBarOpen.addEventListener(MouseEvent.MOUSE_UP, openImageBar);
    function openImageBar(event:MouseEvent):void {
        this.gotoAndPlay(1);

    thank you!

  • Photo Gallery Help

    I'm kinda in a hurry to get this site up and running and i need to cut a few corners. Does anyone no where i can get a template for a photo gallery. My site is a Dreamweaver site, but if had to use a flash image gallery that wouldn't be a problem. I basically wanna plug my words and captions in and be done with it. Any help? I still want it to look nice though.

    jQuery, Lightbox, Ajax, Flash
    http://www.1stwebdesigner.com/resources/57-free-image-gallery-slideshow-and-lightbox-solut ions/
    Photo Gallery Creation Software
    http://www.JAlbum.net
    If you want fast (5 minutes), buy Image Gallery Magic
    http://www.projectseven.com/products/galleries/hgmagic/features.htm
    http://www.projectseven.com/products/galleries/hgmagic/index.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Simple viewer photo gallery problems

    Hello,
    I used SimpleViewer to created a photo gallery in Photoshop and followed instructions on the simpleviewer site to put the gallery on a page in my under-construction site. The gallery doesnt show... I do get an icon, but no photo gallery, also when "previewed in browser" (ie) i get nothing... I checked flash player and java settings and there doesn't seem to be anything preventing the gallery from working, any suggestions? Do pages containing a gallery like that need to be set up differently initally? Appreciate the help, oh great ones!
    Marie

    if you loaded the flash in DW, it adds the script needed to view but may not put it where you think. check that AC_RunActiveContent.js  is in your head tag and the script is on the server. you may need to change the link to within your root folder.

  • People tags in Lightroom 6 and Windows Live Photo Gallery

    I think I'm finally ready to make the switch to lightroom from WLPG for photos management. I've used LR for a long time to do the edits but people tags are huge and kept all of my photo management in WLPG. I have 100k organized photos and they are all people tagged in WLPG. I just started the LR6 trial and noticed it doesn't honor existing WLPG people tags. Is there a way to import them / avoid redoing people tags for 100k pictures? Which, simply won't happen.
    Side question - people tags and coordinates export with jpg outputs from LR6 (assuming I don't intentionally turn them off at export), correct?

    Below is the solution to get face tags from windows photo gallery to Lightroom for me. Be sure to backup your files.
    *** Backup your files ***
    Step 1: Mopve the people names and the rectangles for the people into a different field in the .jpg metadata
    Download Exiftool
    I ran the command below from the command prompt and in the folder with exiftool and the configuration file found from the link below:
    exiftool.exe -config ExifTool_config_convert_regions "-regioninfo<myregion" "foldername" -m -r -overwrite_originals_in_place
    "foldername" is the folder / path you want to make the change for. -m ignores minor errors, -r includes subfolders, -overwrite... means it will NOT create the otherwise default backup for each file changes (filename.jpg_original).
    Copy Windows Photo Gallery face tags to Google Picasa
    Step 2: Move people names to keywords for Lightroom. Do this if you're using lightroom, do not do it if you're using picassa. I haven't yet been able to check to see but I'm guessing I will have to "convert it to a person tag" in lightroom keywords since they show as descriptive tags but I have tested everything else.
    Add the people names to the keywords
    exiftool "-xmp:subject+<regionname" FolderName -overwrite_origional_in_place -m -r
    Where FolderName is the folder / path the pictures you want to edit are in
    This came from:
    Migrating from WPG to Lightroom 6 - People Tags

  • Moving from Windows Photo Gallery to iPhoto

    Hi there,
    I have a couple thousand photos I'll be moving to iPhoto when I move to a Mac, and was wondering if anybody knows a painless way to get the metadata from Windows Photo Gallery in Vista across with them. Obviously I could go through and re-tag them all/album them all manually, but if there's a way of dragging albums, captions etc along with them then it'll be much appreciated.
    I've tried getting WPG to sort the folder structure for me and do it that way, but I can't find an option to do that with existing (Only with new imports).
    Thanks guys!

    Just select add when you import them and they will be added right in place.  You can use LR to move and rename folders.

  • Photo Gallery like USAToday

    Can anyone tell me where I might find a basic flash photo
    gallery like the one at the
    USAToday
    Photo Gallery
    I have looked at the code and can't tell if this is a
    off-shelf system they're using.
    I've also googled the common Flash photo galleries, and can't
    seem to find one that will easily allow me to import, browse by
    simple button, and use captions and links. Would really be nice if
    all of this pulled from a database?
    Many thanks,
    Steve
    Tallahassee, FL

    Hi Thomas,
    You should be able to use the 'compositions -> lightbox display' widget under the 'widget library' to be able to achieve the same effect.
    - Abhishek Maurya

  • Message: this photo gallery requires that scripting be enabled

    Hallo,
    I have added a gallery to my website. When i open this website i get the message "Sorry, this photo gallery requires that scripting be enabled on your web browser and that the Macromedia Flash Player be installed."
    I have looked for this mesaage at Google and a few other sites pop up. The difference is that in these sites the message is in de code behind the site but is not shown on the site itself. In stead the gallery is shown. And that is what i want at my site.
    Is the possibility to repress the message and show the gallery?
    Greetings,
    Timo

    Maybe the message itself can give you a hint?
    "Sorry, this photo gallery requires that scripting be enabled on your web browser and that the Macromedia Flash Player be installed."
    I would start with installing the latest flash plugin.
    After that I would check that I didn't had disabled javascript.
    /Andreas

  • Easiest way to edit photo gallery modules?

    Hi,
    I apolagise if this is a simple question but where can I customixe the CSS of Photo Gallery Modules, just to change thumbnail size etc.?
    Thanks.

    http://forums.adobe.com/message/6230084#6230084

  • Where are Altered Photos kept?

    I recently upgraded to iLife 08, and am trying to use iPhoto, having spend very little time on the previous version. I know that the subfolders are no longer accessible, so ... where are my 'altered' photos going?
    If I alter a photo in PhotoShop, and save it with a new name, the file doesn't show up anywhere in Finder, nor in the iPhoto Library proper.
    If I do a Spotlight search, I can find the photo file (supposedly located in the 'altered' folder in iPhoto that I don't actually have access to). However, if I click to open the file from Spotlight, it just reopens the jpeg in Photoshop.
    Where do I find this new file to access it for other purposes?

    Welcome to the Apple Discussions.
    If I alter a photo in PhotoShop, and save it with a new name, the file doesn't show up anywhere in Finder, nor in the iPhoto Library proper.
    That's the problem. You must setup PS as the editor of choice from within iPhoto and follow these steps:
    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements 6 the Saving File preferences should be configured: "On First Save: Save Over Current File". Also I suggest the Maximize PSD File Compatabilty be set to Always.
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    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.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • How/where to get more photo slideshows template/designs?

    I am trying to use iPhoto and iMovieHD to do some photo slide shows. Like to know where I can purchase/download more slideshow templates?
    Thanks

    khswoo:
    Welcome to the Apple Discussions. You can't as there are none. You might look at PhotoPresenter. It works with iPhoto and has some spectacular 3D themes. They can be saved to Quicktime if you need to add to iDVD. Worth a run of their demo.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto 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.

  • Where we get real time XML publisher with neat explanation

    hi every one
    where we get real time XML publisher with neat explanation for oracle apps

    Why XML Publisher Reports Why NOT Traditional Oracle Reports?
    Oracle Applications, SQL, PL/SQL: Why XML Publisher Reports Why NOT Traditional Oracle Reports?
    Developing XML Publisher Report - using Data Source as PL/SQL Stored Procedure
    Oracle Applications, SQL, PL/SQL: Developing XML Publisher Report - using Data Source as PL/SQL Stored Procedure
    Developing XML Publisher Report - Using Data Template as Data Source
    Oracle Applications, SQL, PL/SQL: Developing XML Publisher Report - Using Data Template as Data Source
    Regards,
    Srini

  • Can't get photo gallery to work

    Hello,
    Whatever help anyone can give me, is very much appreciated.
    I'm a novice to Dreamweaver and coding, and just can't get the
    photo gallery to work. I've printed out and studied a lot of Adobe
    Spry tutorials & samples but still can't figure out what I did
    wrong. When I try to preview the gallery from Dreamweaver, nothing
    happens.
    This is a sample from the dwsync files automatically created
    in the images & thumbnails folders and beneath that is the
    coding for the gallery file. Thanks very much.
    <?xml version="1.0" encoding="utf-8" ?>
    <dwsync>
    <file name="27-golfer-redshirt-wtrophy.jpg"
    local="128160701243750000" remote="128165836800000000" testing="0"
    />
    </dwsync>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>2006 Golf Tournament Photos</title>
    <script type="text/javascript"
    src="../../includes/xpath.js"></script>
    <script type="text/javascript"
    src="../../includes/SpryData.js"></script>
    <script type="text/javascript"
    var dsGallery = new Spry.Data.XMLDataSet("photos.xml",
    "gallery/photos/photo");
    </script>
    <style type="text/css">
    <!--
    img.thumbs {
    float:left;
    height:60px;
    width:60px;
    margin-right:2px;
    margin-bottom:2px;
    border: solid black 1px;
    #main {
    position:absolute;
    left:476px;
    top:128px;
    width:491px;
    height:315x;
    z-index:2;
    #thumbContainer {
    left:23px;
    top:127px;
    width:437px;
    height:430px;
    z-index:1;
    position:absolute;
    -->
    </style>
    </head>
    <body>
    <div id="thumbContainer" spry:region="dsGallery">
    <img src="thumbnails/{@thumbpath}"
    spry:repeat="dsGallery" class="thumbs"
    onclick="dsGallery.setCurrentRow('{ds_RowID}');" />
    </div>
    <div id="main" spry:detailregion="dsGallery"> <img
    src="images-2-23-07/{@path}"/>
    </div>
    </body>
    </html>

    The XML file in the "_notes" folder is generated by DW for
    synchronizing your local and remote copies of the website. You can
    ignore this completely, as it has nothing to do Spry, and only has
    to do with DW managing your site. You can even delete _notes or
    turn them off in your site profile and it will have no effect.
    However, if you have your testing server set up in the site
    profile, you'll need to "put" all your files to the testing server
    before hitting F-12 or "preview in browser" as all the files might
    not be over there.
    There are too many variables as to guess why it might not be
    working for you, but it's going to be a more simple set up issue,
    and likely not your Spry work.
    Can you navigate directly to the folder where your files sit,
    and let IE or FireFox open the HTML file? That might just show you
    that your files are working correctly by removing DW from the
    equation.
    Again, there are many things that might not be set up
    correctly in DW that could cause a site or page to appear to be not
    working. I strongly suggest finding some tutorials on site profiles
    in DW so you can get them to work with you, not against you. The
    dwsync.xml is part of DWs site management power.
    Doug

  • Altering photos....eg.landscaping designing and the like...

    How does one take a dig photo and alter it? ... in other words, ...is there anyone out there that has had experience with landscape design using an iMac (and some sort of purchaseable program) and actually design a landscape?
    ...i want to do some major changes around my house and my wife just doesn't get what i am wanting to do.... if i have an altered photo and actually show my wife then she will understand my proposals.....

    I heartily second PhillyPhan's recomendation. You can do some very advanced editing with PSE. Amazon.com often has deals on PSE for about $80. Or, if you're in the market for a new scanner, Canon bundles PSE 4 for Mac with many of it's scanners, even some of the lower prices models.
    If you're looking to do some landscape planning OmniGraffle has templates for laying out areas and adding different plant icons for planning purposes. It came with my G5.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto 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 written an Automator workflow application (requires Tiger), 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. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

Maybe you are looking for

  • I tunes crashes ca 10 seconds after starting it, what to do?

    This is the error log, I don't have a clue what it means but you probably do. Process:         iTunes [293] Path:            /Applications/iTunes.app/Contents/MacOS/iTunes Identifier:      com.apple.iTunes Version:         10.7 (10.7) Build Info:    

  • Reinstalling CS5 on new computers.. what do I need to do?

    Hi all, I've got the Production Premium 64bit CS5 Student version, everything installed, registered, and up to date. I'm looking to build a new computer (well, new motherboard, processor, and memory), this means I'll have to reinstall Windows 7 which

  • 5800 e-mailing problem

    My e-mails sent from my 5800 expressmusic arrive as an attachment, can this be altered so it displays like a normal e-mail ? Solved! Go to Solution.

  • Lpstat -t -o   commands hangs with no output on SOlaris 10

    Hi All, We have ( SunOS 5.10 Generic_127111-06 sun4u sparc SUNW,SPARC-Enterprise),on a box . The issue is when ever lpstat command is used to see weather there are any queues in the printer it hangs... But print queue is getting cleared want to know

  • Network shares hang iPhoto '08

    After upgrading to iPhoto 7.0 my network shares no longer work. This feature worked fine with iPhoto 06. iPhoto 08 sees the share but when I click on it, iPhoto simply freezes up with the dreaded spinning beachball. In order to stop the beachball I h