Gallery Demo - font info in photos.xml

<gallery
base = ""
background = "#FFFFFF"
banner = "#F0F0F0"
text = "#000000"
link = "#0000FF"
alink = "#FF0000"
vlink = "#800080"
date = "4/11/2006">
<sitename>Standard Parking</sitename>
<photographer></photographer>
<contactinfo></contactinfo>
<email></email>
<security><![CDATA[]]> </security>
<banner font = "Arial" fontsize = "3" color =
"#F0F0F0"> </banner>
<thumbnail base ="thumbnails/" font = "Arial" fontsize =
"4" color = "#F0F0F0" border = "0" rows = "3" col = "3">
</thumbnail>
<large base ="images/" font = "Arial" fontsize = "3" color
= "#F0F0F0" border = "0"></large>
<photos id = "images">
What is all the font stuff for? Why would you have this stuff
here instead of using CSS to control the appearance of the data via
a rule applicable to the element in which it appears?
Is it ok to remove this extra stuff?

Actually, almost all (if not absolutely all) the PS CS2 web
galleries
generate XML files.
The font info is included in the XML file because it's a user
generated
choice from a drop-down menu in the Web Gallery creation
dialog. So
Photoshop writes it there in order to read it back in to
whichever
gallery template has been chosen.
kinblas wrote:
> The photos.xml file that is used by the gallery demo was
generated from
> Photoshop CS2 using their Flash Gallery ... there are
only 2 galleries that
> generate the XML file.
>
> I believe they use these style attributes to control the
look of the Flash app
> that displays the album. We don't use any of that stuff
inside our demo. You
> can strip it out if you'd like.
>
> --== Kin ==--
>

