Photo gallery show the exif information

Hi
Is it possible to show any information in every photos i upload to iWEB when people click on my photos.
Thanks
kpo

The only situation I've found with any of the iLife apps to show the exif data online is with an iPhoto MobileMe gallery. When you click on a photo and bring up that photos larger version there's an "i" button at the bottom which will bring up an info panel for the photo. It's the same extended info pane that you have in iPhoto except for location.
There are some themes/skins for Jalbum that will display all of the EXIF data next to the photo. You can add the jalbum flash slideshow to an iWeb page with iFrame code and the HTML snippet. This demo page has a jalbum flash slideshow: Jalbum demo.
OT

Similar Messages

  • I am facing a strange problem on new iphone 5 that I bought last week. The maps app and the places in photo gallery shows the pin and my location, however there is no information of locations. Tried to close the apps, phone restart, reset etc. Please help

    I am facing a strange problem on new iphone 5 that I bought last week. The maps app and the places in photo gallery shows the pin and my location, however there is no information of locations. Tried to close the apps, phone restart, reset etc. I am accessing it via strong wireless connection and it works fine on other devices. Please help.

    zapgrap wrote:
    there is no information of locations.
    Then no information exists.  Use the Report a Problem button within the app to report it.

  • I have iphone 5s which when i connect to import the pictures directly to my windows computer. a folder by the name of my phone appears in "My Computer" . when i open it, it shows the storage information and one icon to click on. when opened it shows

    i have iphone 5s which when i connect to import the pictures directly to my windows computer. a folder by the name of my phone appears in "My Computer" . when i open it, it shows the storage information and one icon to click on. when opened it shows a couple of folders to click upon to view pictures. when i open the pictures folder and delete all the pictures , even then a lots of unclickable windows icons remain
    i have attached the picture of that window's screenshot. plus when ever i try deleting them it says,
    please help!.. i shall be really thankful.
    iPhone 5s, iOS 8

    I have the same issue and it has to do with iOS 8.2
    Apple, please mend this ASAP. Really stupid change since iOS 8.1
    If you for some reason must have many different folder make sure that you put the newst photo in the last folder so one can easily find a photo when I don't want to copy all photos to, let' say, my friend computer.

  • When in Adobe Bridge and trying to create a web photo gallery, under the windows menu and then the workspace menu there is no output option.  Where is it?

    When in Adobe Bridge and trying to create a web photo gallery, under the windows menu and then the workspace menu there is no output option.  Where is it?

    You haven't provided any sensible, meaningful and detailed information about your setup.
    If you gave some sensible, complete and detailed information, someone may be able to help you, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, etc.
    There are no clairvoyants or mind readers here.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • What happened to the exif information?

    I just noticed that the batch of photos I exported (to jpeg) have no exif information! The source was a DNG converted from a CRW (in lightroom) shot from a Canon 5D that definitely has all of the rich exif information embedded in it.
    But it seems that exporting pictures strips out all of the exif information?! Say it isn't so!
    Is there something I'm doing wrong?

    You can adjust what is included in the minimized metadata.
    Sid
    The LightroomExtra home page is right here.

  • Adobe muse - how to upload images in photo gallery in the admin console?

    Question from Adobe Muse beginner - I can't figure out how images can be uploaded in a slideshow/photo gallery in the admin console? I can edit or delete images but not upload additional images?

    Hi,
    May I know which admin console are you talking about.
    You are talking about Business Catalyst or Adobe Muse?
    Please provide the steps to access the admin console via Muse.
    Regards,
    Gaurav Aggarwal

  • Creating a photo gallery like the China Gallery in Adobe Labs. How?

    I have photos in several categories (I'll use 2, "frank" and "wolfie" as examples here). What I'd like to do is build a photo gallery like the China Photo Gallery shown in the Adobe Labs site, where the user can switch between categories without going to a different page. Here's what I've done so far and how I'm stuck:
    I created a photo gallery with the instructions in the tutorial "Building a photo album with the Spry Framwork". I then inserted a Tabbed Panels widget for navigating between the categories.
    I set up an XML file as follows:
    /* frank category */
    <photo
    path = "001p.png"
    width = "467"
    height = "467"
    thumbpath = "001p.png"
    thumbwidth = "85"
    thumbheight = "85">
    </photo>
    /* wolfie category */
    <photo
    path = "001f.png"
    width = "467"
    height = "467"
    thumbpath = "001f.png"
    thumbwidth = "85"
    thumbheight = "85">
    </photo>
    To create the div holding the thumbnails for the "frank" category, I entered the following:
    <div class="thumbdiv" spry:region="dsGallery"><img src="thumbnails/frank/{@thumbpath}" spry:repeat="dsGallery" spry:setrow="dsGallery" class="thumbs" /></div>
    To create the div where the full size images will be displayed, I entered the following:
    <div class="mainpic" spry:detailregion="dsGallery"><img src="images/frank/{@path}" onload="MM_effectAppearFade(this, 1500, 0, 100, false)" /></div>
    Then, in the tabbed panel set for the "wolfie" category, I did the same thing, substituting "wolfie" for "frank". However, since there is only one xml file, spaceholders for all of the thumbnails appear in the thumbnail div for the frank category. I realize that I'll probably need to create a separate xml file for each category, but how do I set it up so the correct xml file is accessed when the link in the tab is clicked? Or am I approaching this all wrong?
    From reviewing the source for the China gallery, it appears that they set up links to different xml files instead of Tabbed Panels. How does that work? There are also some javascript files I can't find anywhere on Adobe's site.
    Thanks

    Hi,
    If you have seperate XML file but with the same basic structure then you can change the XML a Spry dataset refers to and regenerate the spry region without reloading the full page.
    So on my photo gallery page I can change the album the photos are shown from via the seturl sprydata function as below.  dsPhotos being my Spry dataset that points to the relevant XML dataset with my image references and captions etc.  My XML is actually dynamically generated from Picasa RSS feeds (and RSS feeds are XML) but the principle will be the same with your static XML.
    First I add an event listener for when someone clicks on an album (the li tag within my div with the id "albums" holds a photo and title for each album.)
    function Albums()
    var myalbums = Spry.$$("#albums li", "TabbedPanels1")
    var rows = dsAlbums.getData();
    var setListener = function( element, value )
      Spry.Utils.addEventListener( element, "click", function(){ showAlbum( value ); },false );
    for( var i = 0, length = myalbums.length; i < length; i++ )
      setListener( myalbums[i], i );
    Then this is the code which changes the photo album to be shown. (when the user clicks the relevant album)
    function showAlbum(i)
    pauseShow();
    pImage = 'No';
    var rows = dsAlbums.getData();
    var albumid = rows[i]["albumid"];
    var url = "xml/PicasaAphotoFeed.asp?albumid=" + albumid;
    dsPhotos.setURL(url);
    dsPhotos.loadData();
    var rowcount = dsAlbums.getRowCount() - 1;
    var nextalbum;
    var navnext;
    var n;
    The page is here www.thehmc.co.uk/photo5.html is you want to see it in context.
    In your case showAlbum would switch between Frank.xml or Wolfie.xml depending on how you decide to name your xml datasets.
    Regards
    Phil

  • Before updating my iphone 3G to iOS 5 all the photos i synced were lpaced in my photo gallery only. Know I have both Photo gallery and The folder I synced

    Before updating my iphone 3G to iOS 5 all the photos i synced were lpaced in my photo gallery only. Know I have both Photo gallery and The folder I synced. Can somebody help me and tell me how can i have it the old way? if its applicable. Thank you

    Hi Urs
    I searched a lot and maybe found a part of the reason for this high data traffic.
    I'm synchronizing my contacts, calendar & reminder with iCloud & my mail with Hotmail.
    When push is activated for Hotmail, that doesn't matter, but when push is activated for iCloud, the amount of data nearly explodes. So I turned iCloud to manual and let Hotmail on push.
    Contacts, calendar & reminder are synchronizing when opened (I think this is enough).
    Also I do a backup on iCloud and than I deactivate the function (I do not delete the last backup, I only deactivate the option for automatic backup).
    It seems, that the backup functionality also generates traffic when not on WiFi - especially at night!!
    The battery life has been getting better, when I deactivated the support for automatic time zone changes (location services were always on).
    The battery finaly got MUCH BETTER since the update on iOS 5.0.1.
    My traffic is actually higher than on iOS 4 but not so high as before I deactivated some services...
    I hope this info is a little help for you!!
    Let me know if this works for you, ok?
    Best regards,
    Wolfgang

  • Airport utility doesn't show the correct information

    Hi - I am trying to get Airport Utility to work on my iMac (3.4 GHz Intel core i7, OS 10.8.4) but it does not show the correct information about my network. On my iMac, the utility consistently shows my Airport extreme and three Airport express as "Device Not Found". Yet the data suggests that is not correct: 1) Airport Utility on my older Macbook Pro shows all that all the devices are running fine; 2) Airport Utility on my iPhone shows that all the devices are working; 3) all the airport devices are showing green lights; 4) the wifi internet on my iMac works fine through my Airport Extreme; and 5) my music utility, Airfoil, routinely connects to all my airport express devices without a problem.
    The only problem then is the Airport Utility on my iMac. How do I fix it?

    If you are using 6.3 airport utility you must use ipv6 local link connection..
    http://support.apple.com/kb/TS4597

  • Why doesn't a song I uploaded to the iTunes store show the Composer information when purchased?! Why is Apple deleting crucial info!?!

    Why doesn't a song I uploaded to the iTunes store show the Composer information when purchased?! Why is Apple deleting crucial info!?!  The information was embedded using iTunes and uploaded through TuneCore.  But when the song is purchased and downloaded the Composer info has been deleted (and so has the copyright protection info that was in the comments window of the mp3's info in iTunes)???

    Foundsound,
    Since your direct commercial relationship is with TuneCore, not with Apple, you need to address your question to TuneCore.
    Tune Core often places the song at multiple music retailers (iTunes, Amazon, etc.) so you should check if the same thing happened at the others.
    The fact that the Comments field was blanked out doesn't surprise me, but deleting the composer does.
    Pls let us know what you find out.

  • How can you shrink the size of an upright picture to make it smaller without losing any of the detail in it??? At the moment, if I view them on my laptop, landscape photos fill the screen, but portrait photos only show the middle part.

    How can you shrink the size of an upright picture to make it smaller without losing any of the detail in it (in Slideshow)??? At the moment, if I view them on my Mac Laptop, landscape photos fill the screen, but portrait photos only show the middle part, so I loose the top and bottom of the picture.  Have tried cropping, but that means I lose top and bottom part of the picture, so that is not the answer!!

    Homestly haven't a clue what's going on there. 
    Try trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder.
    (On 10.7: Hold the option (or alt) key while clicking on the Go menu in Finder to access the User Library)
    (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    What's the plist file?
    For new users: Every application on your Mac has an accompanying plist file. It records certain User choices. For instance, in your favourite Word Processor it remembers your choice of Default Font, on your Web Browser is remembers things like your choice of Home Page. It even recalls what windows you had open last if your app allows you to pick up from where you left off last. The iPhoto plist file remembers things like the location of the Library, your choice of background colour, whether you are running a Referenced or Managed Library, what preferences you have for autosplitting events and so on. Trashing the plist file forces the app to generate a new one on the next launch, and this restores things to the Factory Defaults. Hence, if you've changed any of these things you'll need to reset them. If you haven't, then no bother. Trashing the plist file is Mac troubleshooting 101.

  • [svn:osmf:] 13448: Adding WebPlayerDebugConsole: a tiny AIR application that shows the debugging information generated by WebPlayer instances .

    Revision: 13448
    Revision: 13448
    Author:   [email protected]
    Date:     2010-01-12 08:17:12 -0800 (Tue, 12 Jan 2010)
    Log Message:
    Adding WebPlayerDebugConsole: a tiny AIR application that shows the debugging information generated by WebPlayer instances.
    Added Paths:
        osmf/trunk/apps/samples/framework/WebPlayerDebugConsole/
        osmf/trunk/apps/samples/framework/WebPlayerDebugConsole/.actionScriptProperties
        osmf/trunk/apps/samples/framework/WebPlayerDebugConsole/.flexProperties
        osmf/trunk/apps/samples/framework/WebPlayerDebugConsole/.project
        osmf/trunk/apps/samples/framework/WebPlayerDebugConsole/src/
        osmf/trunk/apps/samples/framework/WebPlayerDebugConsole/src/WebPlayerDebugConsole-app.xml
        osmf/trunk/apps/samples/framework/WebPlayerDebugConsole/src/WebPlayerDebugConsole.mxml
        osmf/trunk/apps/samples/framework/WebPlayerDebugConsole/testCertificate.p12

  • How can I modify the High Speed Data Reader VI to show the time information in x-axis?

    I am just a beginner learning the LabVIEW programming currently.
    I have a PXI 6115 DAQ card and have to make a hardware timed acquisition VI for maximum performance. Thus I use the High Speed Data Logger VI for data acquisition.
    However, when I read my data by using the High Speed Data Reader VI, it doesn't show its time information in the graph.
    How can I modify the High Speed Data Reader VI to show the time information in x-axis?
    I hope you can explain easily because I am a beginner.

    Format the x axis to either absoulte or relative time.
    You can do this by right clickingo n the graph and selecting x axis then formatting from the menu.
    Thanks,
    Naresh

  • Photo Gallery shows error message when opening and closes right after it

    Hi,
    I have Photo Gallery installed on my computer and my photos are in an external hard drive. At the beginning worked well. But today I tried opening Photo Gallery and it shows an error only giving you the option to click "Accept". After you accept
    the error, Photo Gallery closes.
    The error goes as follows:
    "One or more folders included in Photo Gallery is offline and is preventing Photo Gallery from starting.
    Either remove offline folders from Photo Gallery using Windows Explorer, or make sure that all folders are inline and try starting Photo Gallery again"
    Why did this happen and how can I fix this, I tried repairing and uninstall/reinstall Windows Essentials and it didn't work.
    Help please!, thanks!

    Hi,
    Consider Windows photo gallery is part of Windows Essentials, we have a better forum to seek help for problems related with that:
    Windows Essentials
    Additional information about Photo Gallery:
    Photo Gallery Help Page
    Thank you for your understanding.
    Best regards
    Michael Shao
    TechNet Community Support

  • Bionic Photo Gallery show friends on facebook photos, How do I turn off?

    I just upgraded from the Droid X to the Bionic I liked my X and thought that the widgets would be similar, they weren't. One widget I liked on the X was the photo gallery. On the Bionic it defaults to show my facebook contacts photo uploads. As much as I appreciate my friends photos, I do not want to see them on my phone photo gallery. I would prefer my own pictures instead. I unchecked facebook friends photo update and it still displays them. How can I fix this? Some of my friends are oil field workers and can be quite crude when it comes to the photos they upload.

    rushman64 wrote:
    the widget is blank. I would like for my pictures to be there. right noe the only way for me to see my pictures is to go to Camera roll. On my droid X i could see my pictures in a slideshow there.
    The widget has a option to select what folder you want to attach to it, try removing it and place it back, it usually ask what folder you want to display it the widget and once you select the one you want this should resolve this..

Maybe you are looking for

  • Pull selected photos from iPhoto in TimeMachine

    Some time ago a fully backed up MacAir died. It had some major infections so we didn't use TM to load the new machine. we just dragged over the items we needed. Now I want to bring over the iPhoto library but I don't want to lose or replace what is o

  • Message and notification own vibrations?

    Hey, is there a way to set you own notification and message vibrations? I dont like this single vibrate :/ I dont notice it at all in my pocket. greetings

  • Lost wifi connection

    I lost my wifi to my printer I thought it had something to do with comcast I have tried to restore to original defaults and have tried wps reset. I think it is in the ssid something there has changed I have tryng yo figure out how to show the ssid nu

  • New private window opens regular new window.

    I recently got prompted by the browser to do a refresh, so I went ahead. Now, when I attempt to open a new private window, the program opens a "regular" new window. Should I completely uninstall Firefox and reinstall it? I didn't have this issue prio

  • Pricing Types in Copy Control

    Hi Xperts, Can any of you guide me the exact difference between the pricing type D: Copy pricing elements unchanged and E: Copy Pricing Elements and values unchanged which is maintained in the copy controls. Thanks Smita