KitKat messed up my photo gallery

Post-kitkat install on my Razr M, deleted images are "masking" more recent ones.  Images I know I deleted are showing up in the gallery.  When I click on them, they "disolve" while opening to reveal the new image beneath.  It would be a neat parlor trick, but it makes finding images rather difficult as I have to guess which old image the one I want his hiding behind.
Can this be fixed?

I had to repost my question because after trying the initial advice, and reporting that the suggestion failed to correct the problem, this thread recieved no further responses from Verizon.
(discussion of moderation removed as required by the Verizon Wireless Terms of Service)
@DroidHD_1 you might try the advice I was given on my second post: kitkat broke my photo gallery
I haven't tried it yet, but who knows...
Message was edited by: Admin Moderator

Similar Messages

  • Kitkat broke my photo gallery

    Post-kitkat install on my Razr M, deleted images are "masking" more recent ones.  Images I know I deleted are showing up in the gallery.  When I click on them, they "disolve" while opening to reveal the new image beneath.  It would be a neat parlor trick, but it makes finding images rather difficult as I have to guess which old image the one I want his hiding behind.
    The problem persists even when the phone is in SafeMode.
    There is no SD card.
    I have never saved images to the cloud service but only stored images on the phone itself.
    Any new suggstions or do I just need to take the phone to a Verizon store and hope someone there has a clue?
    Discussion locked as it is a duplicate of:
    KitKat messed up my photo gallery
    Message was edited by: Admin Moderator

        TheGrislees,
    Sorry that problem is occurring in Safe Mode. That is an indication that no 3rd party app is causing the trouble. Looks like we need to backup and hard reset. Make sure you sync with the Verizon Cloud. Go to the website and see if the images are ok. If not that is likely a problem with the image itself. If the images are fine at the website then let's hard reset the device and sync the photos back to the phone with the cloud. Here are the instructions for resetting the device: From a home screen, tap Apps. From the APPS tab, tap Settings. From the PERSONAL section, tap Backup & reset. From the PERSONAL DATA section, tap Factory data reset. Tap Reset phone. Tap Erase everything.
    BrianP_VZW
    Follow Us on Twitter @VZWSupport

  • Photo Gallery not showing photos in computer Web browser

    None of my photo gallery photos are showing up in a computer's Web browser?  They show up fine when you click "View Web Journal in Safari" on an iPad 2, but when I publish them to iCloud and Share the Web Journal Link, the photos don't show up??  It's happening with all of my Journals.  It doesn't work on a Mac or Windows?  What gives??
    You try it:https://www.icloud.com/iphoto/projects/#1;CAEQARoQdoVWsxptdYjcSQD-Rg1QVg;B692688 8-A220-4FF7-848F-6383BB15A5DB

    Arrrrrrrrrrrrrrrrgh, matey. They all show for me in Safari but require several page refreshes to get them all to display.  Those that don't display will if I click on it and then go back to the page.  However, when retuning to the first page will put be back at square one and require multiple refreshes to get them to display, but not always.
    Also, the page links are all messed up.  Clicking on them just returns me to the first page. If I Option click on a page link from Page 1 I will get to the right page. 
    I am unable to get Firefox or Chrome to work at all on your gallery. 
    Send a bug report to Apple via http://www.apple.com/feedback/iphoto.html.  You can include the URL to this topic in order to include my comments and findings.
    OT

  • Photo Gallery in Dreamweaver using Fireworks

    How do I add images to a photo gallery that I created in
    Dreamweaver using Fireworks? I created a photo gallery and I
    changed my background color and other settings, but I need to find
    any easier way to add images without messing up my settings. Each
    time I add a photo, I don't want to have to change 40+ web pages.
    Can someone please help? If there is an easier program to use, then
    I will change programs.
    Thanks for your help!

    Sorry in advance if the following comment is missing the
    point of your question.
    Ans: You need to export (>File > Export) the image that
    you have manipulated in Fireworks to an images folder in your
    dreamweaver website. You will be prompted for an optimum file
    output (JPEG, GIF etc) during this process. Then close Fireworks
    and open DW. Then place your curser at the point in the webpage
    where you want to insert the image and then select Menu > Insert
    > Image. Browse to the image that you have created in Fireworks
    and press enter. Job done! Fireworks is a fantastic s/w application
    ... and there's no need to look elsewhere.

  • Photo gallery with buttons and php.

    I am relatively new to actions script, very new to as3, and brand new to php. I have tried very hard to figure all of this out via tutorials, studying the code, etc but now I'm running out of time to get this done so I need some help.
    I am trying to make a photo gallery that functions as follows:
    -the php gathers all of the filenames from a folder and returns it to flash
    -an array of buttons is loaded onto the stage (one for each photo)
    -flash then loads the first image into a movie clip.
    -when the user clicks on button[i], image[i] loads in the movie clip.
    -i also plan to incorporate what might happen if the number of photos exceeds the number of buttons that can fit nicely on the stage, like an arrow to go to another set of buttons. I haven't tried coding this yet since I was just trying to get the thing to work in general first. If anyone has ideas about this, let me know.
    Please don't make fun of me too much. I know it's probably a mess.
    Thank you so much in advance for your help.
    Here's the php:
    <!--
    Author:      Adam Ehrheart
    Site:      http://adamehrheart.com
    Blog:      http://flashcamp.net
    Date:      4.21.08
    -->
    <?php
    #   Use "." if the get_files.php file resides in the same directory as files being read
    #   Otherwise you can change the path to whatever you like
    #   eg:
    #   Same Directory:
    #   $path = ".";
    #   Other Directory
    #   $path = "products/images/"
    $path = "Photography/";
    #   Choosing what directory to read
    if ($handle = opendir($path)) {
       #   Temporary array to hold image files
       $imageFiles = array();
       #   Creating loop and assigning current file to $file temp variable
       while (false !== ($file = readdir($handle)))
          #   Checking wheter or not the file is invisible and starts with a "."
          $fileCheck = substr($file, 0, 1);
          #   Checking to make sure the files is either a (jpg, JPG, png, PNG)
          $fileType = substr($file, -3);
          #   Making sure file is not invisible
          if($fileCheck != ".")
             #   Making sure file is readable and dynamically loadable by Flash
             if($fileType == "jpg" || $fileType == "JPG" || $fileType == "png" || $fileType == "PNG")
                #   Adding File to the image array
                if($path != "."){
                array_push($imageFiles, $path . $file);
                }else{
                   array_push($imageFiles, $file);
          #   Sorting the files alphabetically
          sort($imageFiles);
       #    Creating XML File output to be read by Flash
       echo "<?xml version=\"1.0\"?>\n";
       #   Root Node
       echo "<image_list>";
       #   Creating child nodes for each image
       foreach($imageFiles as $value)
          #   Pulling the Width and Height values for each file and adding them as attributes for the image node
          list($width, $height) = getimagesize($value);
          #   Creating the image node
          echo "<image width=\"$width\"" . " height=\"$height\">" . $value . "</image>";  
       echo "</image_list>";
       #   Closing the readdir function
       closedir($handle);
    And here's the as3:
    //php photo section
    import flash.events.Event;
    import flash.net.*;
    //load the php file
    var myRequest:URLRequest = new URLRequest("Photography.php");
    var myLoader:URLLoader = new URLLoader();
    //define images variable as an xml file
    var images:XML = new XML();
    images.ignoreWhite = true;
    images.addEventListener ('load', myLoader);
    //define the images variable as an xml as the php file result
    myRequest.data = images;
    //outputting the filenames
    function onLoaded(evt:Event):void {
      trace("here we get the data back: "+myLoader.data);
    //when the data is loaded, begin myRequest
    myLoader.addEventListener(Event.COMPLETE, onLoaded);
    myLoader.load(myRequest);
    //array to call the images
    var imageArray:Array //= NewArray();
    var listLength:Number;
    var il:XMLList = images.data  //xml.images;
    listLength=il.length();
    var i:Number
    var photo_btn:Array = new Array();
    for (i = 0; i < listLength; i++); {
    imageArray[i] = il[i].pic //xml.images[i].pic;
    if (photo_btn[i].mouseDown == true) {
    img_loader.load(imageArray[i])
    if (i == 0)  {
    photo_btn[i].y = 422.7;
    photo_btn[i].x = 411.5
    else if (i > 0 && i < 24); {
    photo_btn[i].y = 422.7;
    photo_btn[i].x = (photo_btn[i-1].x + 18.6);
    if (i > 24 && i < listLength); {
    photo_btn[i].y = 442.7;
    photo_btn[i].x = (photo_btn[i-1].x + 18.6);
    img_loader.load(imageArray[0]);

    As for AS3 part of it, I am not sure your code really works. There are syntax and logical errors there.
    I think you need to take it step by step and accomplish several task in the following sequences:
    1. Write code that loads XML correctly;
    2. Write code that enables buttons;
    3. Write code that will load images on button clicks.
    The code below shows in principal what needs to be done in order to load XML and make the data in this XML available for further consumption. Also, by accomplishing this step you will iron out all the PHP vs Flash wrinkles including your XML.
    Please note, I don't know your XML structure so all the parsing issues you need to resolve yourself.
    Once you get handle on it - we, hopefully, will talk about steps 2 and 3.
    import flash.display.Loader;
    import flash.events.*;
    import flash.net.*;
    var images:XML;
    var myRequest:URLRequest;
    var myLoader:URLLoader;
    // list of image urls that will come from loaded XML
    var imageList:XMLList;
    myRequest = new URLRequest("Photography.php");
    myLoader = new URLLoader();
    myLoader.addEventListener(Event.COMPLETE, onFileLoaded);
    // suggested handler for unexpected errors - avoids some headaches
    myLoader.addEventListener(IOErrorEvent.IO_ERROR, onLoadError);
    myLoader.load(myRequest);
    // Note: all the listeners are removed
    // it is always wise to remove listeners that are needed any longer
    // to make objects eligible for arbage collection
    function onLoadError(e:IOErrorEvent):void
         trace(e.toString());
         myLoader.removeEventListener(Event.COMPLETE, onFileLoaded);
         myLoader.removeEventListener(IOErrorEvent.IO_ERROR, onLoadError);
    function onFileLoaded(e:Event):void
         myLoader.removeEventListener(Event.COMPLETE, onFileLoaded);
         myLoader.removeEventListener(IOErrorEvent.IO_ERROR, onLoadError);
         images = new XML(myLoader.data);
         // only now xml is ready and you can start loading images
         imageList= images.pic;

  • Importing Photos From Windows Live Photo Gallery To iPhoto '11

    ##### Note:  I've seen a lot of discussion on this topic but nothing recent, so here it goes #####
    Hi -
    I am about to receive my new iMac (congratulations to me!) and will soon commense transferring >5,000 photos from my PC.  I would like these to transfer into iPhoto.
    I've used Windows Live Photo Gallery (WLPG) to tag these photos by various means (location, person, event, etc). I've read that WLPG stores this metadata with the .jpg file in XMP, or Extensible Metadata Platform. The result is that the tagging data is with the photo file. The tags are in a few categories:
    People
    Events
    Places
    Each of these categories will have a number of tags (example:  Events include:  "Joe's 5th birthday", "Christmas '12", etc)
    I understand that iPhoto supports data if it embedded in the ITPC.  Reading a bit about iPhoto, there look to be a number of homes for this data (Events, Keywords, etc).
    Ideally, I would love to have these photos transferred into iPhoto with consistent tagging.  Does anyone know how I can maintain this data into iPhoto? Can anyone recommend a tool for the conversion?
    Thanks!

    My Windows pc crashed and I'm thinking about replacing with the Mac Mini.  But like you, I have thousands of tagged photos in Windows Live Gallery.  Losing the tags is a non-starter.  I really don't care too much about "where" the photo was taken, but I do care about "who" is in the photo and what "event" was occurring when the photo was taken.  For example, one photo could be tagged with my daughter's name, my son's name, my wife's name, event of Disneyworld, and the date taken should be just embedded in the photo itself.  So four tags for the one photo plus the embedded date taken.
    If I migrate to iPhoto on the Mac, will I be able to bring all of those individual tags over easily?  What was your final experience now that you've been messing with it for a year?  And if you are happy, are you able to sort all you photos by just clicking a person's name and a date range and having iPhoto return all photos with that one person within those dates?
    Any insight would be helpful.  Thanks.

  • Confused using Photo Gallery

    :After trying windows 8, I decided to go back to my window 7.  My photo gallery is now a mess.  I have so many duplicate pictures that I am deleting and I just want to be sure that there is no limit of duplicate pictures that I can put in the recyle bin.  I know this sounds like a strange question but when I say I have a lot of duplicate pictures, I am talking a lot of pictures.
    2.  When I open my photo gallery I have a lot of pictures that have a strange number assigned to the picture...for example #C154429339.  Does this mean something... should I do something with them....just ignore or??
    I hope someone can help me.  I have tried to find information about some of my problems, but I guess I don't explain myself well.
    I thank you for any help that you can give me.

    Hi,
    The Recycle bin does have a size limitation. Right mouse click on the Recyle bin and select properties.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Filename in Photo Gallery

    Since updating my iPad2 to iOS 8, the filenames have vanished from the photo gallery. I am a designer and I used to take the filename of photos as reference for my clients. I have more than 8000 pictures in the gallery. Please HELP
    Hate Apple so much for ruining my work.

    I Can't ever recall seeing file names in the default Photos app. Perhaps you were using iphoto on your iPad which is no longer supported? Check the App Store for other photo handling apps To find one that shows the file names. I use Photo Manager Pro to show photos to my clients. It does a better job of that than the Photos app. you can set the preferences there to display the file name.

  • Photo gallery with Thumbnail View in Flex 3

    Hello everyone
    I very urgently need an answer to a very simple qeuestoon. I have been trying really hard since days to get a solution to this simple problem but in vain.
    I am building an application in Flex 3. I simply want to create a photo gallery with a thumbnail where when the user clicks on a thumbnail, the image is shown in the canvas/tab navigator box next to it. The images are stored in a local folder (in src) are ARE NOT on available on any web link.
    The Vbox with the thumb image and the .xml file has been created. But when I click on the thumbnail, the full image cannot be seen in the application. I dont know if this is a problem with data binding or what.
    Please help!!!
    Thanks a ton.

    Check the folder structure
    Flash is not able to get some file thats why the IO Error.
    trace the url path just before u load the file and u will be abel to find whether that file is in specified folder or not.
    http://www.darshanrane.com

  • Photo Gallery bug in IE7

    http://labs.adobe.com/technologies/spry/demos/gallery_pe/dynamic/index.html
    On mouseover, selected thumbnail expands behind other
    thumbnails instead of hovering over them. Works fine in FF.
    Is there a way to fix/override this?

    @Kin
    The gallery demo files do not put an anchor link around the
    thumbnails. The article you list is describing how to alter the
    files for (newer?) examples that require about 8 different include
    files -- which, given the already HUGE download hit required to run
    a photo gallery, seems excessive.
    Can adobe not write up a solution that works for the sample
    files for the gallery that only requires 3 includes + 1 css file
    (which can be added to your own style sheet to avoid yet another
    file download)?
    Or, is there someway to grow the thumbnails from the bottom
    right corner, thus avoiding any overlap by subsequent thumbs? I
    tried setting the grow from center to false in SpryEffects but it
    appeared to have no effect on the function in the gallery.

  • Photo gallery problems in Vista IE

    Hi there,
    I've made Spry Photo Gallery which works fine on Mac(Safari, Opera, Firefox) on Windows 2000 pro IE but don't work on Vista IE.
    I can not find a problem. Can anyone help!

    It is an HP dv6040ca that has vista 64-bit on it. It has a NVIDIA sata driver, that I have tried to up date today.
    Drat. HP has been offering a Microsoft Standard Dual Channel PCI IDE Controller Update/Rollback that has been helping with this sort of thing on desktop models (32-bit), but they aren't offering it on notebooks.
    Are you up to date on that BIOS update they are offering? (They don't say what it does, but it might be worth a crack.)
    Software & Driver downloads: HP Pavilion dv6040ca Notebook PC (Vista 64-bit)

  • Photo Gallery Database in Dreamweaver Help

    Can anyone offer advise on a simple solution for a photo gallery based on a database that can be intergrated to a website that I'm creating in Dreamweaver. Does anyone know of any widget like options and or templates? Thanks in advance.

    I have a PHP script that dynamically populates the page with images from a folder.  I don't keep images in a database.
    http://alt-web.com/GALLERY/GalleryTest.php
    Nancy O.

  • Photo Gallery - works in Safari but not Firefox .. ?

    Hi,
    I have a photo gallery at http://www.sg-karting.com/Racing/Photos/Photos.html
    When I go into the albums, pictures are displayed in Safari but not on Firefox.
    When creating this page on iWeb I selected 'Web Gallery' instead of 'Album'. Does this make any difference?
    Regards.

    I have just visited "http://www.sg-karting.com/Racing/Photos/Pages/KartingEdgeRound-1.html" using both Safari Version 3.0.4 (523.12) and Firefox version 2.0.0.9 on a G4 PB 10.4.11. And both browsers displayed the same information from what I can see. All the pictures revealed themselves.
    Have I picked the correct album for your example?
    I tried other area's of your web site and all appeared to be the same as the Safari. Maybe you need to clear your cache.

  • Photo Gallery thumbnails in business catalyst render in different sizes in different browsers

    Photo Gallery thumbnails in business catalyst render in different sizes in safari and chrome but are fine in firefox. What is the issue with Safari? I have tried the different algorithm options such as fill_proportional etc and firefox is the only browser that displays correctly. I thought safari was the most standards compatible browser - what's the problem here?

    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

  • 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.

Maybe you are looking for