Can't use the digital booklet

I bought the St. Elsewhere from Gnarls Barkley, which came with a digital booklet. I can see that it's supposed to be a QT movie, but I can't play it. I tried double clicking it from Windows Explorer, and I tried opening QT and accessing the file from there. No luck. Any suggestions?
Thinkpad   Windows XP  

Try the QuickTime forums.
http://discussions.apple.com/forum.jspa?forumID=943

Similar Messages

  • How can I get the digital booklet included with the albums I am purchasing from iTunes directly on my iPad?

    How can I get the digital booklet included with the albums I am purchasing from iTunes directly on my iPad?  My MacBook died about 6 months ago, so now I just have an iPhone and iPad.  I would like to be able to see the Digital Booklet in my iPad when I download the album.  I do not have any other computer to download the booklet to and sync to my iPad.

    Apparently, you have to download the booklet to iTunes on a computer first, fiddle with the file type, then sync it as a book to your iPad. See http://support.apple.com/kb/HT4194 for details.

  • Installed both 10.1.4 and 11.0.08 updates this week and now I can't use the Digital "Sign" document feature.  It's been completely removed.  Need it back. Please help..

    I installed both 10.1.4 and 11.0.08 updates this week and now I can't use the Digital "Sign" document feature.  It's been completely removed.  Need it back. Please help..  Can't sign or add text to any pdf document. Even when security properties allow it. 

    I would remove Reader and repair or reinstall Acrobat.
    Having different major versions can cause some users issues. Reader is not necessary if one has Acrobat installed. Even though Adobe has improved the capability of having both Reader and Acrobat with the same major version level there are still user configurations that have problems with this setup.

  • I can't open the digital booklet with my album!

    I had an album an album on pre-order that was released yesterady. I download it, notice I receive a bonus digital booklet and Adobe Reader can't open it!
    And it costs money to call iTunes support? I think that's pretty low... Any suggesstions?

    Nevermind, I found the answer. I went to View>Show Downloads and there was one download available for the digital booklet.

  • Can't download the digital booklet of a purchased album.

    Hello, guys. I purchased an album on a divice(my iPhone), but when I opened my computer, itunes didn't download the digital booklet automatically. And the digital booklet can't be downloaded at the 'purchased' option. I really need the digital booklet, what should i do? Thanks for your help.

    I tried a few things.  Not sure which one made it work.  These are from an HP standpoint.
    One attempt was going to the Edit toolbar/Preferences/Store button and click Always check for downloads and click the Books box.
    The second was by going to View/Show Sidebar.  Then under Store, doing a left click on the "Purchased" and select "Check for available downloads."
    Hope that helps.

  • If I download an album onto my 5th Gen iPod touch, can i download the digital booklet directly ti my iPod, or do I need to use iTunes on a computer?

    I recently bought the Great Gatsby album on my iPod touch 5th generation (great album by the way, I recommend it to everyone). In iTunes, it said the album came with a digital booklet. After downloading all of the music, I opened iBooks to see if it was there. A message popped up that said 'an error occurred while trying to download Great Gatsby Digital booklet' and I tapped retry. The message popped up again and I reluctantly tapped cancel. My question is, is this error message normal, indicating that I need to use a computer to download it, or should I be able to download digital booklets directly to my iPod touch?

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • PCI 6602:How can I use the digital lines of the board and in the same time to generate pulse train using a counter?

    Hello!
    My problem appeared when I tried to update my code from Traditional NI-DAQ Legacy to DAQmx.
    I am using 2 counters (counter 5 and counter 7)  from PCI-6602, to generate pulse train, and also the Digital I/O lines of the port 0 (the lines form 0 to 7). What I do in my application is that I am starting to generate the pulse train on the output of the 2 counters, and after that I am playing with the state of the digital lines.
    In traditional there was no problem using the counters and the digital lines in the same time, everything was going perfectly, but in DAQmx this is not possible.
    What happens: I start to generate pulse train on the output of the counters,  no errors encountered, but when I try to modify the state of one line of the digital port the generation of the pulse train is stopped. This is happening when I start the task associated to the digital port.
    My question is: it is possible to create a channel on the digital lines without altered the channels created for the counters?
    Another thing what I manage to see using the  "Measurement & Automation Explorer" and Test panels for PCI-6602, basically is the same thing, I generate pulse train on the output of the counter 7 and try to start a task on the digital line, but I get one error :
    "Error -200022 occurred at Test Panel
    Possible Reason(s):
    Measurements: Resource requested by this task has already been reserved by a different task.
    Device: Dev4
    Terminal: PFI8"
    Instead if I use the counter 0 or counter 1 to generate pulse train I don't encounter the same problem.
    Which resources are used by the counters 2 to 7 from the PCI-6602 board and the counters 0 and 1 do not use?
    Thank in advance for any replies!
    Ciprian
    Solved!
    Go to Solution.

    Hello Jordan, thank you for your reply.
    I am sorry but I can not see or run your example, I don't use LabView, I use Visual C++ for developing.
    Here is the code for generating the pulse train:
    GeneratePulseTrain(unsigned long ulCount1, unsigned long ulCount2)
        short nStatus = 0;
        nStatus = DAQmxCreateTask("",&m_taskHandle);
        nStatus = DAQmxCreateCOPulseChanTicks (m_taskHandle, "Dev4/count5", "", NULL, DAQmx_Val_Low, 0.0, ulCount1,ulCount2);
        if( bTriggerMode == true) // if hardware trigger is enabled
            nStatus = DAQmxSetTrigAttribute (m_taskHandle, DAQmx_ArmStartTrig_Type, DAQmx_Val_DigEdge);
            nStatus = DAQmxSetTrigAttribute (m_taskHandle, DAQmx_DigEdge_ArmStartTrig_Edge, DAQmx_Val_Rising);
            nStatus = DAQmxSetTrigAttribute (m_taskHandle, DAQmx_DigEdge_ArmStartTrig_Src,"Dev4/PFI17" );
        //set the internal timebase
        nStatus = DAQmxSetCOCtrTimebaseSrc(m_taskHandle,"Dev4/count5","20MHzTimeBase" );
        nStatus = DAQmxStartTask(m_taskHandle);
        return nStatus;
    And the code where I try to set the digital line:
    SetChannelState(short nState)
        short nStatus = 0;
        uInt8 wrtBuf0[1]={0};
        nStatus = DAQmxCreateTask("",&m_taskHandle);
        // Configure line as output 
        nStatus = DAQmxCreateDOChan (m_taskHandle, "Dev4/port0/line0", "", DAQmx_Val_ChanPerLine);
        nStatus = DAQmxStartTask(m_taskHandle);
        wrtBuf0[0] = nState;
        nStatus =DAQmxWriteDigitalLines (m_taskHandle, 1, 0, 0, DAQmx_Val_GroupByScanNumber , wrtBuf0, NULL, NULL);
        nStatus = DAQmxWaitUntilTaskDone(m_taskHandle,10);
        nStatus = DAQmxStopTask(m_taskHandle);
        nStatus = DAQmxClearTask(m_taskHandle);
        m_taskHandle = 0;
        return nStatus;      

  • How can I View the Digital Booklet for my Albums?

    I have a few albums in my library with digital booklets, but have never been able to view them.  I am working on Windows 8 right now, and have the updated version of iTunes. Anyone have a solution?

    Install Acrobat Reader.
    tt2

  • HT203433 I bought a cd today, and the digital booklet came with it, (Of course).  But when I click on the digital booklet, it opens up in Microsoft Words with no pics/lyrics/artwork.  Instead, I get like 200 pages of a bunch of Gibberish letters/symbols :

    Anyone else have this problem and know how to fix it???
    Please and thank you, in advance
    It's not on iPod, it's on the computer labtop that this is happening.  Figured it prob wouldn't work on an iPod

    Hello fellow iTunes users. My issue is related to the one above.
    I can successfully download the digital booklet included with Taylor Swift's Red Deluxe album, but when I try to open it in Adobe Reader (and the pdf reader included with Windows 8), the following error screen appears:
    I have tried to re-download the file several times - and on a different computer. Is Apple aware of this issue and, if so, is there a fix for it? Both are using Windows x64 versions. One is running Windows 7, the other running (the truly awful) Windows 8.
    Many thanks.
    p.s. I upgraded to iTunes 11 before this purchase and I find iTunes 11 to be a marked improvement on v10 and the only reliable media player that I am able to use on Windows 8, so congratulations Apple for doing a better job than Microsoft when it comes to Windows 8 compatibility, lol!

  • How to view the digital booklet itunes??

    when i have finished of downloading an album, i can't view the digital booklet because it says "it's not possible to open the file digital booklet". i dont know how to translate it on english correctly, but that's the point, i can't open it.
    does it use to happen???

    Hey markfrommillington!
    Here’s an article that can address that question for you:
    iTunes Store: Frequently Asked Questions for iPhone, iPad, and iPod touch
    http://support.apple.com/kb/ht1689
    I purchased an album on my iPhone, iPad, or iPod touch that contained a music video and a digital booklet. Where did it go?
    Bonus items, such as music videos, will download directly to your iPhone, iPad, or iPod touch. Digital booklets are available in your download queue when you log in to the iTunes Store on your computer. Find more information about syncing digital booklets.
    Thanks for being a part of the Apple Support Communities!
    Cheers,
    Braden

  • Black Sabbath's new album 13 - problem with the digital booklet

    I can't open the digital booklet that came with the deluxe album version. Has anybody had problems with it? Does anybody know a solution?

    I'm not sure, but is it a PDF? Do you get an error, is it corrupted?
    Ask here to re-grab it.
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • HT1904 I'm having trouble getting the digital booklet when I download an album. What do I need to do?  I get an error message saying the booklet can't be downloaded at this time.

    I'm having trouble getting the digital booklet when I download an album. What do I need to do?  I get an error message saying the booklet can't be downloaded at this time.

    Hello Bdev15,
    I would be concerned too if the songs I purchased from iTunes were not downloading to my iPhone. You have taken some great troubleshooting steps already, and thank you for providing the details of the steps you too.  I have a few additional suggestions to get it downloaded to your iPhone.
    First, I recommend checking to see if the download was interrupted:
    If your download was interrupted using your iPhone, iPad, or iPod touch
    From the Home screen, tap the iTunes app.
    For iPhone or iPod touch, tap More > Downloads. For iPad, tap Downloads.
    Enter your account name and password if prompted.
    Tap the blue download arrow to resume.
    iTunes: How to resume interrupted iTunes Store downloads
    http://support.apple.com/kb/ht1725
    If the songs still do not download, next I recommend downloading the songs when connected to another network.  For example, if you are using the cellular network, you could switch to Wi-Fi, or you could try an alternate Wi-Fi network.  Follow the steps in the section titled "iPhone, iPad, or iPod touch > Music" in the article below to download the songs:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    If you are still not able to download the songs, you can report an issue with these purchases using the steps in this article:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/ht1933
    Best,
    Sheila M.

  • I already have adobe digital editions on my mac pc and download books from the library to my android e-reader. Can I use the same digital editions on my ipad air, or do I need to load a different one onto my ipad?

    I already have adobe digital editions on my mac pc and download books from the library to my android e-reader. Can I use the same digital editions on my ipad air, or do I need to load a different one onto my ipad?

    Try following forum:
    Adobe Digital Editions

  • Can I use the USB cable that came with my digital camera to conect camera to iPad by connecying the camera cable to the USB end of the iPad cable?

    Can I use the USB cable that came with my digital camera to conect camera to iPad by connecying the camera cable to the USB end of the iPad cable? I have a double ended USB connector if necessary.

    No.
    You need to use this.
    http://store.apple.com/us/product/MD821ZM/A/lightning-to-usb-camera-adapter?fnod e=3a
    or this
    http://store.apple.com/us/product/MD822ZM/A/lightning-to-sd-card-camera-reader?f node=3a

  • Can I use the optical digital audio cable to connect INSTEAD of the hdmi?  My tv only has 2 hdmi ports, and they're both taken

    Can I use the optical digital audio cable to connect INSTEAD of the hdmi?  My tv only has 2 hdmi ports, and they're both taken

    I'm afraid that's very misleading and inaccurate.
    Firstly an adapter won't work, it would need to be a converter and then if it's a compliant converter it won't let you watch HDCP protected content such as that from netflix or from the iTunes Store.
    Secondly, whilst I'm not going to debate whether component or HDMI is better, component is certainly not better if it's been converted from an HDMI signal. You can't make anything better by simply converting it to another type of signal.

