JPanel Scrollable mimic Windows Explorer Icon View

I am developing an image viewer application, and I want my thumbnail image JPanel to mimic MS Windows Explorer's layout in icon view. However, I have not been able to accomplish this. I have searched high and low, finding many others with my same problem, but no solution. To see exactly what I want to mimic, go to Windows Explorer and take a look at Icon View.
Windows Explorer seems to be using a type of FlowLayout, and the icons get wrapped to the next line. If the number of icons exceeds the viewable space, the vertical scrollbar appears. Note that there is no horizontal scrolling; only vertical scrolling with the FlowLayout. If the user adjusts the SplitPane, then the layout adjusts the scrolling and icons accordingly.
============================================================
QUESTION: How can I get my JPanel to mimic Windows Explorer Icon View?
============================================================
10 Dukes to anyone who can get this to mimic Windows Explorer. Ideally the solution would not be too involved.
P.S. I think it stinks that JPanel, by design, does not implement Scrollable Interface. Even then, it doesn't work the way I want it to with my FlowLayout and only vertical scrolling. Does anyone understand why it doesn't implement Scrollable, like JTextArea, JEditorPane, etc. do?
Thanks
Wayne

Thanks camickr! I didn't try your layout manager since I managed to find another one which seems to do the trick as well. Here is the link from which I found it:
http://groups.google.com/groups?selm=c43ovb%242db505%241%40ID-76750.news.uni-berlin.de&output=gplain
It seems that in the source there is a small bug which is easy to fix. I think the boolean parameters in minimumLayoutSize and preferredLayoutSize should be changed.
So in minimumLayoutSize():
return computeSize(target, true);and in preferredLayoutSize():
return computeSize(target, false);After that fix, it worked just fine for me.
Here is the complete source (author Babu Kalakrishnan):
import java.awt.*;
  * A modified version of FlowLayout that allows containers using this
  * Layout to behave in a reasonable manner when placed inside a
  * JScrollPane
  * @author Babu Kalakrishnan
public class ModifiedFlowLayout extends FlowLayout
     public ModifiedFlowLayout()
         super();
     public ModifiedFlowLayout(int align)
         super(align);
     public ModifiedFlowLayout(int align, int hgap, int vgap)
         super(align, hgap, vgap);
     public Dimension minimumLayoutSize(Container target)
         return computeSize(target, false);
     public Dimension preferredLayoutSize(Container target)
         return computeSize(target, true);
     private Dimension computeSize(Container target, boolean minimum)
         synchronized (target.getTreeLock())
             int hgap = getHgap();
             int vgap = getVgap();
             int w = target.getWidth();
         // Let this behave like a regular FlowLayout (single row)
         // if the container hasn't been assigned any size yet     
             if (w == 0)
                 w = Integer.MAX_VALUE;
             Insets insets = target.getInsets();
             if (insets == null)
                 insets = new Insets(0, 0, 0, 0);
             int reqdWidth = 0;
             int maxwidth = w - (insets.left + insets.right + hgap * 2);
             int n = target.getComponentCount();
             int x = 0;
             int y = insets.top;
             int rowHeight = 0;
             for (int i = 0; i < n; i++)
                 Component c = target.getComponent(i);
                 if (c.isVisible())
                     Dimension d =
                         minimum ? c.getMinimumSize() :      
                      c.getPreferredSize();
                     if ((x == 0) || ((x + d.width) <= maxwidth))
                         if (x > 0)
                             x += hgap;
                         x += d.width;
                         rowHeight = Math.max(rowHeight, d.height);
                     } else
                         x = d.width;
                         y += vgap + rowHeight;
                         rowHeight = d.height;
                     reqdWidth = Math.max(reqdWidth, x);
             y += rowHeight;
             return new Dimension(reqdWidth+insets.left+insets.right, y);
}

