Downloaded Library Content still not showing up

Okay, so in the middle of a huge project I was watching a online tutorial on Encore CS6 about building a dvd menu. Well, the guy goes to his library and has all kinds of options for pre-made menus and buttons etc. etc. These buttons are missing for me.
I do some research and find out that for some stupid reason without letting you know Adobe requires you to download the button and(CS6 Functional Content)premade menus apart from my original CS6 download.  Okay fine. I download the 1.1 gb file, install it, restart Encore, pull up my project and guess what? Still no buttons.
Am I missing something? I'm running OS 10.8.2 Mountain Lion.
There are a few ridiculous menu templates in there, but unless I want to let my client pull up a baby crib themed menu at their conference I don't know what else to do. And I can't build a blank menu either because I'm missing the buttons.
What I'm wondering is what exactly did I download and install?
If anyone can help it would be great, thanks in advance.

Adobe has handled functional content various ways, and it has often been optional downloads. But not the last couple versions or so. But this round has been a real mess. But the solution is available.
The step you have completed is installing the "functional content" and includes components in additional to the base Encore library for Encore and Premiere Pro.
On the page you probably used for the download, toward the bottom was the additional material you want.
It is probably easier to get it from this page:
http://helpx.adobe.com/encore/using/download-library-content.html

Similar Messages

  • I transferred itunes library from old PC to new PC. The content all shows when I launch iTunes on the new PC now. The previous content does not show in iTunes but folder still looks like it is on hard drive on new PC. Suggestions on how to properly merge?

    I transferred itunes library from old PC to new PC. The content all shows when I launch iTunes on the new PC now. The previous content does not show in iTunes but folder still looks like it is on hard drive on new PC. Suggestions on how to properly merge?

    Before you connect any device to a new library go to the Devices tab of the the preferences panel via Edit > Preferences (Windows) or iTunes > Preferences (Mac) and ensure the box next to Prevent iPods, iPhones, and iPads from syncing automatically is ticked. You can now safely connect the device to your computer without the danger of media being automatically deleted or overwritten.
    To get all your content off your connect your iPad to your new computer.
    Then use a 3rd party piece of software to transfer your content
    I have found Senuti useful but there are others listed in the article I linked to in a previous post.
    https://discussions.apple.com/docs/DOC-3991
    That will let you transfer your non purchased content
    For Purchased content log in to iTunes on the new computer
    In Itunes Store click on Purchased under the Quick Links section on the right.
    Download any music by clicking on the cloud button

  • I purchased and in-app download and have a receipt but it is still not showing, so where is it?

    I purchased an in-app download for Little generals and have a receipt, but it is still not showing up. Ive tried all the usual sign in then back out...shutting on and off but none of this works. The file just seems that it does not exist even though they have already charged my credit card. So, WHAT GIVES???
    PS: And the people on the other end of the phone line seem to be completly clueless about their own products..

    If you don't have the Firefox button, you're using the classic view. To restore the new view of Firefox (Changed in Version 4):
    * View > Toolbars > Menubar [Uncheck]
    In Firefox 6 you can use this to clear your history/other offline content:
    Click on the Firefox button on top left part of your browser:
    * History > Clear Recent History
    There you can select what you want to clear.
    If you want to see the menu bar you can press alt on your keyboard so you can see file/view/...
    Also for activating it to always be there follow this (Classic view of Firefox):
    * Firefox > Options > Menu Bar
    Don't forget to hit the 'Solved it' button if this solved your problem so the topic will be closed.

  • To download file but still the Save Dialog box still not show? Please help.

    Hi All,
    Below is my full code to download file but still the Save Dialog box still not show..
    <%@ taglib prefix="cs" uri="futuretense_cs/ftcs1_0.tld"
    %><%@ taglib prefix="asset" uri="futuretense_cs/asset.tld"
    %><%@ taglib prefix="assetset" uri="futuretense_cs/assetset.tld"
    %><%@ taglib prefix="commercecontext" uri="futuretense_cs/commercecontext.tld"
    %><%@ taglib prefix="ics" uri="futuretense_cs/ics.tld"
    %><%@ taglib prefix="listobject" uri="futuretense_cs/listobject.tld"
    %><%@ taglib prefix="render" uri="futuretense_cs/render.tld"
    %><%@ taglib prefix="siteplan" uri="futuretense_cs/siteplan.tld"
    %><%@ taglib prefix="searchstate" uri="futuretense_cs/searchstate.tld"
    %><%@ taglib prefix="locale" uri="futuretense_cs/locale1.tld"
    %><%@ taglib prefix="dateformat" uri="futuretense_cs/dateformat.tld"
    %><%@ taglib prefix="blobservice" uri="futuretense_cs/blobservice.tld"
    %><%@ taglib prefix="satellite" uri="futuretense_cs/satellite.tld"     
    %><%@ taglib prefix="date" uri="futuretense_cs/date.tld"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %>
    <%@ page language="java" contentType="text/html;charset=UTF-8" %>
    <%@ page import="java.io.File" %>
    <%@ page import="java.io.OutputStream" %>
    <%@ page import="java.io.FileInputStream" %>
    <cs:ftcs><%-- france/test_template
    INPUT
    OUTPUT
    --%>
    <%-- Record dependencies for the Template --%>
    <ics:if condition='<%=ics.GetVar("tid")!=null%>'><ics:then><render:logdep cid='<%=ics.GetVar("tid")%>' c="Template"/></ics:then></ics:if>
    <%
    String fileToFind = request.getParameter("file");
    if(fileToFind == null) return;
    File fname = new File(fileToFind);
    System.out.println("Save As: "+fname.getName() );
    if(!fname.exists()) return;
    FileInputStream istr = null;
    response.setContentType("application/octet-stream;charset=ISO-8859-1");
    response.setHeader("Content-Disposition", "attachment; filename=\"" + fname.getName() + "\";");
    try {
    istr = new FileInputStream(fname);
    int curByte=-1;
    while( (curByte=istr.read()) !=-1){
    out.write(curByte);
    out.flush();
    } catch(Exception ex){
    ex.printStackTrace(System.out);
    } finally{
    try {
    if(istr!=null) istr.close();
    } catch(Exception ex){
    System.out.println("Major Error Releasing Streams: "+ex.toString());
    try {
    response.flushBuffer();
    } catch(Exception ex){
    System.out.println("Error flushing the Response: "+ex.toString());
    %>
    </cs:ftcs>
    Can anybody help me with this??? What is lacking...
    Thank you in advance.

    Put this code into a servlet rather than a JSP.
    JSP are for returning text based HTML pages. It adds extra carriage returns into the response that will corrupt the file, and prevent the dialog showing up.
    This code is much better off being in a servlet
    If you are using a FileInputStream, you should be using a ServletOutputStream rather than the JSP writer: response.getOutputStream()
    When dealing with file input in a JSP/Servlet you should use the methods of ServletContext. getRealPath() turns a website relative file into a real location on disk. getResourceAsStream() opens the file for you. getResourceAsStream() is more reliable as it will work even if the web app is deployed in a packed WAR.
    Cheers,
    evnafets

  • HT203167 I had to replace my harddrive on my IMAC and downloads from ITUNES do not show up. How do I restore my previous library?

    I had to replace my harddrive on my IMAC and downloads from ITUNES do not show up. How do I restore my previous library?

    It has always been very basic to always maintain a backup copy of your computer for this very occasion.  Use your backup copy to put everything back.
    If for some reason you have failed to maintain a backup copy, not good, then you can redownload some itunes purchases in some countries:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I rented Argo in iTunes on my iPad, it downloaded, yet it does not show up in my library.

    I rented Argo in iTunes on my iPad, it downloaded, yet it does not show up in my library. I have the most updated version of iTunes on my laptop and Apple TV. I logged onto my computer (Windows) and tried renting it again, iTunes store told me 'you have already rented this movie'. Is there an issue with rentals today? Help!

    Roaminggnome - Thanks for your reply, you made my day! This is my first time renting a video, so I didn't realize you had to go into a different app to watch it. Enjoy the rest of your weekend

  • I have downloaded iTunes 11.1 but iTunes radio is still not showing up, why is this happening?

    I have downloaded iTunes 11.1 but iTunes radio is still not showing up, why is this happening?

    Hello there, jrodxo125.
    The following Knowledge Base article provides some great information about iTunes Radio:
    About iTunes Radio
    http://support.apple.com/kb/HT5848
    Keep in mind it is currently available only in the US. Additionally:
    To use iTunes Radio, you must have iOS 7 or OS X Lion v10.7 or later, iTunes 11.1, or Apple TV 6.0 or later installed on your device or computer as well as an Apple ID for use in the iTunes Store.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • Istalling third party instruments.. i have tried to go to application support and putting them into the sampler but they are still not showing up.. can someone help me

    istalling third party instruments.. i have tried to go to application support and putting them into the sampler but they are still not showing up.. can someone help me

    Hi
    So these are EXS24 Sampler Instruments?
    If yes... the .exs Instrument files need to go in
    Library:Application Support:Logic:Sampler Instruments
    Or
    <User>:Library:Application Support:Logic:Sampler Instruments
    CCT

  • Glossary Tab Content is not Showing in .chm on Windows 2008

    We just discovered that our Glossary content is not showing in the our compiled .chm help files on Windows 2008 64 bit.
    We made sure that the HHActiveX.dll was on the machine and registered it, but it still does not display the content on Windows 2008 64 bit machines.  We did the same procedure on Windows 2003 and the Glossary content is now displayed. It also seems to work on Windows 2008 32 bit, so I assume that this is a 64 bit issue. Is this a known issue? Is there a workaround?
    We are currently using RoboHelp 8 (Technical Communication Suite 2) to generate the .chm files.
    Any information would be very much appreciated.
    Thanks,
    Mack

    Mack. I found another post that suggested there was an issue with the HHACTIVEX.DLL on Win 64 PCs. The only solution offered was to contact Adobe Support
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • "Library" view does not show ALL photos

    My "Library" view is not showing me the last 2 rolls I imported. If I click on the specific year views, I can see the photos, but I expect all photos are displayed in the "Library" view.
    While still running iPhoto 5, I imported a roll of images from disk that included photos taken at the end of Dec 2005 and in Jan 2006. These are the photos that do not show in the "Library" view. This was happening with iPhoto 5 and is still happening with iPhoto 6.
    Any suggestions for getting all photos to shwo in the "Library" view ?
    Thanks,
    Eliot

    Thanks -- I figured out my problem...
    Since iPhoto now seems to group items into "rolls", I had imported images from several different dates. The first image was from Sep'05, so it placed ALL the images imported, even those from Jan'06, with the Sep'05 photo in the middle of of my "Library" view.
    Is there a way to have the "Library" view sort in date order instead of by imported roll ?
    Thanks,
    Eliot

  • How should i save a mp3 song so that i can add to itune library? i keep coping to library but its not showing up

    how to save mp3 song and then transfer to itune library? i keep coping to library but its not showing up

    Download it to your computer and make sure you know where the file is.
    Right-click the file, choose Properties and look at the General tab. Make sure the "Type of file" is "MPEG Layer 3 audio file" and that the "Size" is at least several MB.
    Are we good so far?
    If so, find your Automatically Add to iTunes folder (which is inside the iTunes Media folder) and drag your MP3 into it.

  • HT1386 There are songs in my library that do not show up on the device after syncing

    There are songs in my library that do not show up on my ipod after syncing.
    Why would this happen ?

    Do they play in iTunes on the computer?
    Are they from a different source or format that the ones that do sync?

  • I just got my iPod touch, I updated m iTunes and my iPod is still not showing up on iTunes, its giving me the iPod can't be used because the required software is not installed even though my iTunes is up to date

    I just got my iPod touch, I updated my iTunes and my iPod is still not showing up in iTunes. It is telling me the required software is not installed even though my iTunes is up to date

    http://support.apple.com/kb/TS1369
    There have been some problems accessing pages on the Apple web site.  If the hyperlink gives you a "We're sorry" message, try again.

  • Document content does not show up on screen.  Only a blank, gray page.

    When I open an adobe document, the contents do not show on screen.  Only a blank gray page.  How can I fix this?

    Hi 89r0z62cap,
    It sounds as though that PDF was created from a scanned image, and you have the "Show Large Images" option deselected. Try this:
    Open the Preferences dialog box (Reader/Acrobat > Preferences on Mac OS; File > Preferences on Windows).
    Click Page Display and make sure that Show Large Images is selected under Page Content and Information.
    That should do the trick, but let us know if it doesn't.
    Best,
    Sara

  • I have several albums in my library that do not show the album artwork.  It states it is not available in the iTunes store.  In the past I could copy and past album artwork.

    I have Windows 7 on my laptop and the latest version of iTunes.  I have several albums in my library that do not show the album artwork.  iTunes states that it is not available, even though the album is available on iTunes.  In the past, I could copy album artwork and then paste it on my albums in iTunes.  In the lates version of iTunes, a past option does not seem to be available.

    JPGronek,
    There are 3 ways to get custom art into the Artwork box:
    copy/paste
    drag-n-drop
    Add from a file location.
    In various iTunes releases, it is common that one of the the three is broken.  Try one of the others.

Maybe you are looking for

  • 3d Tween inside a movieclip symbol

    Hi everyone, There is probably a quick answer to this.   Here is the situation,  I have an .FLV in one layer of a movieclip symbol and on a different layer have some dynamic text that I am trying to rotate with an obect in the .FLV.   I figured this

  • What is the cpu architeture of solaris version of BPEL bundle, x86 or SPARC

    Hello, I'd like to know what is the cpu architeture of solaris version of BPEL bundle, x86 or SPARC located here: http://download.oracle.com/otn/solaris/ias/1012/as_sun_bpel_101200.cpio The file is more than 400Mb in size, so I need to know before do

  • Clearing non travel P-card transaction through travel

    Hello, I was wonder if any one is using the travel module to clear non-travel P-card transactions (credit card receipts)?  I would like to ask some questions related to this topic.  Although SAPs documentation states that the Travel Module can be use

  • Multiple signatures ios8.2

    Hello friends I wanted to know, is it possible to add 2 signatures on iphone mail (iphone 5 ios 8.2)  to one default email account ? I mean , i have exchange mailbox , that working find , but i want to use more than one default signature to my outgoi

  • The problem of notebook gx710

    Does not start after power-up. The lamp power light, hard drive spin up, the fan runs, and the monitor is constantly dark. Times with the 15th running Windows, but after restarting everything the old way. Help me, please!!!