Book List Widget

I built a Book List Widget to promote a series of books available in the iBookstore and added it to my website, but I'm having some trouble getting the links to work properly in Internet Explorer 8 (I'm using version 8.0.6001.18702).  When I click a book link in the widget in any other browser, it opens more detailed information about that book within the widget, and then when I click "View," it takes me to the book's page in the iTunes store.  However, in IE, the links in the widgets do not work, and I get an error message with the following info:
Message: 'console' is undefined
Line: 638
Char: 2
Code: 0
URI: http://widgets.itunes.apple.com/lib/itaffill.js?serial=9999999
I found a couple other Book List Widgets on other websites, and they are giving me the same problem.  I can't find one that works with my version of IE.  The Apple announcement of the Book List Widget  said it works with "most all browsers," but doesn't go into specifics.  I'd expect all versions of IE to be supported, though.
Has anyone else had this problem?  Please let me know if you've found a way to get the Book List Widget working in all browsers (a link to one that's working would be great), or if it might be something to do with my browser settings.
Thanks for your help!!

apps@sinhergy wrote:
I am integrating the apple widget of my ibook in my website
What is the url?

Similar Messages

  • How can I delete the purchased books list in iBook?

    How can I delete the purchased books list in iBook?

    Hi,
    Yes you are miss understanding the problem.  To clarify. The problem is not how to delete the book from a device, it is how to delete the puchase (i.e. the history).  You can hide it in your account settings, but you cannot delete it. So if you buy something on a shared account (i.e. a family account like mine), your children can see and download any of your puchases - forever.
    Some will say it's for your protection.  A bit like the shop looking after your receipt, so that you cannot lose it.
    However, I thought that as part of the data protection act, you could ask for this information kept about you to be deleted, but this doesn't apply to Apple purchases.  Believe me I've tried.

  • Conversion from awt to Swing, colored list widget, and awt update() method

    Now that my Interactive Color Wheel program/applet is in Swing, I guess I should continue my previous thread in here from the AWT forum ("list widget with different colors for each list item?"):
    * list widget with different colors for each list item?
    My current issue involves two canvas (well, JPanel) refresh issues likely linked to double buffering. You can see them by running the following file with "java -jar SIHwheel.jar":
    * http://r0k.us/rock/Junk/SIHwheel.jar
    [edit add]
    (Heh, I just noticed Firefox and Chrome under Windows 7 will allow you to run thie .jar directly from the link. Cool.)
    [edit]
    If you don't trust me and would rather run it as an applet, use:
    * http://r0k.us/rock/Junk/SIHwheel.html
    (For some reason the first issue doesn't manifest when running as applet.)
    1) The canvas goes "wonky-white" when the user first clicks on the wheel. What is supposed to happen is simply the user sees another dot on the wheel for his new selected color. Forcing a complete redraw via any of the GUI buttons at the bottom sets things right. The canvas behaves itself from then on, at least until minimized or resized, at which point one needs to click a GUI button again. I'll be disabling resizing, but minimizing will still be allowed.
    2) A button image, and sometimes toolTip text, from an entirely different JPanel will appear in the ULC (0,0) of my canvas.
    Upon first running the new Swing version, I had thought everything was perfect. I soon realized though that my old AWT update() method was never getting called. The desired case when the user clicks somewhere on the wheel is that a new dot appears on his selected color. This usually allows them to see what colors have been viewed before. The old paint(), and now paintComponent(), clear the canvas, erasing all the previous dots.
    I soon learned that Swing does not call update(). I had been using it to intercept refresh events where only one of the components on my canvas needing updating. Most usefully, don't redraw the wheel (and forget the dots) when you don't need to. The way I chose to handle this is to slightly modify the update() to a boolean method. I renamed it partialOnly() and call it
    at the beginning of paintComponent(). If it returns true, paintComponent() itself returns, and no clearing of the canvas occurs.
    Since I first posted about these two issues, I've kludged-in a fix to #1. (The linked .jar file does not contain this kludge, so you can see the issue.) The kludge is included in the following code snippet:
        public void paintComponent(Graphics g)
            Rectangle ulc;
         if (font == null)  defineFont(g);
         // handle partial repaints of specific items
         if (partialOnly(g))  return;
            ...  // follow with the normal, full-canvas refresh
        private boolean partialOnly(Graphics g)
         boolean     imDone = true;
         if (resized > 0)  // this "if { }" clause is my kludge
         {   // should enter on 1 or 2
             imDone = false;
             resized += 1;     // clock thru two forced-full paints
             if (resized > 2)  resized = 0;
            if (wedgeOnly)
             putDotOnWheel(g);
                paintWedge(g);
             drawSnake(g);
             drawSatSnake(g);
             updateLumaBars(g);
                wedgeOnly = false;
              else if (wheelOnly)
                wheelOnly = false;
              else
                imDone = false;  // was paint() when method was update() in the AWT version
            return(imDone);
        }Forcing two initial full paintComponent()s does whatever magic the double-buffering infrastructure needs to avoid the "wonky-white" problem. This also happens on a minimize; I've disabled resizing other than minimization. Even though it works, I consider it a kludge.
    The second issue is not solved. All I can figure is that the double buffers are shared between the two JPanels, and the artifact buttons and toolTips at (0,0) are the result. I tried simply clearing the top twenty lines of the canvas when partialOnly() returns true, but for some reason that causes other canvas artifacting further down. And that was just a second kludge anyway.
    Sorry for being so long-winded. What is the right way to avoid these problems?
    -- Rich
    Edited by: RichF on Oct 15, 2010 8:43 PM

    Darryl, I'm not doing any custom double buffering. My goal was to simply replicate the functionality of awt's update() method. And yes, I have started with the Swing tutorial. I believe it was there that I learned update() is not part of the Swing infrastructure.
    Problem 1: I don't see the effect you describe (or I just don't understand the description)Piet, were you viewing the program (via the .jar) or the applet (via the .html)? For whatever reason, problem 1 does not manifest itself as an applet, only a program. FTR I'm running JDK/JRE 1.6 under Windows 7. As a program, just click anywhere in the wheel. The whole canvas goes wonky-white, and the wheel doesn't even show. If it happens, you'll understand. ;)
    Are you aware that repaint() can have a rectangle argument? And are you aware that the Graphics object has a clip depicting the area that will be affected by painting? You might use these for your partial painting.Yes and yes. Here is an enumeration of most of the update regions:
    enum AoI    // areas of interest
        LUMA_SNAKE, GREY_SNAKE, HUEBORHOOD, BULB_LABEL, LUMA_WEDGE,
        LAST_COLOR, BRIGHTNESS_BOX, INFO_BOX, VERSION,
        COLOR_NAME, EXACT_COLOR, LUMA_BUTTON, LUMA_BARS, GUI_INTENSITY,
        QUANTIZATION_ERROR
    }That list doesn't even include the large color intensity wedge to the right, nor the color wheel itself. I have a method that will return a Rectangle for any of the AoI's. One problem is that the wheel is a circle, and a containing rectangle will overlap with some of the other AoI's. I could build an infrastructure to handle this mess one clip region at a time, but I think it would add a lot of unnecessary complexity.
    I think the bigger picture is that, though it is now updated to Swing, some of the original 1998 design decisions are no longer relevant. Back then I was running Windows 98 on a single-core processor clocked at significantly less than 1 GHz. You could actually watch the canvas update itself. The color wheel alone fills over 1000 arcs, and the color intensity wedge has over 75 update regions of its own. While kind of interesting to watch, it's not 1998 any more. My multi-core processor runs at over 2 GHz, and my graphic card is way, way beyond anything that existed last century. Full canvas updates probably take less than 0.1 sec, and that is with double-buffering!
    So, I think you're right. Let the silly paintComponent() do it's thing unhindered. If I want to track old dots on the wheel, keep an array of Points, remembering maybe the last 10. As a final step in the repainting process, decide how many of those old dots to display, and do it.
    Thanks, guys, for being a sounding board.
    Oh, I'm moving forward on implementing the color list widget. I've already added a 3rd JPanel, which is a column to the left of the main paint canvas. It will contain 3 GUI items:
    1) the color list widget itself, initially sorted by name
    2) 3 radio buttons allowing user to resort the list by name, hue, or hex
    3) a hex-entry JTextField (which is all that is there at this very moment), allowing exact color request
    The color list widget will fill most of the column from the top, followed by the radio buttons, with hex-entry at bottom.
    For weeks I had in mind that I wanted a pop-up color list widget. Then you shared your ColorList class, and it was so obvious the list should just be there all the time. :)
    -- Rich

  • Font Book: Installed postscript Fonts don't always appear in Font Book list

    Greetings,
    I was helping a user the other day with Font Book. I was showing him how to add/enable fonts into Font Book when I noticed a problem I had never seen before. Before I get started, the fonts in question are from the Adobe 7 Font Folio library. There were newly installed by me from the original disk, and known not to be corrupt. I also know that that Postscript fonts are an accepted font format in Tiger.
    That said, when adding.installing a particular font using Font Book, it would not "Appear" in the Font Book" list of fonts. I would attemp to, again add/enable the font (by selecting it from the Adobe Library) and still it would not appear in the Font Book list with the other installed fonts. This would happen to any font that I tried to install. Once this happenend to a specific font, I could no longer get that specific font to install.
    I removed the Font Book .plist - no luck. I also rebooted - no luck.
    Obviously, no application was able to recognize any of the fonts that would not install.
    It was as if Font Book would not recognize any font that I was trying to add/enable.
    Could this be a corrupted cache issue, or .plist problem? Could this be a permissions related issue? What did work finally was to add the font to the "Computer" set, where it would be avaialbe to all users. But I could not get the font to install into the "User" set. Weird.
    Also, What is the significance of these four fonts:
    HelveLTMM
    Helvetica LT MM
    Times LT MM
    TimesLTMM
    These fonts above are part of the default package that is loaded into the /System/Library/Fonts
    Is it safe to replace these with Postscript version from my Adobe 7 Font Folio collection?
    I have read most of the font related tutorials and articals.
    thanks,
    Hairfarm
    G4 Mac OS X (10.4.3)
    G5   Mac OS X (10.3.6)  

    where did
    you get the information about pre-92 Adobe postscript
    fonts being uncompatible?
    Oh, sure, it's hard enough for me to remember things these days and now you want me to remember where I learned them from?? geez... [gone lookin' ... okay, back] It was, as I vaguely recalled, on the Adobe site, re troubleshooting in OS X, in a list of "do this to solve your problems": "Make sure that you are using the latest version of the font... If the font's creation date is prior to 1992, a new version of the font may be available." The only Type 1's that have given me any problems were, all three of them, older than 92, and in troubleshooting something here a few weeks ago, that turned out to be a problem for someone else, too.
    But all of the Tiger font
    research that I have done suggests that Adobe
    Postscript fonts were acceptable.
    Yes, well... Type 1's are supported. It seems that some older ones are a little funky (not in a design sense....)
    Ideally, what fonts can be removed from Tiger from
    the System/Libray/Fonts folder? I know that all four
    of the MM's (Helvetica LTand Times LT), Lucida
    Grande, Geneva, Keyboard, Last Resort, and Monoco
    must stay, but what about the others?
    You also need a real Helvetica - that is, not the MM version. You can replace the system's Helvetica with one of your own, but there must be an available Helvetica around at all times.
    Then there's AquaKana (two of them, regular and bold). They're not on Apple's official "do not remove" list, but there's some anecdotal evidence of its being needed. It's "real" name begins with a period, so it doesn't appear in any menu, so it's not going to hurt anything if you leave it there.
    In stripping down nonessential fonts, lots of people just remove everything from the Library/Fonts folder, but I think it's good to leave the basic most common web fonts available: Comic Sans, Georgia, Trebuchet, Verdana, Times New Roman. This keeps web pages looking the way they're supposed to - and they shouldn't conflict with anything that's being really designed!
    This is assuming that the fonts
    being used are not damaged and "Pass" Font Book's
    validation test.
    The assumption within that assumption is false: Font Book's validation is pretty iffy. I think the only reason we don't see it as REALLY iffy is because fonts, on the whole, are pretty solid in OS X (your current experience to the contrary). I've installed fonts (properly) that flew through the automatic-on-install validation but failed when I used the Validate Font command afterwards. I've had fonts that pass both the on-install and specific after-install validation but get a Bad Font warning dialog when being re-enabled after a disabling. (And I didn't use the font in between... ) Who knew Font Book did any validating when you re-enable fonts??
    This is what I would do:
    (Not necessarily in this order)
    1. Trash Font Book .plist
    2. Trash all Font Cache's from all three libraries
    (System, Computer, and User folders)
    3. Reboot
    4. Delete problem fonts from User and Computer
    Libraries and reinstall using Font Book.
    Please tell me if this strategy is ill-advised, and
    what the better course of action might be.
    None of it is ill-advised. I would add starting up in Safe Mode to see if the problems exist there as part of the narrow-down-the-problem stage. Same goes for setting up a separate user account and see how things are behaving there. (Yikes... did you try that yet??)
    In addition, there are some special things to do when it's Office apps having the problem, or something going on with Adobe's application fonts folder...
    Also, Zaph Dingbats is acting up as well. I removed
    the .dfont version that was in the system folder, and
    replaced it with the Adobe Font Folio Postscript
    version (ITC Zaph Dingbats) that I loaded into Font
    Book User/Library/Fonts folder. Now that I think
    about it, that specific font has been around for
    along time, and may very well be pre-1992. Hmmm...
    Can you further define "acting up" ? In addition to the ZD dfont from the system, I've been using/testing ITC ZD from Adobe with no problems. It's version 2.0 with copyright dates of 1985 through 1987.
    A lot to respond to. My apologies.
    No problem. You caught me on a night when I'm too tired for real work but not so far gone I can't do this (tho I'm soon on my way, bleary-eyed, to get a fix of Sudoku puzzles).

  • Address Book List Output to File

    How can I output an Address Book printed contact list to a file (instead of to my printer) so that I can do further editing on the file in Pages? Alternatively, how can I input the PDF file into Pages which can be produced by the Address Book list print function?
    Thanks for your suggestions.

    I think that Pages is the wrong choice.
    I use a program called Address Book Importer which allows me to use CSV files that can be edited in Excel (or possibly Numbers)?
    See http://homepage.mac.com/sroy/addressbookimporter/
    You will need to be very careful doing the external edits. I experienced a LOT of problems with delimiters (commas and semi-colons) in notes and business names. I had to strip ALL of the commas and semi-colons from the address book file in Excel before I could import back into Address Book.
    Be SURE to back up the Address Book (File -> Export) so you can get it back if you have a disaster in the external editor. Be sure to do a test on the reimport to make sure the fields are lining up the way you want them.
    BTW - PDF is a printer format, not a data base so it will not be possible to edit the PDF files as if it were a data base.
    Hope that helps.

  • Book List link on OEM License doc is broken

    For all pages in Oracle® Enterprise Manager Licensing Information / 12c Release 1 (12.1) / Part Number E24474-07, the link at the top of the page listed as 'Book List' returns a 404
    http://docs.oracle.com/cd/E24628_01/license.121/e24474/toc.htm

    Works fine for me; the link redirects to https://www.adobe.com/cfusion/mmform/index.cfm?name=distribution_form&pv=sw

  • IOS App List Widget disappeared

    The iOS App List Widget we created 2 days ago has disappeared from 2 of our landing pages.
    How do we fix it?
    The embedded code is still present, but the widget does not show...
    The widget was created at this URL: http://widgets.itunes.apple.com/builder/?uo=8&at=11l6XQ
    The code is as follows:
    <iframe src="http://widgets.itunes.apple.com/widget.html?c=us&brc=FFFFFF&blc=FFFFFF&trc=FFFFF F&tlc=FFFFFF&d=Click on any of the apps to download directly from the App Store.&t=MASTER iPad® Must Have Apps&m=software&e=software,iPadSoftware&w=250&h=370&ids=373311049,576717926,281 796108,477967083,348780264,427176770,358801284,528408291,333710667,327630330,284 815942,418987775,897824086,284993459,490505997,498151501,743974925,390073215,557 879891,427424432,578979413,868326899&wt=playlist&partnerId=&affiliate_id=&at=11l 6XQ&ct=" frameborder=0 style="overflow-x:hidden;overflow-y:hidden;width:250px;height: 370px;border:0px"></iframe>
    Also, how do we modify the widget without having to recreate it using the code?
    Appreciate your feedback. Thanks!

    Laptops and desktops cost between 8 and $30 per year in electrical usage; iPads cost less than $3 per year.
    Even if you do not reduce the number of laptops and desktops right away, they will last longer and not require as much support because they will be used less due to the iPad being used instead.
    iPads are a form of computer.
    Basic apps (all but first two free) - grades 5 and up QuickOffice (or iWorks apps), TED, Docscan, Skitch, Showme, Prezi, My Big Campus, DropBox, Edmodo, iBooks, iTunes U, Google Earth, Evernote, Qrafter, Adobe Photoshop, etc..
    K-4 - too many to list here.

  • Can't see audiobooks on iPad "books" list

    I am having trouble getting recently purchased audiobooks that appear in the computer's iTunes source list to show up under the "Books" tab of my iPad when it is hooked to the computer and selected in the "Device" list. All the eBooks included in the iTunes source list show up in the iPad's "Books" list, but the audiobooks don't, and I can't do a manual sync. Anyone have any thoughts.
    Thanks,
    Mike Ryan

    i want to be sure that you are looking in the right place, so please dont be insulted by this question: are you llooking for your n95 here?
    iPhoto window, left-hand side, in the list with your photo albums, etc.
    on my mac, with my n95 connected, i see the name of my phone (mines called 'Big-Bill') listed near the top of the album list, with a digicam icon. when i click on this icon, the right side of the window changes from my photos, to a large picture of a digicam, with a button near the bottom labeled "Import".
    to be sure, importing photos from the n95 is not automatic. you have to manually import photos using the button described above. it is likely a wise idea to "delete originals" when you import, otherwise you keep the full 5mp images on the phone.
    after i import, with my phone still connected the NMT software begins a fresh synchronization, sending 320x240 resolution copies of my images back to my phone.
    assuming that this IS where you are looking - let me ask you, do you know which USB connection mode you phone is operating in? the nokia provides several, and the option to ask you at connection, or to always use a particular connection mode (options are: PC Suite, Data TRansfer, Image Print, Media Player). i can verify that the connection mode: 'PC Suite' works properly for me.
    N95-1 ---> N97-NAM ---> N900 ---> E7-00 + N900 (I use them both)
    (N95 was pretty good, N97 had potential but utterly failed to deliver, N900 is absurdly good. Those of you wondering, "should I try N900/Maemo/MeeGo"? The answer is a resounding YES)

  • Changing scrollbar color on list widget.

    Good Afternoon,
    I need to know if its possible to change the scrollbar color of the list widget. If so, where can I find information covering this.
    Thank you.

    Repost.

  • HT2486 When I use my iPhone Siri for dialing, it is better to have the names in the address book listed singularly. But when I want to print envelopes from the address book in a formal manner - "Mr. & Mrs. Smith". Is there any way to have both options?

    When I use my iPhone Siri for dialing, it is better to have the names in the address book listed singularly. But when I want to print envelopes from the address book in a formal manner - "Mr. & Mrs. Smith". Is there any way to have both options?

    Only way I can figure is having double entries one with singular + some unique field, (maybe called Siri), then making a Smart group for one or both.

  • HT201272 I purchased an audio book, it doesn't appear in my purchased list nor in the audio books list

    I purchased an audio book, it doesn't appear in my purchased list nor in the audio books list. I have a receipt for it but if I start to down load it again, I get charged. Where did the audio book go and why doesn't ITunes recognize I've already paid?

    Audiobooks are currently a one-time only download from the store, so if you download it again then you will be charged - I believe that they are all supplied to Apple by audible.com, so I assume that it's them that are requiring the one-time only download.
    Is it still on the device that you downloaded it on (if it was on your iPhone then it should be in the Music app), or do you have a copy on your computer and/or on a backup ? If not then you can try contacting iTunes support and see if they will grant you a re-download : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Why does audio books list by chapter instead of books?

    Why does audio books list by chapter instead of by book ?

    Perhaps I should have given more detail. The device works the way it works. Listing every chapter is part of the normal behaviour, and often not in a useful order which is the main thrust of that article. However it does point out that you can use one of the various free/cheap tools available to stitch the individual files into a single audiobook file which is what iDevices really expect to receive.
    Alternatively you could use a smart playlist which matches a particular title and only includes files with a play count of zero to make it easier to locate the current chapter. I don't recall ever trying this so I'll have a go and see how it works out.
    tt2

  • How to send a message to an address book list as "bcc", not as "to"?

    I have various lists of different people on my personal TB addressbook. If I press "write" (to a particular group), TB by default creates a message with all the recipients in "To" mode - i.e. all the recipients will see each other's email addresses. How do I change the default message setting to "bcc" without having to change every single entry in the email manually?

    Do not start a message in the address book. It is not the best place to do that.
    That is what the Write window is for. Open the Write window and turn on the contact sidebar by pressing F9.
    Select the contact, contacts or list that you want to send to and then use one of the ADD TOO: buttons at the bottom of the sidebar.
    Hold the control key while clicking items to select multiple items.

  • Address book list stopped working after upgrade today

    After upgrading to ver 31.1.0 today, all my address book mailing lists stopped working for some reason.
    It says it is not a valid e-mail address because it is not of the form user@host. How do I correct this problem?

    I have new information about this.
    It looks like it's [https://bugzilla.mozilla.org/show_bug.cgi?id=1060901 this bug]. If you have an account on Bugzilla, it would help to vote for that issue.
    It seems lists with a description that includes several words have this problem. The bug report suggests replacing the blanks " " between the words in such lists' descriptions with an underscore "_".
    If you don't want to change your descriptions, [https://support.mozilla.org/en-US/questions/1018299#answer-623437 the other workaround provided] still works.

  • Address book "List" no longer sends .. have screenshot to show error

    I have been using "Lists" in my address book to send multiple emails. There must have been an update recently since I can no longer get the lists to work (any of them) and I get an error I have never seen before, nor understand what I can change to use my lists.
    PS I don't see a place to attach the screenshot of the error, but it says Invalid Recipient Address. I am using version 31.1.0

    The quick fix is to go back to v24.6. Otherwise browse through the other threads and see what has been posted. One that I remember is to remove any spaces in the name of your lists.
    I have not upgraded to v31 yet. I never upgrade to new major versions until the bugs are worked out.

Maybe you are looking for