Similar Messages

  • Windows Explorer Thumbnail View

    Hi guys
    I am making a photo gallery system software in the main window I want to show images in thumbnail view. however I see people that they use JButton to show each thumbnail I think that's unconventional so I am trying to create something like Windows Explorer thumbnail view but I don't know how do it. I have a class named thumbnail which will get an image and resize it to thumbnail and put a border around it but i don't know where to put that thumbnail. I think JTable is a good place since you can select the cells but then again i don't know how to add an image to a cell
    thank you

    Thankx actually I kinda got it working however there are two problems
    1-how can i add images dynamiclly I mean I want start with zero row and and whenever someone imports an image to system I want to show the thumnanil of that in the table. meaning adding that image to next avaialbe cell
    2-if i have 6 column and 10 rows that's 60 cells but imagine if i have added only 51 images added so that take 51 cells and 9 cells are empty which a row and half and the system has option to select all thumbnail (like explorer) but the problem is it will even select the cells that are empty since it is a table
    if someone know how to do this or give me a hint i appreciate it
    thanks

  • How to enable Windows Explorer Thumbnail Viewer to display PSD files?

    Hi,
    I am using Adobe Photoshop Extended CS5 (64-Bit) on Microsoft Windows 7 Ultimate (64-Bit).
    When using Windows Explorer to browse through file folders, I notice that the Photoshop files (.psd) do not display a thumbnail preview, like other graphic files do. How can I enable the Windows Explorer Thumbnail Viewer to display PSD files?
    Thanks for your help,
    The MiJiT

    Adobe software doesn't provide a 64 bit codec and as far as I know there is no freeware to do it on x64 systems.
    There are two pay-for applications that I know of:  Mystic Thumbs and Ardfry's PSD codec
    http://mysticcoder.net/mysticthumbs.html
    http://www.ardfry.com/
    -Noel

  • Finder Window in icon view problem

    Ok, for example, finder window has enough folders that I have to scroll down quite a bit to reach mid page. Then I open a folder at mid page and open one of the folders I find in there. I then click twice to go back to the original window. But instead of revealing itself in mid page, so I can go on to the next folder, it opens at the top of the page and I have to scroll all the way down to where I was, sometimes losing track of where I was. This is something that did not happen in Jaguar or Panther! Anyone have a fix for this? I need to use icon view for my work.

    crebius, can't you just click the red close window
    buttons until you get back to the one that is open at
    half page?
    Eh, I don't use a different window for every layer of a folder i get into. Just one window. But I've been playing with view options (Tiger) and figured out a workaround. I clicked on 'Show icon preview' and 'Keep arranged by' (name - for me).
    Thanks for trying to help.

  • Windows Explorer Thumbnail View and 7D Mark II RAW Files

    I am running latest version of PhotoShop CC on Windows 8.1 Toshiba laptop. Prior to purchasing my Canon 7D Mark II, I could view Canon RAW files as photo thumbnails in Windows Explorer. Since upgrading cameras, I get generic thumbnails when I view a folder full of RAW files from the 7D Mark II. Is there a fix? I use Irfanview as a general file viewer and Adobe Camera RAW to open files in PhotoShop, but I seriously miss the ability to find a specific photo quickly in Windows Explorer.

    Hi billyray1usa ,
    may I suggest that you try to use Bridge to view and navigate between the thumbnails with the possibility of having the large preview of each image in more than Adobe Bridge updates with PS and Camera Raw.

  • How can I access the iMessages history on my ipad, either using my ipad itself or via itunes or windows explorer to view the files on my desktop PC?

    I have a long stream of iMessages on my iPad from messaging friends, and I can view messages by scrolling to the top of the screen and clicking 'Load Earlier Messages' and it loads about 20 or so previous messages. But where are these messages being stored and how can I view them? I occassionally need to access messages from a while back but I don't want to keep scrolling up and loading from my current point one click at a time. How can I view these iPad files?
    Thanks a lot

    The only way to do it is the way you are doing it now. You can take screen shots of them as you are viewing them and edit those together to keep on your PC if you want to do it that way.

  • No TITLEs displayed in Detail view in Windows Explorer

    The following pertains to Windows 7 Professional 64-bit vs. Windows XP Professional 32-bit.
    In Windows Explorer, when viewing the file list in 'detail' view, you can also add the 'title' attribute for display by right-clicking the attribute bar above the file list.  However, in Windows 7, no titles are displayed for PDF files that have this
    information which were displayed under WinXP.  Also, if the file properties are displayed, the PDF tab is gone.
    I cannot find any info on how to re-enable this feature.  If XP-style PDF title attributes have been removed or disabled in Windows 7 Explorer, it is a MAJOR omission for our corporation.  We have a massive collection of corporate
    and 3rd party PDF documents where interdocument links will not work if the filename is changed.  The TITLE attribute in detail view is used to display the document title, not the filename.  If any other view is used, e.g. icon view, the bubble
    popup displays the title in WinXP, but this again doesn't work in Win7.  Without the title attribute working as it does in XP, we may have to forego moving from XP to Windows 7 on our desktops (we're skipping Vista, of course), and find an alternate
    desktop OS (Linux?) that still supports this feature.
    For example, every IBM software/hardware PDF manual has a cryptic filename which does not reflect anything about the title of the manual.  These filenames support inter-manual links, so renaming the PDF manuals to reflect the title is absolutely
    not an option.  However, the PDF attributes of the file do contain the title, and these were visible under both Properties (the PDF tab), and the TITLE column in Detail view under WinXP.  However, both of these features are gone in Windows 7,
    and to say it's a PITA is a gross understatement.
    We want (need) this feature back in Windows 7.  I'd call it a show-stopper in moving to Windows 7 if this isn't fixed, and soon!
    Btw, Microsoft, we have over 45,000 desktops currently running WinXP, plus 100's of Win2003/Win2008 servers in our corp.  Are you listening?

    Here's what seems to be going on.
    As part of the Adobe Reader download, Adobe provides a shell extension called pdfshell.dll.  On 32-bit Windows XP, you'll find it in the C:\Program Files\Common Files\Adobe\Acrobat\ActiveX folder.  On 64-bit Windows 7, you'll find it in the C:\Program
    Files (x86)\Common Files\Adobe\Acrobat\ActiveX folder.  But, on either system, it's a 32-bit shell extension.  On 64-bit Windows 7, Windows Explorer will only run as a 64-bit program.  According to numerous web forum posters, this was a change
    between the last "beta" and the "RC" version of 64-bit Windows 7.  There is a 32-bit version of Windows Explorer in the C:\Windows\SysWOW64 folder, but if you try to run it you get another instance of 64-bit Explorer.  The (first)
    problem is that 64-bit Windows Explorer won't load a 32-bit shell extension.
    You can see the 32-bit pdfshell.dll "working" on 64-bit Windows 7 in the File Open dialog of any 32-bit application (such as Adobe Reader).  To see this, first open an Explorer window and navigate to a folder that has some PDF files like your
    IBM manual.  Right click on the file and choose Properties.  Look at the tabs in the dialog and note that there is no PDF tab.  Now, OK out of the Properties dialog and double-click on the same file to open it in Adobe Reader.  Now press
    Ctrl-O or choose File Open to get the File Open dialog.  Navigate to the same folder, right click on the same file and choose Properties.  Look at the tabs and see that you now have the PDF tab that was missing in Explorer.  In that tab, you
    can see the Title that pdfshell.dll has pulled from the file.  This works because 32-bit Adobe Reader has loaded a 32-bit common file dialog which *will* load a 32-bit shell extension.
    But you're not out of the woods yet.  The common file dialog has many of the features of Explorer, and you can select Details view and right-click on the column headers to choose to show a Title column.  This will show Titles for several document
    types, but not for PDF files.  This isn't a 64-bit versus 32-bit issues, it's a Windows XP versus Vista and later issue.  What Adobe implemented in pdfshell.dll is an ActiveX interface called IColumnProvider, and Microsoft dropped support for this
    interface in Windows Vista (replacing it with something called the Property System).  You can glance at http://msdn.microsoft.com/en-us/library/bb776831%28VS.85%29.aspx and just read the first line after the page header:  "[This feature is supported
    only under Windows XP or earlier. ]".  So, the PDF Title column feature didn't go away with 64-bit Windows 7, it went away with 32-bit Windows Vista.
    The best solution to this problem would be for Adobe to update pdfshell.dll to provide the Property System interface that Vista and Windows 7 require.  See http://msdn.microsoft.com/en-us/library/bb776859%28v=VS.85%29.aspx if you care for the details. 
    Then Adobe should release 32-bit and 64-bit versions of pdfshell.dll implementing the new interface, and we'd get both the PDF tab and Explorer columns like Title for PDF files in 32-bit and 64-bit versions of Windows 7 (and Vista).
    Alternatively, some enterprising developer could presumably write a shim that would present the Property System interface on its upper side (callable by Explorer) and the IColumnProvider interface on its lower side (capable of calling existing versions of
    pdfshell.dll).  It would need to deal with interfacing between 64-bit Explorer and a 32-bit pdfshell.dll ... I assume that this is possible somehow, but I don't know.
    A kludge that might be (barely?) usable would be to use Windows XP Mode to run a 32-bit Windows XP Explorer and use that to navigate using the PDF Titles and possibly launch them.  Perhaps you could come up with a way to make Windows XP Mode's Explorer
    launch Adobe Reader in the host 64-bit Windows 7 OS.
    A third-party solution might be xplorer^2 (http://www.zabkat.com/index.htm) which claims to support the interface that Microsoft dropped in Vista (http://www.zabkat.com/blog/07Feb10-column-handlers-revived.htm).  I know nothing about this program, I
    just found it while Googling for "column handler".  It says that it has a 21 day trial, is available in 32-bit and 64-bit versions and costs $29.95 (presumably US dollars).  There is a "lite" version that is free for non-commercial
    use ... all of this info is just repeated from their web pages, I have no connection to the company and only know what I read ... I haven't tried it.
    It's worth noting that life isn't perfect with pdfshell.dll and 32-bit Windows XP either, depending on your PDF files.  Some documents don't have Titles (depending, partly, on what software produced them).  Some have Titles long enough that they
    won't display in an Explorer column (though they show up truncated on the status line and un-truncated in a tooltip).  I have a file called "GEARaspi Security Information.pdf" (http://www.gearsoftware.com/support/GEARAspi%20Security%20Information.pdf)
    that has no Title, created by OpenOffice.org 2.4 according to its PDF tab.  I have another called "319124.pdf" (http://www.intel.com/assets/pdf/whitepaper/319124.pdf) which has the rather wordy title "Intel®  Extreme Memory Profile
    (Intel® XMP) supporting Intel® X48 Express Chipset with DDR3 White Paper".  Despite having a Title, no Title is displayed in a Title column in Windows Explorer in 32-bit Windows XP, though a truncated version appears in the status bar and
    the tooltip gets the whole thing, wrapping to two lines to do it.  Intel's file was produced with Acrobat PDFMaker 7.0 for Word according to its PDF tab.
    This post is based on what I could figure out, I hope it's helpful (if discouraging ... you won't fix this with a registry hack).

  • PSE9: No thumbnail images of PSD files in Windows Explorer

    Win7 x64 SP1
    PSE 9.0.3
    When using Windows Explorer to view a directory, *.psd files are shown with a generic PSE icon rather than as thumbnail images.  PSE9 is set as the default program for *.psd files.
    Is there any way to get thumbnail images to display in Explorer?
    Ken

    Yeah, I've heard that too, but I'm not buying that excuse:
    It's not MicroSoft's responsibility for making someone's thumbnails work.  MS provides the documentation (I assume) for developers to write code for a DLL to display thumbnails in Windows Explorer.  It's up to the developer to do it.
    Other software programs which use a proprietary image format do supply those DLLs.  Three examples that I use on my PC are:
        a.  Corel's CorelDraw and PhotoPaint install the appropriate shell DLLs to display their native files as thumbnails.
        b.  Xara also provides a 64-bit DLL which, when manually registered, displays their native file format as thumbnails.
        c.  The open-source Paint.Net group registers the DLL to display their native format as thumbnails.
    God knows that those three, and especially the Paint.Net group, don't have the hundreds of millions of dollars and hundreds of developers that Adobe does, yet those three chose to do the right thing and provide what I consider to be an essential feature.
    Apparently this has been going on for a long time -- certainly long enough for Adobe to write the darned code, if only Adobe had the will to do it.
    PSE9 is the only Adobe product I currently have purchased and this issue just sticks in my craw.  Other than that, I've got nothing but praise for the program.
    Ken

  • I blog on TypePad using Word 2007 and documents freeze when I'm looking at them in Windows explorer; why do I get the error message that Mozilla is looking for a script?

    I have now had two error messages - the first one looked for this script: Script: resource://gre/modules/XPCOMUtils.jsm:258. The second one (today) looked for Script: resource://gre/components/nsPrompter.js:68.
    I have reset my word template, also reset word registry for data and options (as per Microsoft's help pages) for both those 'fixes' there was an initial improvement, but the problem happened again after I reposted on my blog today and then went to Windows explorer to view my files. It seems to 'seize' as I select a file, so that the preview does not appear (for up to 15-20mins).
    I see on the internet using the second script as a search just now that one other has had a similar problem and one also since Mozilla 4 upgrade. My problems have also been pretty much since I upgraded.
    It happens (apart from my fixes) every time I go to look at a word document via Windows explorer. Excel files are less affected.
    One web suggestion is to clear the cache, but I am hesitant to lose all my passwords unless I have to.

    I still have the problem although I uninstalled Mozilla (clearing the cache didn't work and neither did Word diagnostics), so have ended up thinking it could be Norton (the manual update worked x1) or Windows. Today I found an answer: disable the preview pane in Windows Explorer - there's a history of problems with this view.

  • Finder does not show icons view (it only shows list, column

    Since I updated my macbook pro retina late 2013 to yosemite, I cannot see any finder folder window in icon view. It only shows list, column and cover flow view. Not something important, but if there is something wrong, I want to know!
    +also since i bought it last December, there is this download bar (which shows the download procedure) on the downloads folder at the dock, stuck there forever. It looks like I am still downloading something, but opening the folder everything is done. It goes away after 2-3 restarts.
    can anyone answer if this is a software issue or a hardware?
    thank you in advance

    These files are EPS files not image files. They have a TIF or PICT preview inside the file, I believe in the resource or data fork of the file. The file extension is EPS, and I cannot change that, just type the letters. The actual extension, the 4 digit one, that is invisible is the one that is important. In the case of EPS the actual extension is EPSF or EPSI.
    Just to try the fix I changed the name and it did try to make a preview, but it came up with nothing. It was blank in column view. The OS still reads it as an EPS regardless of the change in file extension.
    Anyone have some answer that involves a command line, I think that is really going to be the only thing that solves this one.
    Power Mac G5 1.6GHz Single   Mac OS X (10.4.2)  
    Power Mac G5 1.6GHz Single   Mac OS X (10.4.2)  
    Power Mac G5 1.6GHz Single   Mac OS X (10.4.2)  

  • IOS 8.2 Error of the Day on iPhone 5 - Multiple Drives in Windows Explorer

    iOS 8.2 was recently installed on my Apple Certified iPhone 5. As is Apple's custom, a brand new problem has appeared with 8.2, which I've never seen in all the previous, inadequate versions of iOS 8.x running on my iPhone 5:  In Windows Explorer while viewing the phone's camera folder, multiple, unnamed, mysterious, unnecessary and confusing drives appear. In addition to the photos I've transferred off the phone. Who has a fix or workaround for this new problem? Thank you.
    Apple had graciously and completely ineffectively replaced my previous iPhone 5 which was in excellent condition, because it didn't want to own-up to the many problems iOS 8.x has caused with the iPhone 5, including mine. So Apple continues to ignore its customers and further alienates them to their own detriment.

    theonlycutmaster wrote:
    Thanks Ralph. For sure already tried this (and I'm sure bgl_iMac does also) but doesn't change. Seems this is a bug in iOS8 with Photos store with pre-applied filters.
    WHen asking a question in these forum it saves time and is more helpful if you describe those troubleshooting steps you have already taken. Since you didn't mention the reset in your original post I provided the first troubleshooting step that seemed appropriate.

  • Windows Explorer hangs and refreshes

    I have a new Thinkpad Yoga S1 and notice that every now and again when I click Windows Explorer icon from system tray it hangs and then the whole desktop blanks and then refreshes.  I really cant identify what is causing this or even a pattern as to when it happens.  Anyone else had the same experience?

    Hi Steve Taylor,
    Thank you for replying.
    Run System File Checker (CFS) to check your files
    Use System File Checker to scan your PC for missing or corrupt files. To do this, follow these steps:
    1. Click Start, and then type cmd in the Search box. 
    2. In the results area, right-click cmd.exe, and then click Run as administrator. You may be prompted to type the password for an administrator account.
    3. Click Continue if you are the administrator or type the administrator password and then, click Continue.
    4. At the command prompt, type Sfc /scannow and then press ENTER.
    The scan may take some time, so be patient. Windows will repair any corrupted or missing files that are found. If information from the installation CD is needed to repair the problem, you may be prompted to insert your Windows CD.
    Test your system's RAM memory
    Sometimes faulty RAM (Random-Access Memory) can cause intermittent problems within Windows. Use the Windows Memory Diagnostics Tool by clicking Start, type Memory Diagnostics and select the result in the list. When the Windows Memory Diagnostics Tool window appears, choose Restart now and check for problems (recommended).
    Hope this helps!
    Best regards,
    Hemanth Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • When going to the official site, covering the Hoover Dam bypass bridge, I cannot bring up the site camera to view construction activities but I can do this successfully with Windows Explorer 8, following the instructions by clicking on the appropriate ic

    When I attempt to view the construction of the new Hoover Dam bypass bridge, to do so, you must click on the icon (while holding down the CTRL key) on the site camera to bring the camera up. This will not work with my latest version of Firefox but I can do this with Microsoft's Windows Explorer 8.
    == This happened ==
    Every time Firefox opened
    == After Firefox recently installed

    Works for me on Firefox 3.6.6 - hold Ctrl and click on the Web Cam icon on the left side of this page - http://www.hooverdambypass.org/ - then hold Ctrl and click on the '''Click Here''' hyperlink in the popup window.
    It crashed Firefox once for me, but after I re-opened Firefox it worked fine for 5 minutes as I tried the panning control and viewed both the Nevada and Arizona side cameras. The non-Java view worked for me too.

  • Windows explorer is not displaying thumbnails ( as it was earlier) instead it is showing default program icon

    Hi have been reading the blog for two hours now and I am no closer to a "fix" for this for  our network users. All users on the SOE build now cannot view  or preview image files in windows explorer it is showing just the default icon for
    all images files in a folder in Windows Explorer. Is ther a permanent fix to this problem that we can add to out SOE build or to the a windows update that Mircosoft has released?

    Hi,
    Here're two settings we need to check:
    Control Panel\All Control Panel Items\Folder Options, under "View" tab, untick "Always show icons, never thumbnails "
    Control Panel\All Control Panel Items\System, in the left panel, click "Advanced System Settings", then under "Performance" tab, click "Settings", under "Visual Effects" tab\Custom, find "Show thumbnails instead of icons", tick it.
    Yolanda Zhu
    TechNet Community Support

  • AI CS6 thumbnail views in windows explorer

    Does anyone at Adobe think it might be a good idea to enable AI CS6 thumbnail views in windows explorer again, uh, I mean, we're GRAPHICS DESIGNERS, and we, uh, need to browse IMAGE FILES in AI and PS. I know there are $19.95 third-party apps out there, but we're paying good money (thousands of $ over the next few decades) to get the BEST SOFTWARE ON EARTH, neh? I thought my brand new Windows 7 machine was bro-ken when all I saw was dumb-icons boo...

    Lol.  Adobe has known about this stupid problem for about 4 years.  Since Vista x64 started gaining popularity.  Acrobat 8.x was the first version where people really started scratching their heads wondering why & when the problem would be fixed.  Then came Acrobat 9.   And now "X".  Still not fixed, well, I'm sure next year we'll have Acrobat 11, so keep holding your breath.

Maybe you are looking for

  • Need help in connecting to JNDI with JSP

    Hi all I am working on LDAP with JNDI, i need to use JSP for front end screens. My problem is like this.. I am not finding a way to pass a user name and password from my jsp file, through JNDI and check for authentication in an LDAP server. I am usin

  • Quotation Marks and Validation

    I'm working with an XHTML transitional document. I read on another forum that it is not necessary to use " for quotation marks in regular html, and that it will validate without them. So I pasted text from am MS Word document with several quotation m

  • To update BIOS or not to update?

    Hello, my current desktop is the Compaq Presario SR5413WM. I've recently begun upgrading some of its components, one of which will be the processor. I'm upgrading from the  AMD Athlon 64 LE-1640 Lima 2.7GHz Socket AM2 45W to the  AMD Athlon 64 X2 480

  • Cannot set printing defaults on 8500 A909g Officejet Pro Wireless

    After a whole year, HP has STILL NOT told us how to set printing defaults for the OfficeJet Pro 8500 Wireless A909g all-in-one so that the default settings really stick for everything.  For example, how to make the machine print everything Back-to-Fr

  • Recently played playlist missing songs

    Running iTunes 12.0.1 on a macbook pro running Yosemite, syncing manually to an iPhone 6 with iOS 6, Music Match turned on. When I listen to music on the iPhone, then sync, not all the songs I listened to show up in the Recently Played playlist on th