IBA - change last page of review widget

I've created a quiz, but it isn't a "review". However, when the reader finishes the last question the screen says "You've successfully completed this review". I'm just using the built-in quiz/review widget. I'm wondering if there is any way I can change (or remove) this text?
Thanks
Rebecca

I do not use this widget.. which I  find too restrictive - but this "You've successfully completed this review".
is built into the widget and cannot ( as far as I can  work out) be edited.
Bookry  and iBooks-Widgets.com both sell and create to order widgets - mayb one has a widget more suited to your needs...
BTW I get no gain from these suppliers or have  any involvement.... they  just meet  people needs for iBooks.
iBooks-Widgets.com also has a brilliant iBA tutorial book free from the iBooks store.

Similar Messages

  • How to change last page header under TOP-OF-PAGE in a report

    hi,
    there are 20 pages in the report for which same header is diplayed for 20 pages by using follow.
    TOP-OF-PAGE.
    PERFORM write_doc_header.
    now the requirement is to change the last page heading. for this i've another perform statement.
    so plz let me know the syntax sh be to place this perform statment.
    plz let me know tht am i thinking right by luking at below??
    TOP-OF-PAGE.
    if sy-index = last page.
    perform lastpage_header.
    else
    PERFORM write_doc_header.
    endif.

    Hi,
    Use:
    TOP-OF-PAGE.
    IF SY-PAGNO = 20.               " sy-pagno will give you th current pagno
    Perform LAST_PAGE_HEADER.
    ESLE.
    Perform LIST_HEADER.
    ENDIF.
    hopr this resolves your issue.
    Regards,
    Gurpreet

  • How to change the answer text within the review widget of iBooks Author?

    I want to change the answer text which appears after one has finished a test within the review widget of iBooks Author, but I can't figuere out how to do that.
    I also want to sum up the result of a couple of questions as a percentage. How does that work?
    Can anybody help?
    Thanks
    Reinhard

    Notice the answers inside the widget, each with a circle to the left - tap on one of those, which will then appear green with a checkmark in the center to indicate the correct choice.

  • When using reader, the font gets very large on last page and I cant change it

    when using reader, the font gets very large on last page and I cant change it

    You cannot edit PDF files with Reader. You can change the View options to make what you see smaller. View -> Zoom

  • Change background color in a Review Widget

    Can someone tell me how to change the background color (the white portion) in a review widget?

    That option changes color only around the white portion of the widget. The white portion is where the question and the answers are - I want to lose the default white color.

  • Why is my browser opening the last page visited. How do I change it? I don't want it to do that

    Every time I bring up my browser since I installed the newest version on Firefox it keeps re opening the last page or pages visited. How do I change the settings so this does not continue?

    Tools > Options > General > Startup: "When Firefox Starts": "Show my home page" or "Show a blank page"
    If that setting is OK then make sure that Firefox closes properly.
    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • Photo Page with lots of pix - any way to jump to the last page?

    I have a photo album with 112 pix in it, and it's set to display 21 photos per page w/ 3 columns. This makes for a total of 6 pages.
    The way the page navigation shows up, at least in Safari, is as follows:
    < 1 2 3 4 >
    Oddly, in iWeb it shows:
    < 1 2 3 4 5>
    I continually am adding photos to this album, but I think that people may not realize that there are more than 4 pages. The only clue is that the right arrow is not grayed out, which is too subtle.
    If you click on the "4", and then click the right arrow, it now displays 1-5 like in iWeb. Clicking on it one more time then displays 2-6.
    If all of the pages can't be displayed for space reasons, some indication of how many pages total would be helpful, and/or a "last" link to jump to the last page.
    On this discussions site, for example, doing a search with multiple pages of results brings up the following:
    Pages: 12 *| 1 2 3 4 5 6 7 8 9 10 | Next |*
    This makes it obvious how much content there is, and how far you have to go to get to the end. Is there any way to get something similar on an iWeb page? I think people are missing my latest additions because they don't know they're there, and there's no easy way to get to the newest stuff.
    Thanks!

    I couldn't get the other "jump to the last page" script to work at all; it winds up screwing up the display to where it shows two pages at a time slightly offset from one another.
    It's more likely that you web host servers take time to serve the page and its element, I ran into similar problem while helping out another person in this forum.
    But, while I'm finally seeing the page count directly above the page navigation numbers, it's indicating that there are 7 pages when in fact there are 8, and I'm wondering why it disappears after changing to any other page (it doesn't reappear even on the first page without doing a refresh). I've tried this with the same results in Safari 3.1.2 & Firefox 3.01.
    My bad, all these computing have concept of zero , I messed up with that
    I also found that the bottom paginate navigation cause problem, so I added more code to handle that.
    The result may not be desired but cause the page count flashed when you go from one page to the next, quite annoying. Give this a try:
    <script type='text/javascript'>
    var headerControlsWidget;
    var footerControlsWidget;
    function setPageCount() {
    try {
    headerControlsWidget = parent.document.getElementsByClassName('com-apple-iweb-widget-headercontrols')[ 0].widget;
    if (headerControlsWidget) {
    footerControlsWidget = parent.document.getElementsByClassName('com-apple-iweb-widget-footercontrols')[ 0].widget;
    entriesPerPage = headerControlsWidget.preferences.entriesPerPage;
    entriesCount = headerControlsWidget.preferences.entryCount;
    pageCount = parseInt(entriesCount/entriesPerPage) + 1; // adjust to true count, if needed;
    newDiv = parent.document.createElement('div');
    newDiv.id = 'pageCount';
    newDiv.innerHTML = 'Pages: ' + pageCount;
    if (!(parent.document.getElementById('pageCount'))) {
    paginateDiv = parent.document.getElementById(headerControlsWidget.instanceID + '-pagination_controls')
    paginateDiv.insertBefore(newDiv, paginateDiv.firstChild);
    } catch(e) {}
    function initPageCount() {
    setPageCount();
    headerControlsWidget = parent.document.getElementsByClassName('com-apple-iweb-widget-headercontrols')[ 0].widget;
    paginateDiv = parent.document.getElementById(headerControlsWidget.instanceID + '-pagination_controls')
    paginateDiv.addEventListener('click', function() {setTimeout('setPageCount()', 250);});
    footerControlsWidget = parent.document.getElementsByClassName('com-apple-iweb-widget-footercontrols')[ 0].widget;
    paginateDiv = parent.document.getElementById(footerControlsWidget.instanceID + '-pagination_controls')
    paginateDiv.addEventListener('click', function() {setTimeout('setPageCount()', 250);});
    clearInterval(chkHdrCntl);
    chkHdrCntl = setInterval('initPageCount()', 500);
    </script>

  • With the Review Widget, how would I do a "match the following" question?

    Hey there,
    Can you help me find a solution for iBooks author to quiz by matching words up with sentences?
    This is the question I am asking in the quiz:
    Match the following
    _____ (a) Question 1     (1) Answer 2
    _____ (b) Question 2     (2) Answer 1
    _____ (c) Question 3     (3) Answer 2
    In the book, you'd just put the number 2 on the first line, etc. How would I create this same type of question in iBooks "Review" widget?
    I know this can't be directly done in the iBooks default review widget so what I'm looking for is just a best substitution or if there are widget developers that have created a more extensive quizzing widget, I'd love a link.
    Thanks,
    Caleb

    most people just add feedback to the comments they've asked about already, rather than ignoring all the feedback and making a new post with the exact same information:
    http://forum.java.sun.com/thread.jspa?threadID=5247331&messageID=10020973#10020973
    If you want to add in an XML file to a POST command, you'd add it just like any other file you'd attach to a post request, especially (if you're request is the same as your last post) if you're just doing a jsp page. I'd do it something like this:
    <form method=POST ENCTYPE="multipart/form-data" action="https://rcpdm.mnb.gd-ais.com/Windchill/servlet/IE/tasks/DJK/fcsAddContentComplete.xml">
    <H3> File Name </H3>
    <input type=file name=filename>
    <input type=submit value="Do it!">
    </form>Then again, this solution has literally nothing to do with java, and you still need to make sure that your servlet knows what to actually do with that information you're sending it.

  • Can the Review Widget be reformatted?

    I am having a hard time making a review widget fit on my page. I can seem to reduce the white space around my three possible answers? Also, would rather have all three on one line to run across the bottom of the page, rather than stacked. Anyone know if this is possible?

    KT
    This is a IBA community site, so I try to find solutions and workarounds that work in IBA.
    Sure there are going to be things that can't be done in IBA and are best done with an iPad App.
    But IBA is a lot easer then programing an iPad App and I think a lot of the people on this site can't program an iPad App (including me)
    If something can't be done in iBA that i know of, that's what I say. I figure If someone can program iPad Apps then they probably already know if that is the better route to go.
    I really don't think using Keynote or html widgets is band-aiding IBA.
    If you can make a quiz/review in Keynote that works better for your needs then the review widget, use it.
    To be honest, for what I think joeandginny1 need, I think this is a workable solution and there is no need to use something besides IBA.
    Also, if they don't want to use Keynote, another solution could be to run the review widget full screen only, and have the hot spot to launch the full screen review along the bottom of the page (on top of a text box with the question etc.)

  • [svn:osmf:] 11996: Updates and changes from the spec review for FMMLoader.

    Revision: 11996
    Revision: 11996
    Author:   [email protected]
    Date:     2009-11-19 11:12:19 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Updates and changes from the spec review for FMMLoader.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/proxies/LoadableProxyElement.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/net/FMMLoader.as
    Removed Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/net/ManifestLoader.as

    Hi
    I've Updated App Builder, gone back to the DPS App Builder portal, regenerated new zip and ipa files and downloaded them.
    I clicked the Application Loader 3.0 link, downloaded the latest Appication Version, clicked on the "Deliver your App" button, and submitted the newly built App that was built using 32.4.2 version. (All the app icons were listed as "stored on server" so I presume they are all ok). The .zip file appeared to 'deliver' to Apple successfully. I've tried to resubmit it but get ta "Redundant Binary Upload. There already exists a binary upload with build version..." error message, so presume the orginal binary upload was successful. I have no idea how I can get this app from the "prepare for submission", to "in review". The last time I thought I'd submitted this app I got as far as the "waiting for review" status, and no further.
    At the moment I don't have a"+" button in the Build section - as mentioned on page 66 of Adobe's Step_by_step_guide_to_dps_se.pdf.
    So I can't add the new .zip file to the iTunes Connect > My Apps portal in the Build section of the Versions tab.
    I have put a support email into Apple, but don't expect a reply any day soon.
    The problem with starting all the way back through the App wizard is that I really want to use all the same App Name, Bundle ID, and details etc.
    Do you mean, going back to the Folio Producer Panel, and building a whole new App?
    This process certainly isn't for the faint-hearted!
    HELP!

  • Review Widget Answers not aligned. . .

    Normally my review question answers are centered in the review box.  The last few I've made are showing centered on iBooks Author but NOT on the ipad.  See my screenshot to see what I'm referring to.  I havent found any aligment options that I can change or check.  Any clues?
    http://www.screencast.com/t/ePO5WnExMqlM

    I am using the default font
    Name? Size?
    Create a new book with the basic sample....add a few review widgets, save and test to see if things behave there.

  • (Smartform) Print grand total on the last page

    Hi everyone,
    I'm trying to print the Grand Totals on the last page of my Smartform. I have two pages - FIRST and SECOND.
    What I did was I created a Text to display the grand total, and I specified that this text should be printed 'Only After End of Main Window'. However, the total is not being printed out.
    I can't change the condition to 'Not on First Page', because my form has more than two pages, and I only want the grand totals on the last page.
    Any help would be appreciated.

    hi,
    we have a window type called final window if u define this type window in second page . create a table in the window and go to calculations tab and define an internal table. i think u can get the grand totals.
    if u want maore clearly go throuh this link
    https://www.sdn.sap.com/irj/sdn/forums
    hope this will help you.
    REWARD ME IF USEFUL.
    thanks,
    gupta
    Edited by: gupta pullipudi on Apr 9, 2008 9:23 PM

  • How to print a label in the last page of the report

    Hi, I have a report af bottom page I trid to put a label, the label is in the margin, but when I change the print condition send me a error, illegal print condition, how can I print this label only in the last page at the botton of the page
    Thanks

    Herbe,
    You can do this using format trigger
    Please see the building reports manual / Tutorial for details
    at http://otn.oracle.com/docs/products/reports/content.html
    Thanks
    The Oracle Reports team

  • How to get safari to open to the last page I was on and screens to enlarge automatically?

    Hello, I just upgraded to the latest iMac version from my 2010 model, and whenever I close and open up safari it opens to top siotes instead of the last page I was on, and every time I open it I have to enlarge it myself by clicking the arrows in the top right. Same happens with everything else, like the app store. How do I change this so whenever I go to safari it opens to the last page I was on and has safari, app store, etc. have large screens right away? I set up my old iMac 3 years ago, and I guess I must've done something to have it do this, but I forgetn what I did. Thank you in advance

    Hello there, Clumn.
    The following Knowledge Base article provides some general tips for Mavericks that may address your issue:
    OS X Mavericks: General preferences
    http://support.apple.com/kb/ph13803
    Particularly of note:
    Close windows when quitting an application
    If you quit apps with windows still open on your screen, selecting this checkbox prevents the windows from reopening automatically the next time you start their app.
    This feature when not selected will allow the application to reopen windows automatically when you open the app.
    Additionally, this article provides information on how to set windows Full Screen:
    OS X Mavericks: Take apps full screen
    http://support.apple.com/kb/PH14302
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • When i open my browser it does not go to the home page but the last page that I was on in my previous internet session. whats going on here?

    Ok so I open my Firefox browser but when it opens it does not go to the homepage. It goes to the last page I visited in my previous internet session. My homepage is www.imdb.com but lets says I go to www.facebook.com and then i close the window; if I reopen firefox it will go to the facebook page and not the homepage. This happens all the time and it even happens after I restart the computer. It always goes to the last page I visited. Like this page for example where I posted a question. Once i close firefox, and then open it again, it will come to this page and not the homepage. Is this supposed to happen? It started happened a few weeks back. I reinstalled it and it still happens. thanks.

    Hi eaglerabbit,
    This is a pretty easy fix. Just go to ''Tools > Options > General'' and change the preference for what Firefox should do on startup. You probably have it set to load tabs and pages from your previous session.
    If that doesn't work, you should look at the Knowledge Base article [[Preferences are not saved]].
    Hopefully this helps!

Maybe you are looking for

  • How do I get my old itunes data and library into my new computer

    I recently bought a new laptop (10.7.5) and had to leave town quickly. I dumped my Itunes folder from my old machine onto an external hard drive and now I don't know how to get that all into and onto the new laptop. I think I would like to keep the 

  • Custom RTP payload

    I used the sample "Custom RTP payload"of sun,sed when program run it tell on console that "the track is not possibile to send as MyPCM Format" and it is sent with another format!! Why????

  • Imac and 5.1 surround

    hi all i've hooked up my 20" intel imac to a surround amp with a mini-toslink cable, however i can't seem to get any audio out of the mac except the left and right channels. i've got a quicktime file encoded in ac3. in its audio settings i have 6 cha

  • Flashview

    This is a gallery I'm building together with another flash developer, Alen Cvitkovic. It's still in beta so we're planning on adding additional features. You can see it at: http://alexrindo.com/gallery4 and you can get the source at: http://code.goog

  • Can function in join reduce the performace.

    hi,    i have a function fn_oneortworow it accepts one parameter. i have used it in left join as follows 1) select * from T left join fn_oneortworow(@a) a on a.id=t.id my fear is that it may execute as many times as many rows are there in table "T" s