Images not visable in local photos folders

I just opened PS touch on my nexus 7 tablet for the first time in a few weeks. I touched on the icon at the bottom of the screen, the one of a picture with a plus sign next to it to open up the jpg images I already saved.
The list of local folders comes up, and usually I tap on a folder to see thumbs of the images. This time however, most of the thumbs are grey squares with the file names below them.
I checked in different folders and this seems to be happening in many of them to different extents: some have all or almost all the images grayed out; Some have many images showing.
What is going on here? How can I get it so I can again see the thumbs of all my images, instead of only a few of them?
Thanks, David.

The image files are there, just that most of the thumbnails are missing. I tried the double-tap refresh you described above, but it did not work. In the mean time this is the workaround (a bit time-consuming) I'm using:
I copy a folder with jpg files to another place on my tablet, rename it (for example, David-photos becomes David-photos-01), then copy that folder back to the Pictures folder. Once I have confirmed that I can view the images in PS, I delete the 'original' file folder and images, so I don't have two copies of them on my device. 
I'm not sure what caused this problem in the first place -- whether something happened with PS Touch or Android, or both?
Best, David 

Similar Messages

  • FireFox images not loading in local folders (firebug error-Failed to load given URL)

    I am having difficulty when developing websites in local folders (Windows7 computer). The webpages I make are showing images in IE9 & Chrome but not FireFox (nor Safari nor Opera).
    In FireFox I get Firebug "Failed to load given URL" prompt.
    I am using html5 & external linked css stylesheet & the html/html5 & css code validates.
    I have tried using rel path ie images/image.gif & absolute path references ie C:/RPD_Programming/RPD WEB/amwcsnew/index.html
    and have tried using % to eliminate whitespace in references but I cannot get FireFox to display images!!
    This has been a problem for me for around 2 weeks now & is very frustrating. Some website code/templates I have downloaded from the internet display the websites properly (ie load images fine) when I open them locally in FireFox. Why does my code not allow the images to load in FireFox (paths/permissions/other issue??). How can I fix this?
    Here is example css & html5 not displaying images from local directory in FireFox (fine in IE9 & Chrome):
    style.css
    /* CSS Document */
    /*Basic Reset*/
    margin:0;
    padding:0;
    html{
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
    display: block;
    body{
    width:1200px;
    margin:0 auto;
    header{
    height:450px;
    background:url("C:/RPD_Programming/RPD WEB/amwcsnew/images/header.gif");
    background-repeat:no-repeat;
    #mid{height:750px;
    background:url('C:/RPD_Programming/RPD_WEB/amwcsnew/images/mid.gif')no-repeat;
    footer{height:286px;
    background:url('C:/RPD_Programming/RPD WEB/amwcsnew/images/footer.gif')no-repeat;
    index.html
    <!doctype html><!-- simplified doctype works for all previous versions of HTML as well -->
    <!--html5 template from www.impressivewebs.com_modified by RPD-->
    <!-- Paul Irish's technique for targeting IE, modified to only target IE6, applied to the html element instead of body -->
    <!--[if lt IE 7 ]><html lang="en" class="no-js ie6"><![endif]-->
    <!--[if (gt IE 6)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
    <head>
    <!-- simplified character encoding -->
    <meta charset="utf-8">
    <title>amwcs-new</title>
    <meta name="description" content="amwcs">
    <meta name="author" content="rpd">
    <!-- Delete these two icon references once you've placed them in the root directory with these file names -->
    <!-- favicon 16x16 -->
    <link rel="shortcut icon" href="/favicon.ico">
    <!-- apple touch icon 57x57 -->
    <link rel="apple-touch-icon" href="/apple-touch-icon.png">
    <!-- Main style sheet. Change version number in query string to force styles refresh -->
    <!-- Link element no longer needs type attribute -->
    <!-- <link rel="stylesheet" type="text/css" media="all" href="css/style.css" />-->
    <link rel="stylesheet" href="css/style.css?v=2">
    <!-- Modernizr for feature detection of CSS3 and HTML5; must be placed in the "head" -->
    <!-- Script tag no longer needs type attribute -->
    <script src="js/modernizr-1.6.min.js"></script>
    <!-- Remove the script reference below if you're using Modernizr -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    </head>
    <!-- If possible, use the body as the container -->
    <!-- The "home" class is an example of a dynamic class created on the server for page-specific targeting
    <body class="home">-->
    <body>
    <!-- ******************************************************************** -->
    <!-- The content below is for demonstration of some common HTML5 elements -->
    <!-- More than likely you'll rip out everything except header/section/footer and start fresh -->
    <!-- First header has an ID so you can give it individual styles, and target stuff inside it
    <header id="hd1"> No way Hosay-not by default! Default is <header> tag (RPD edit) -->
    <header>
    <!-- "hgroup" is used to make two headings into one, to prevent a new document node from forming -->
    <hgroup>
    <h1>amwcs</h1>
    <h2>tagline</h2>
    </hgroup>
    <!-- Main nav, styled by targeting "#hd1 nav"; you can have more than one nav element per page -->
    <nav>
    <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Contact</a></li>
    </ul>
    </nav>
    </header><!--End header & or #hd1 header div id if used-->
    <!-- This is the main "div" that wraps the content generically; don't use "section" for this -->
    <div id="mid">
    <!-- The first of two "section" elements for demo purposes; optional class added for styling (hs1 = "home section 1") -->
    <section class="hs1">
    <!-- Each section should begin with a new h1 (not h2), and optionally a header -->
    <!-- You can have more than one header/footer pair on a page
    <header>
    <h1>This is a Page Sub Title</h1>
    </header> -->
    <p>Some content...</p>
    <!-- The h2 below is a sub heading relative to the h1 in this section, not for the whole document -->
    <h2>Demonstrating EM and STRONG</h2>
    <!-- "strong" is used for SEO and contextual hierarchy -->
    <p><strong>This text will have more importance (SEO-wise and contextually)</strong></p>
    <!-- "b" is used for stylistic offset of text that's NOT important contextually -->
    <p><b>This text has visual importance but has no contextual or SEO importance</b></p>
    <!-- "em" is used for colloquial-style emphasis -->
    <p>This is a <em>very</em> colloquial expression.</p>
    <!-- There can be multiple footers on each page -->
    <!-- Secondary headers and footers don't necesarily need ids; they can be targeted via context (i.e. ".hs1 footer")
    <footer>
    <!-- incite a riot: http://24ways.org/2009/incite-a-riot
    <p>Author: <cite>Louis Lazaris</cite></p>
    </footer> -->
    </section><!-- .hs1 -->
    <!-- This is another section; doesn't have header/footer because it's not required -->
    <section class="hs2">
    <h1>This is another section</h1>
    <p>This is some dummy content</p>
    </section><!-- .hs2 -->
    </div><!-- #mid -->
    <!-- The "aside" element could be a sidebar (outside an article or section) -->
    <!-- Or it could reference other tangentially-related content within an article or section
    <aside id="sidebar">
    <p>Sidebar content</p>
    </aside>-->
    <!-- The main footer has an ID for targeting, similar to the main header -->
    <footer >
    <p>copyright &copy; year</p>
    </footer>
    <!-- Remote jQuery with local fallback; taken from HTML5 Boilerplate http://html5boilerplate.com -->
    <!-- jQuery version might not be the latest; check jquery.com -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
    <script>!window.jQuery && document.write(unescape('%3Cscript src="js/jquery-1.4.4.min.js"%3E%3C/script%3E'))</script>
    <!-- Below is your script file, which has a basic JavaScript design pattern that you can optionally use -->
    <!-- Keep this and plugin scripts at the bottom for faster page load; combining and minifying scripts is recommended -->
    <script src="js/general.js"></script>
    <!-- asynchronous analytics code by Mathias Bynens; change UA-XXXXX-X to your own code; http://mathiasbynens.be/notes/async-analytics-snippet -->
    <!-- this can also be placed in the <head> if you want page views to be tracked quicker -->
    <script>
    var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
    (function(d, t) {
    var g = d.createElement(t),
    s = d.getElementsByTagName(t)[0];
    g.async = true;
    g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    s.parentNode.insertBefore(g, s);
    })(document, 'script');
    </script>
    </body>
    </html>
    I am most grateful for help & look forward to replies & fixing this-thanks
    NB
    Is there a FireFox guide/manual in pdf format available anywhere? I have not found one yet & a FireFox reference might be useful!

    You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
    Where is the main HTML located ?
    Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
    See:
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • Gray image not shown correctly in photo app

    Hi, in my iphone App, I create a Gray CGImage. Some code is here:
    colorSpace = CGColorSpaceCreateDeviceGray();
    if (colorSpace == NULL)
    fprintf(stderr, "Error allocating color space\n");
    return NULL;
    CGDataProviderRef dataProvider =
    CGDataProviderCreateWithData(NULL,
    myimagebuffer,
    bitmapByteCount,
    NULL);
    CGImageRef cgImage = CGImageCreate(col,
    row,
    8,
    8,
    col,
    colorSpace,
    kCGImageAlphaNone,
    dataProvider,
    NULL,
    false,
    kCGRenderingIntentDefault);
    And then I use this CGImage to make a UIImage. This image shows OK in UIImageView. I also use UIImageWriteToSavedPhotosAlbum to save this gray scale image to photo album. But when I open iphone native Photo app, this image is not shown correctly.
    Anyone has the same experience?
    Thanks,
    fm

    Post Author: JeffI
    CA Forum: Older Products
    Because I am sure other people will encounter this issue, I will post the solution here...The issue lies in what program is associated with .bmp files. In my specific case the customer had PhotoSuite 4 by Roxio associated with opening bmp files.  I am not sure exactly why (perhaps it doesn't support drag-and-drop?) but if you create a .reg file and import this it should fix the problem. The bolded part is the important part. Windows Registry Editor Version 5.00&#91;HKEY_CLASSES_ROOT&#93;&#91;HKEY_CLASSES_ROOT\*&#93;"InfoTip"="prop:Type;DocAuthor;DocTitle;DocSubject;DocComments;Write;Size""QuickTip"="prop:Type;Size""AlwaysShowExt"="""TileInfo"="prop:Type;Size"&#91;HKEY_CLASSES_ROOT\.bmp&#93;@="Paint.Picture""PerceivedType"="image""Content Type"="image/bmp"&#91;HKEY_CLASSES_ROOT\.bmp\OpenWithList&#93;&#91;HKEY_CLASSES_ROOT\.bmp\OpenWithList\MSPaint.exe&#93;@=""&#91;HKEY_CLASSES_ROOT\.bmp\OpenWithProgids&#93;"Paint.Picture"=hex(0):

  • Images not visable in firefox

    Hi all, i'm only new to this but here is the problem that i am having.
    I'm using Dreamweaver 8 to design web pages.
    When saving an excel spreadsheet with an image on it plus other data as a web page to use in dreamweaver i have the problem that if i preview the page with Internet explorer the image appears but when i preview the page with Firefox the dosen't appear.
    Is there something in the coding that i need to do or something else????
    Cheers
    Forbesy71.

    could be that the excel formatting is a special activeX control that is built into Internet Explorer and active in your current system but requires a special Add-On or Plug-In for Firefox in order to view it.  Investigate how the code is structured in your html page (code view) and see if there are any special object tags being used.

  • Why is iTunes not able to pick up certain photo folders from iPhoto? Camera and image sizes are similiar to the ones which can be picked up.

    why is itunes not able to pick up certain photo folders from Iphoto. i'm tryin got sync certain iphoto album into my iphone 5 but itunes is only able to read certain photo albums. not sure why because photos were taken using the same camera 1 day apart.
    pls advise.
    Thank you

    i did but its still only picking up some of the photos. For eg, 1 folder had 147 pics but iTunes is only picking up 17. Can't seem to understand why. They were all taken on the same day using the same camera with the same settings.

  • How to create a pdf form allowing Reader user to insert picture - NOT from their local hard drive - but from photos I want them to choose from?

    Is there a way to create a PDF form where a Reader user can insert an image - that's NOT on their local hard drive?
    I have 4 photos available - the users of my form will choose one of them and insert it in the pdf form. The users will NOT have the photos saved on their local hard drives so ideally, they will see thumbnails or a preview of the available photos and then select and insert the photo they want to use.
    Is this possible? If so, how do I go about this? Right now, all I can find are ways to insert a photo located on the users local hard drive.
    Hopefully someone can answer my question.

    George, I'm not sure where the photos would go or how to include them. I'm a complete newbie when it comes to making pdf forms so i'm not sure if it's even possible.
    I'm planning to make a flier. I want the end user to be able to choose the photo displayed on the flier - the photos would be ones that I choose and supply. I know I could just make four different fliers, but I thought it would be more efficient if I had one flier and gave the Reader user the ability to select the photo they like.
    Does this sound possible to you?

  • How can I hide or arrange alphabetically the folders that show up in 'local photos'?

    I have roughly 4000 photos and images in 150+ folders on my android tablet. Most of it is necessary presentation material that will never be opened in photoshop touch. However, when I get to the point in a presentation that I need to design something quickly, I'm faced with all 150+ folders showing up in 'local photos' in no discernable order.  I  only need 4 folders and about 12 sub folders that I will return to 3-4 times while creating the design. It is really time consuming to find the correct folder as they seem to be listed randomly. How do I isolate only the folders I need to see? Failing that, is there a way to get the folder/sub folder hierarchy to work? Failing that, can they be arranged alphabetically? Failing that, how are the folders arranged?

    Do you know how the folders are listed? Perhaps I can just change the folder creation date to some time in the future to get them to populate to the top of the list. I've designed the content so that 130+ of our dealers with android tablets can use the program out in the field to quickly design signs with it  --if I can only get over this hurdle.

  • View photo folders not files in CS5 Bridge

    How do I get back to the view of my photo folders?  I can only see individual photo files, and not all of them now.  Don't know what I did to make this happen.  I have a 2009 iMac and CS5 Bridge (Adobe Creative Suite 5 Design Premium). 

    How do I get back to the view of my photo folders?  I can only see individual
    photo files, and not all of them now. 
    Go to the folder panel (if it is not in view go to menu window and select
    folders panel) and inhere choose the main folder where your images are
    nested in subfolders.
    If you select a main folder with only subfolders it shows you only folder
    icons, if there are also images in that main folder itself it shows you both
    the files and folders.
    Using the command 'show items from subfolders' (menu view) you get both
    folder and all the files from that main folder.

  • Aperture Library photo folders are not updated in iTunes view

    The list of photo folders in Aperture doesn't update which doesn't allow me to select them and sync with my iPad. Selecting ALL would be too many for the iPad (60,000 plus).
    I put new photos into Aperture 3.0 and can't get them onto my iPad.
    Suggestions?

    I can't really help, but I have the same problem. I really need to convert one of the RAW images in Aperture to a DNG using the Adobe DNG converter, but the converter can't find the image because the folders haven't updated.
    I have restarted Aperture, the computer, all of the programs. Nothing seems to work. I don't know why the folders in the Pictures folder wouldn't match the folders in the Aperture Library. Most of them are the same, why not all?

  • I am not able to import photos into Lightroom 5.7.  When I select a folder, it doesn't show a preview of the images and the import button is greyed out. ??

    I am not able to import photos into Lightroom 5.7.  When I select a folder, it doesn't show a preview of the images and the import button is greyed out. ??
    I have been using Lightroom 5 for 2-3 months now and all worked well, up until today's effort to import a new set of photos. I am working on a Mac with Yosemite 10.10.1.

    Go to the bibliothec module, select the folder, right click on the folder and hit synchronize
    Sorry I have only a german version , so don't know what your menu will show.

  • Photo Booth won't open ... crash log says "image not found"

    I had a new hard drive installed on my MACBOOK. When i got it back, photo booth was not on my mac anymore.
    I got the app and put in on my mac and then when i try to open it, it doesnt do anything. THe crash log/console says:
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Photo Booth
    Path: /Applications/Photo Booth.app/Contents/MacOS/Photo Booth
    Parent: WindowServer [81]
    Version: 2.0 (70)
    PID: 469
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    Referenced from: /Applications/Photo Booth.app/Contents/MacOS/Photo Booth
    Reason: image not found
    And the Console log says:
    Library/Logs/CrashReporter/Photo Booth.crash.log
    dyld: Library not loaded: /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    Referenced from: /Applications/Photo Booth.app/Contents/MacOS/Photo Booth
    Reason: image not found
    Jan 2 09:50:56 jamie-giglios-computer crashdump[470]: Photo Booth crashed
    Jan 2 09:50:56 jamie-giglios-computer crashdump[470]: crash report written to: /Users/jamiegiglio/Library/Logs/CrashReporter/Photo Booth.crash.log
    (timer):Null value
    [395] http://discussions.apple.com/resources/merge line 4046: ReferenceError: Can't find variable: tinyMCE
    Any help please?

    I got this same message from having installed Leopard (10.5)
    and then because the "great Check Point VPN" software doesn't support Leopard I reinstalled Tiger (10.4) from supplied CD's
    Yes, photo booth left on my machine was version 2.0.1
    and will NOT run under Tiger
    1) first, using Finder, locate your "photo booth" and rename it [or delete it]
    2) using Os X tiger cd 1 find the "Install Bundled software only" icon
    3) Pick "custom install", then expand the "Bundled Applications" until you see Photo Booth
    4) click ALL of them off, except leave Photo Booth flagged [when I pick it, office 2004 TEST drive turns on too, unflag that too]
    5) Press the Upgrade button [don't select easy install, as that will install EVERYTHING]
    6) Photo Booth shows in your Dock and it works

  • Photos doesn't shows up on webpage, prompt "Image not available"

    photos can't show on ebay webpage, instead a black box with the word "Image not available". Tried to reinstall Firefox, but problem is still the same.
    Error console shows:-
    Error: uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIDOMLocation.hostname]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: chrome://searchshield/content/avgls-active.js :: avg_ls_nodeinserted :: line 85" data: no]
    == URL of affected sites ==
    http://cgi.ebay.com/Rare-Pyn-Up-1-48-PB4Y-2-Privateer-Nose-Art-Decals-/290446723348?cmd=ViewItem&pt=LH_DefaultDomain_0&hash=item439ff94914

    Try to disable or uninstall all AVG extensions and toolbars.
    See [[Troubleshooting extensions and themes]]

  • Folders not showing up in Photos

    I have a few folders that I have selected to be imported into the phone but they do not show up.
    In folders there is nothing but under faces there is everything!
    Anyone else having issue with upgrade to 4 on 3Gs?

    I can't see my photos when I go into the folders, however they can be e-mailed or use MMS. What gives?

  • Wanting to use Photoshop CS6 to open images directly from iPhoto 11. Using OSX10.8.2 and iPhoto 11.  Just installed Photoshop CS6 and want to open images directly from iPhoto.    Before I installed PS I was not able to edit photos in iPhoto 11.  Nothing

    Wanting to use Photoshop CS6 to open images directly from iPhoto 11.
    Using OSX10.8.2 and iPhoto 11.  Just installed Photoshop CS6 and want to open
    images directly from iPhoto.    Before I installed PS I was not able to edit photos
    in iPhoto 11.  Nothing happens when I click on ‘edit‘ it is blank. 
    And now it will not work using Photoshop CS6 either.
    From Help Center I have gone to iPhoto/Preferences/ Advanced and chosen Photoshop CS6  to Edit Photos but then cannot find an 'Open' to click? Perhaps this is the problem?
    When I select a photo in iPhoto and click the Edit button - nothing happens.
    Please advise. Glenys

    This may be of help to you:
    Using Photoshop or Photoshop Elements as Your Editor of Choice in iPhoto.
    1 - select Photoshop or Photoshop Elememts 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  the Saving File preferences should be configured as shown:
    I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Note:  to switch between iPhoto and PS or PSE as the editor of choice Control (right)-click on the thumbnail and select either Edit in iPhoto or Edit in External Editor from the contextual menu. If you use iPhoto to edit more than PSE re-select iPhoto in the iPhoto General preference pane. Then iPhoto will be the default editor and you can use the contextual menu to select PSE for your editor when desired.
    OT

  • Not able to add photo/image to an contact

    Not able to add photo/image to an contact. while croping an image during addtion the contacts app reports "unable to save photo edits.
    Tried clearing data/cache/reboot.. tried even with file manager, google photos app etc...
    Any solutions....??
    Solved!
    Go to Solution.

    You could go for a software repair,see if that helps:
    http://www.sonymobile.com/gb/tools/update-service/
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

Maybe you are looking for

  • How to install Windows 7 Pro 64bit from a Retail DVD

    Good afternoon I have got a Lenovo X201 which unfortunately cannot locate a recovery disc I mtherefore purchased a retail version of Win7 Pro 64 bit and put into my external DVD player to install I changed the boot option to look at the wxternal dvd

  • Aperture does not support Small Raw files from Canon EOS 5D MK II

    Hi, I recently bought a new Canon EOS 5D MK II camera and started shooting on SmallRaw format, but Aperture simply refused to process those files. It only shows a preview of around 3 inches only. I don't know what's wrong either with my OS 10.5.6 or

  • Database Refresh Failed

    Hi All, I am working on a database refresh and it failed with the following errors RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: ===========

  • Cant get more than 400 songs

    Hi, I've been having a problem with my iPod where it crashed iTunes if I tried putting anything on it. Sometimes it would also crash iTunes just by connecting. And in rare occasions it could cause a blue screen of death. I recently got it restored an

  • Will all new macbook pro come with Lion pre-installed?

    I will be purchasing a new MacBook Pro in the next couple of weeks. I presume it will come with OSX Lion pre-installed. I would prefer to have only Snow Leopard installed since I won't be upgrading my other Mac Pro immediately. Will it just be necess