Maybe you are looking for

  • Can I run OA84 in Production?

    Hi When we are trying to create a new asset in Production from 1st Jan 2009 we are getting the following error. E351 you cannot determine the depreciation period  on 27.01.09 for period control 11 of the period control method  of phase N1 of deprecti

  • ITunes recognizes iPhone, but doesn't show sync screen-what to do?

    My iphone 3G S is authorized, has the latest software and I am running the latest iTunes as well on my MacBook. When I connect the iPhone, the icon is visible on the left hand side pane in iTunes-under 'devices', but the screen freezes when I select

  • Needed: flash for dummies - a template for HTML snippet

    I am a dummy when in comes to code. I understand that iWeb '08 uses "HML Snippets" and by using them, you can add flash movies (.flv or .swf) to your iWeb '08 created site. What I (and apparently many other dummies) need is a step by step set of inst

  • Change document items (CDPOS)

    hello boss how to use these tables CDPOS and CDHDR , in that i had given the document no as sceduling agreement no but i didnot get result, in that table waht is that object value and change  doc object  what is that kindly tell me what is the use of

  • Java code to alternate row bgcolors

    Hey all, I have a table that's size is dynamic depending on the size of a resultset returned from the database. I want to pretty up the table by alternating the color of the rows. I was able to do this in asp by using the mod fuction which returns th