Similar Messages

  • Photo Gallery Demo Problem

    I'm trying to understand the Photo Gallery demo so I can
    replicate the function for use on various sites. I've copied the
    html, xml, javascript and some of the photo file elements to my
    hard drive. I initially modified the file structures to something
    more of my liking, but had some problems with the links. I've since
    mimicked the structures so I can reduce the initial errors, but I
    am stumped at the var dsGallery and var dsPhotos statements that
    dynamically link to the China, Paris and Egypt photo databases. In
    the original dynamic definition, DreamWeaver only parses the
    dsGalleries XML definition, not defining the dsGallery and dsPhoto
    nodes. I wasn't too concerned about that given the variable nature,
    but nothing except the pull-down menu and controls displayed in the
    browser. DreamWeaver shows correct parsing of the dsGalleries XML,
    dsGallery and dsPhoto nodes only when I eliminate the dynamic
    linking and set it to one of the static links (Egypt). This fails
    in the browser to link to the data, giving a display that shows the
    correct number of empty thumbnail frames but without the displayed
    photos, no Spry effects, and no large photo display. I'm sure I
    have multiple reference errors, but I don't see them. Any ideas?
    Initial Photo Demo page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- Copyright (c) 2006. Adobe Systems Incorporated. All
    rights reserved. -->
    <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=ISO-8859-1" />
    <title>Gallery</title>
    <link rel="stylesheet" type="text/css"
    href="../css/screen.css">
    <script type="text/javascript"
    src="../SpryAssets/xpath.js"></script>
    <script type="text/javascript"
    src="../SpryAssets/SpryData.js"></script>
    <script type="text/javascript"
    src="../SpryAssets/SpryEffects.js"></script>
    <script type="text/javascript">
    var dsGalleries = new
    Spry.Data.XMLDataSet("galleries/galleries.xml",
    "galleries/gallery");
    var dsGallery = new
    Spry.Data.XMLDataSet("galleries/{dsGalleries::@base}{dsGalleries::@file}",
    "gallery");
    var dsPhotos = new
    Spry.Data.XMLDataSet("galleries/{dsGalleries::@base}{dsGalleries::@file}",
    "gallery/photos/photo");
    </script>
    <script src="../SpryAssets/gallery.js"
    type="text/javascript"></script>
    </head>
    <body id="gallery">
    <noscript><h1>This page requires JavaScript.
    Please enable JavaScript in your browser and reload this
    page.</h1></noscript>
    <div id="wrap">
    <h1 id="albumName"
    spry:region="dsGallery">{sitename}</h1>
    <div id="previews">
    <div id="galleries" spry:region="dsGalleries">
    <label for="gallerySelect">View:</label>
    <select spry:repeatchildren="dsGalleries"
    id="gallerySelect"
    onchange="dsGalleries.setCurrentRowNumber(this.selectedIndex);">
    <option spry:if="{ds_RowNumber} == {ds_CurrentRowNumber}"
    selected="selected">{sitename}</option>
    <option spry:if="{ds_RowNumber} !=
    {ds_CurrentRowNumber}">{sitename}</option>
    </select>
    </div>
    <div id="controls">
    <ul id="transport">
    <li><a href="#" onclick="StopSlideShow();
    AdvanceToNextImage(true);"
    title="Previous">Previous</a></li>
    <li class="pausebtn"><a href="#" onclick="if
    (gSlideShowOn) StopSlideShow(); else StartSlideShow();"
    title="Play/Pause" id="playLabel">Play</a></li>
    <li><a href="#" onclick="StopSlideShow();
    AdvanceToNextImage();" title="Next">Next</a></li>
    </ul>
    </div>
    <div id="thumbnails" spry:region="dsPhotos dsGalleries
    dsGallery">
    <div spry:repeat="dsPhotos"
    onclick="HandleThumbnailClick('{ds_RowID}');"
    onmouseover="GrowThumbnail(this.getElementsByTagName('img')[0],
    '{@thumbwidth}', '{@thumbheight}');"
    onmouseout="ShrinkThumbnail(this.getElementsByTagName('img')[0]);">
    <img id="tn{ds_RowID}" alt="thumbnail for {@thumbpath}"
    src="galleries/{dsGalleries::@base}{dsGallery::thumbnail/@base}{@thumbpath}"
    width="24" height="24" style="left: 0px; right: 0px;" />
    </div>
    <p class="ClearAll"></p>
    </div>
    </div>
    <div id="picture">
    <div id="mainImageOutline" style="width: 0px; height:
    0px;"><img id="mainImage" alt="main image" /></div>
    </div>
    <p class="clear"></p>
    </div>
    </body>
    </html>
    Fixed reference version:
    <head>
    var dsGalleries = new
    Spry.Data.XMLDataSet("Graphics/galleries/galleries.xml",
    "galleries/gallery");
    var dsGallery = new
    Spry.Data.XMLDataSet("Graphics/galleries/egypt/Egyptphotos.xml",
    "gallery");
    var dsPhotos = new
    Spry.Data.XMLDataSet("Graphics/galleries/egypt/Egyptphotos.xml",
    "gallery/photos/photo");
    </script>
    Supporting files galleries.xml and Egyptphotos.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <galleries>
    <gallery base="Graphics/galleries/egypt/"
    file="Egyptphotos.xml">
    <sitename>Egypt</sitename>
    <photographer>Don Booth</photographer>
    <contactinfo>
    http://www.adobe.com</contactinfo>
    <email>[email protected]</email>
    <security><![CDATA[]]> </security>
    </gallery>
    ... duplicate China and Paris declarations
    </gallery>
    </galleries>
    <?xml version="1.0" encoding="UTF-8"?>
    <gallery
    base = ""
    background = "#FFFFFF"
    banner = "#F0F0F0"
    text = "#000000"
    link = "#0000FF"
    alink = "#FF0000"
    vlink = "#800080"
    date = "1/10/2006">
    <sitename>Egypt Gallery</sitename>
    <photographer>Don Booth</photographer>
    <contactinfo>
    http://www.adobe.com</contactinfo>
    <email>[email protected]</email>
    <security><![CDATA[]]> </security>
    <banner font = "Arial" fontsize = "3" color =
    "#F0F0F0"> </banner>
    <thumbnail base
    ="../../gallery/galleries/egypt/thumbnails/" font = "Arial"
    fontsize = "4" color = "#F0F0F0" border = "0" rows = "3" col =
    "5"> </thumbnail>
    <large base ="../../gallery/galleries/egypt/images/" font
    = "Arial" fontsize = "3" color = "#F0F0F0" border = "0">
    </large>
    <photos id = "images">
    <photo
    path = "egypt_01.jpg"
    width = "350"
    height = "262"
    thumbpath = "egypt_01.jpg"
    thumbwidth = "75"
    thumbheight = "56">
    </photo>
    </photos>
    </gallery>

    Please delete this posting. I've found the full original
    information in the v1.6 pre-release information and will compare to
    that baseline.

  • 1.6 Dynamic Photo Gallery - alt and title attributes from xml file?

    Hi!
    I would like to attach information to my gallery images from
    the XML-file used by the gallery.
    Especially the alt and title attributes for the "img
    id="mainImage"-tag would add a bit more user friendliness.
    I found
    this
    example about adding caption to images very help full and
    everything worked just fine, thanks to clear information!
    (http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadi d=1306782&enterthread=y)
    Could someone come up with an example of adding title/alt
    attributes values from XML file?
    I'm sure there are quite a few out ther who would like to see
    a solution to this ;)

    You need to add your info to the XML.
    So something like:
    <photo
    path = "travel_01.jpg"
    width = "263"
    height = "350"
    title="my title"
    alt_text="Alt Text"
    thumbpath = "travel_01.jpg"
    thumbwidth = "56"
    thumbheight = "75">
    </photo>
    Then in your detailregion:
    <img src="{dsData::large/@base}{@path}" alt="{@alt_text}
    title="{@title}" />
    I am using
    http://www.adobe.com/devnet/dreamweaver/articles/spry_photo_album.html
    as the source of my samples...
    So, just add the data to the XML and then you will have these
    attributes available as data references.
    Hope this helps.
    Don

  • Styling Spry Gallery Captions Within Photos.xml

    My Spry gallery is working just fine other than I'd like to use italics within some of my image captions. I noticed this line of code in photos.xml.
    <italics font = "georgia"> </italics>
    I'm wondering if this alludes to the fact that I should be able to use italics selectively without writing any XSLT (I'm not very experienced in that department).
    Any advice appreciated.

    Hi Flat Top,
    perhaps, you need a program that understands the structure of
    jpegs like exiftool. Momentarily i use a powershell script:
    get-childitem images\*.jpg |
    foreach {
    $image = [String]::Concat("Images\", $_.name)
    $thumb = [String]::Concat("Thumbs\", $_.name)
    perl exiftool.pl -c "%d deg %.4f min" -p FmtImage.txt $image
    | Out-File xml.xml -append
    perl exiftool.pl -c "%d deg %.4f min" -p FmtThumb.txt $thumb
    | Out-File xml.xml -append
    with FmtImage.txt:
    <photo
    path = "$FileName"
    width = "$ImageWidth"
    height = "$ImageHeight"
    Kommentar = "$Comment"
    GPSLatitude = "$GPSLatitude, $GPSLatitudeRef"
    GPSLongitude = "$GPSLongitude, $GPSLongitudeRef"
    GPSPosition = "$GPSPosition"
    Hersteller = "$Make"
    Modell = "$Model"
    ISOSpeedRatings = "$ISO"
    Date_TimeOriginal ="$DateTimeOriginal"
    F_Number = "$FNumber"
    ExposureTime = "$ExposureTime"
    FocalLength ="$FocalLength"
    Flash = "$Flash"
    and FmtThumb.txt:
    thumbpath = "$FileName"
    thumbwidth = "$ImageWidth"
    thumbheight = "$ImageHeight">
    </photo>
    this generates most of the photos.xml. Not automated are in
    the moment some problems with the german Umlauts and with the
    coordinates to bring them in a form understanable by google maps.
    Perhaps that might help you.
    I have no knowledge of php or Asp, my provider doesn't allow
    it.
    Greetings from Germany
    Hannes Löhr

  • Spry Gallery - photos.xml question

    Is there a way to generate the "photos.xml" file from a
    folder of images automatically. It seems like a lot of hand coding
    in the XML file say if you have a gallery with 20 images.

    Hi Flat Top,
    perhaps, you need a program that understands the structure of
    jpegs like exiftool. Momentarily i use a powershell script:
    get-childitem images\*.jpg |
    foreach {
    $image = [String]::Concat("Images\", $_.name)
    $thumb = [String]::Concat("Thumbs\", $_.name)
    perl exiftool.pl -c "%d deg %.4f min" -p FmtImage.txt $image
    | Out-File xml.xml -append
    perl exiftool.pl -c "%d deg %.4f min" -p FmtThumb.txt $thumb
    | Out-File xml.xml -append
    with FmtImage.txt:
    <photo
    path = "$FileName"
    width = "$ImageWidth"
    height = "$ImageHeight"
    Kommentar = "$Comment"
    GPSLatitude = "$GPSLatitude, $GPSLatitudeRef"
    GPSLongitude = "$GPSLongitude, $GPSLongitudeRef"
    GPSPosition = "$GPSPosition"
    Hersteller = "$Make"
    Modell = "$Model"
    ISOSpeedRatings = "$ISO"
    Date_TimeOriginal ="$DateTimeOriginal"
    F_Number = "$FNumber"
    ExposureTime = "$ExposureTime"
    FocalLength ="$FocalLength"
    Flash = "$Flash"
    and FmtThumb.txt:
    thumbpath = "$FileName"
    thumbwidth = "$ImageWidth"
    thumbheight = "$ImageHeight">
    </photo>
    this generates most of the photos.xml. Not automated are in
    the moment some problems with the german Umlauts and with the
    coordinates to bring them in a form understanable by google maps.
    Perhaps that might help you.
    I have no knowledge of php or Asp, my provider doesn't allow
    it.
    Greetings from Germany
    Hannes Löhr

  • Feature Request for Gallery Demo

    Hi, Kin
    Elsewhere, a while back, you mentioned it would be possible
    to have a caption in the Gallery demo by adding something to the
    photos.xml file? I'm a lightweight when it comes to writing
    javascript but I can typically read functions well-enough to
    understand how to hack what I want.
    Is there an example somewhere that shows the gallery demo
    with a caption? Is there a resource I could look at? Suggestions?
    Thanks
    DC

    Hi Donna,
    Take a look at this
    post.
    I just verified that it actually works for starting the Slide
    Show, but it also has the side effect of auto-starting the slide
    show when you change the gallery you are looking at with the select
    widget. But that might be desirable right?
    I'm guessing you're going to want to have a caption for each
    image right? If so, you'll have to edit the photos.xml file and add
    a caption entry for each photo. For example in the
    galleries/china/photos.xml file you'll see lots of photo tags of
    the form:
    <photo path="china_01.jpg" width="263" height="350"
    thumbpath="china_01.jpg" thumbwidth="56" thumbheight="75">
    </photo>
    If you're guaranteed to have a short one line captions, you
    can add it as an attribute to the photo tag:
    <photo path="china_01.jpg" width="263" height="350"
    thumbpath="china_01.jpg" thumbwidth="56" thumbheight="75"
    caption="Me, myself &amp; I at the great wall!">
    </photo>
    Or you can add the caption as a tag underneath the photo
    node:
    <photo path="china_01.jpg" width="263" height="350"
    thumbpath="china_01.jpg" thumbwidth="56" thumbheight="75">
    <caption>Me, myself &amp; I at the great
    wall!</caption> </photo>
    To add the caption to the HTML page, you simply need to add a
    spry:detailregion some place near the main image:
    <div id="mainImageOutline" style="width: 0px; height:
    0px;"> <img id="mainImage" alt="main image" /></div>
    <div id="mainImageCaption" spry:detailregion="
    dsPhotos">{caption}</div>
    The reason you have to use a detail region is because the
    code will set the current row of the dsPhotos data set to the row
    that contains the URL for the main image. Because detail regions
    listen for row changes, the caption will auto-magically update
    itself when the main image changes.
    In the example above I used a {caption} data reference. If
    you went the route of using a caption attribute, you would have to
    use {@caption} instead.
    Hope this helps! :-)
    --== Kin ==--

  • No Thumbs or Main Image with Spry Gallery Demo

    Hi everyone, DW CS3 newbie here.
    I hope this topic hasn't been beaten into the ground yet.
    I'm trying to put together a site
    (members.cox.net/rangersbu9/gallery.html) for my son's soccer team
    and am running into a wall getting the original, dynamic Spry
    gallery demo to work. I've done my best to collect and modify the
    required files and place them appropriately but, when the files are
    loaded on the live server (the wrap div contents are all but
    invisible when I view with IE7 locally, apparently due to the PC
    not be set up as local server) the thumbs are 'x's and the main
    image is a 1px x 1px dot.
    The controls will highlight between the empty thumbs and the
    gallery pull-down will select between the two options I've put in
    the XML file but that's about it. Perhaps it is my ignorance, but
    it seems like a ( src= ) tag is missing in the 'mainImageOutline'
    div because I cannot understand where the main picture is coming
    from otherwise.
    Any insight from the source at the link above? Please keep in
    mind I have two week's experience with DW and website building but
    do have a programming background (from a few decades ago :->). I
    believe I have the un-updated CS3 Spry version, if that matters.
    Many thanks to Don and others here for posts that have helped
    me get this far.
    -Kurt

    Update:
    Got the thumbs to appear. Had them physically sized larger
    than the XML fields stated. However, they will not grow/shrink. In
    digging through gallery.js, I see that those two functions call
    Spry.Effects.SizeAndPosition() - I cannot find that function in any
    of the includes (i.e. SpryEffects.js). Spry.Effects.Size yes, but
    not SizeAndPosition. Wondering if this gallery.js calls a later
    version of SpryEffects.js than I currently have installed (it's
    Spry 1.4). I will download 1.6 and check it out but if anyone has
    any other input, please let me know.
    Still no main image. In gallery.js I found ShowCurrentImage()
    which had a hardcoded path to the images that did not match mine.
    Corrected the path but no change.
    Any suggestions?
    Thanks.
    -Kurt

  • 5230 Gallery problem: No Videos and photos

    My phone is 5230. Its Gallery have no images and photos.
    I ' ve used the latest platform ( V40), and tried to hard reset the phone, and did some other ways, such as deleting files on Private folder as guided, but the result is zero. 
    The search engine have the same problem. It can't find out any files of images, videos.
    Someone can help me. Thank you.

    About the photos yeah i did that sorry i hadnt even tried when i posted that, but as for videos, i got them onto my iTunes library fine, they're in the videos file but they're not going onto my iPod. Before i just had a few futurama episodes and when i updated the iPod it ignored them completely, then i added some home movies which play on quicktime fine, and now when i update my iPod it says among the numerous windows (such as 'loser' etc. could not be added because the file could not be found) that 'car' (a home movie) and other music or video files could not be added to your iPod because they cannot be played on your iPod followed by a help link : http://www.info.apple.com/kbnum/n301461 which talked about the need to edit movies with Quicktime Pro 7 or iMovie. I havent got either as i'm using windows, so therefore have no idea how i'm supposed to do this. I still don't understand, because surely if they go happily on my iTunes they should be updated to my iPod? Any suggestions?

  • XML & Photos.xml

    My other question is about the photos.xml (and gallery.xml)
    file.
    I don't own ColdFusion, and can't afford it. I do Dreamweaver
    8, and Photoshop Elements 4 (for the Mac).
    Before I embark on writing something, is there any utility I
    can use to create these XML files? Typing all this information in
    is tedious and error-prone. It also makes my (hopefully
    forthcoming) photo site difficult to maintain.
    Thanks again
    Carolyn Ann

    Good question. I installed PE4 and as I had hoped, the Web
    Photo Gallery creator outputs a XML file of the image information.
    This is the kind of file we used from Photoshop when we first
    started making Spry.
    So you can generate it from that, but you will notice that
    they use <image> as their node name. You will have to change
    that to <photo> or something other than <image> since
    Safari causes trouble with that name in it's processing of Spry.
    Hope this helps.
    Don

  • Setup.exe fails, folder " "does not contain a valid media info file 'mediainfo.xml'"

    I'm trying to run the SQL Server R2 setup.exe, and all I get is a command window popping up briefly, then nothing.
    This actually affects all SQL Installers that I have on my machine:
    2008R2
    2012
    SSDT BI Pack for VS2012
    If I run the setup.exe from the command line, I get this:
    An error occurred during the SQL Server 2008 R2 Setup operation
    Error result: -2067529698
    Result facility code: 1220
    Result error code: 30
    For more information, review SQL Server R2 Setup Logs in your temp folder
    The contents of that log file are:
    04/04/2014 10:54:34.489 ======================================================================
    04/04/2014 10:54:34.510 Setup launched
    04/04/2014 10:54:34.541 Attempting to determine media source
    04/04/2014 10:54:34.558 Media source value not specified on command line argument.
    04/04/2014 10:54:34.574 Setup is launched from media directly so default the value to the current folder.
    04/04/2014 10:54:34.591 Media source: C:\SQL Server Installers\2008 R2\
    04/04/2014 10:54:34.608 Attempt to determine media layout based on file 'C:\SQL Server Installers\2008 R2\mediainfo.xml'.
    04/04/2014 10:54:34.627 The folder 'C:\SQL Server Installers\2008 R2\' does not contain a valid media info file 'mediainfo.xml'.
    04/04/2014 10:54:34.649 Setup closed with exit code: 0x84C4001E
    04/04/2014 10:54:34.677 ======================================================================
    I've checked 1000 times that the folder DOES contain a mediainfo.xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <MediaInfo>
    <Properties>
    <Property Id="MediaLayout" Value="Full" />
    </Properties>
    </MediaInfo>
    I've seen a few suggestions elsewhere in search results, but nothing has worked so far.
    I've previously run the 2008R2 installer and the 2012 installer without problems, so I'm not sure what has changed, or how to get round it.
    I'm running on Windows 7 Enterprise SP1, 64 bit with up-to-date Windows Updates.
    Any help would be very much appreciated.

    In addition to Alberto’s suggestion:
    Validate the setup media is not corrupt.
    http://thesqldude.com/2012/01/27/sql-server-setup-how-to-validate-downloaded-imagemedia-before-installation
    Install .net framework 3.5 and 4.0. Repair them, if already installed.
    This posting is provided “AS IS” with no warranties, and confers no rights.
    If this reply answers your question, please mark it as Answered for others to find it easily.
    If this reply help you resolving the problem, please vote the post as Helpful.

  • Gallery Demo doesn't work in IE

    I know i'm re-posting this but i can't belive this is so. So
    i'm hoping people just didn't see my second message rather than
    simply ignoring the fact that the gallery demo by Adobe doesn't
    work right in IE (at least in mine with SP2).
    If you notice when the main image changes there's a flicker
    where it shows the previous image and only then the chosen image.
    In the thumbnails the thumbnail that's being hovered over doesn't
    stay on top of both images on either side.
    Now my question is, does this problem have a solution or does
    it simply not work in IE and that's fine by all?!!
    Best,
    Sofia

    Hi Sofia,
    I answered your original post of this question
    here.
    Lets move the conversation back to that thread so we can have
    it all in one place.
    Thanks,
    --== Kin ==--

  • Gallery Demo and IE7 Z-Index Bug

    What is the workaround that corrects the problem in IE7
    whereby Spry's Grow function shows enlarged images behind (not on
    top) of their adjacent micro thumbs. Thanks in advance.

    I'm confused. The example for Spry gallery DOESN'T use an
    anchor tag around the thumbnails... In your article and in some
    posts, you say that the structure is:
    <div id="thumbnails">
    <div class="thumbnail">
    <a href="image.jpg"><img src="image.jpg"
    /></a>
    </div>
    </div>
    However, I downloaded Spry_1_6_1_022408 and copied the
    example thumbnails element & content verbatim:
    <div id="thumbnails" spry:region="dsPhotos dsGalleries
    dsGallery">
    <div spry:repeat="dsPhotos"
    onclick="HandleThumbnailClick('{ds_RowID}');"
    onmouseover="GrowThumbnail(this.getElementsByTagName('img')[0],
    '{@thumbwidth}', '{@thumbheight}');"
    onmouseout="ShrinkThumbnail(this.getElementsByTagName('img')[0]);">
    <img id="tn{ds_RowID}" alt="thumbnail for {@thumbpath}"
    src="galleries/{dsGalleries::@base}{dsGallery::thumbnail/@base}{@thumbpath}"
    width="24" height="24" style="left: 0px; right: 0px;" />
    </div>
    <p class="ClearAll"></p>
    </div>
    NO ANCHOR TAG. Even if you look in the generated source,
    there's no link surrounding the thumbnail image.
    So I guess I am unclear as to how to apply your fix? Using
    the 1.6.1 version, the sample function code you show doesn't match,
    nor does it seem to reflect your modifications...
    Any ideas? I managed to track down your post about the bug in
    IE 7 (it exists in IE6, too) [the demo link (
    http://mad.sweepingdesign.com/index.html)
    goes to a page that says "It works!"]
    The actual article can be found here, though the demo link
    shows nothing:
    http://www.sweepingdesign.com/wordpress/2007/11/18/spry-gallery-demo-and-ie7-z-index-bug/

  • File retains font info, how can I delete it?

    When I open a file, FontAgent Pro will try and auto-activate fonts that I HAD used on the file, but am no longer.
    It looks like Photoshop is somehow hanging onto the old font info.
    Can I delete that information from the file?
    It is bothersome, because FontAgent Pro keeps turning on fonts that I don't really need.
    I clear my computer font cache, but I want to clear the file font cache.

    I'm not sure what the layers panel will show you, but here goes.
    I just tried to open this file and FontAgentPro told me it was auto-activating the font St. Nicholas.
    The font was probably used at some point in the files life, but it is not used on any of the type layers
    Here's the Layers Panel.

  • HT201077 I've created an icloud account, and can view all saved info accept photo stream.here is no icon for it.  Should there be one?

    I'fe created an icloud accou, and i can view all icons and saved info accept photo stream.  Should there be a photo stream icon?

    There isn't one.  You can't view photo stream on icloud.com, only on devices connected to your iCloud account with photo stream enabled.

  • If i am to sync my phone to a different computer and it has been backed up will i be able to get all my info back (photos, contacts, etc)??

    if i am to sync my phone to a different computer and it has been backed up will i be able to get all my info back (photos, contacts, etc)??

    Correct. When you update via iTunes all synced media that is not in your iTunes library will be lost.
    As IO said before:
    You can redownload most iTunes pruchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    I do not think it included audio books.

Maybe you are looking for

  • Getting error while starting the Weblogic server.

    Please find the error while i m trying to boot the weblogic: Dec 9, 2009 12:55:15 PM CST> <Notice> <Stdout> <000000> <Jolt Session Pool cannot provide a connection to the appsever. Thi s appears to be because there is no available application server

  • Problems in IE9 32 bit browser but not 64 bit

    When I delete a message(s) in Yahoo Mail or when I go to my mortgage website and login, I get a blank page and then nothing happens.  I only get this problem in IE9 32 bit and not 64 bit.  I reset IE9 Options under the advanced tab, updated Java and

  • USER INFO in Oracle SOA 10g

    Hi All, I am using Oracle SOA 10g (10.1.3.4). I wanted to know, who logged in into system and what time. Is this possible to get this info? Thanks

  • Documentation on Investment Management

    Hi Can anyone send some documentation on Investment management to [email protected] Point will be rewarded

  • Windows 10 Technical Preview: Hiding OneDrive in the Explorer left pane

    The title is self explanitory, here's a diagram: http://imgur.com/FDlIpPp . If you notice, on the first panel, onedrive is there. In the second panel, onedrive is gone. Could I make the second panel reality?