Image swipe on iBooks without the use of iBooks Author

Im working on an e-book using calibre and dreamW. It contains lots of pictures. What i want to do is tap on one picture, make it pop at you (make it larger, just like it does when you tap on an image) but then from that be able to swipe to the next image, swipe back and so on. I manage to use JavaScript and make it happen in html, but not in xhtml...
So i would really like to know before going any further, Is this action possible for iBooks without the use of ibooks Author?? in other words: Does iBooks allow the swiping gesture to see images within the normal swiping of the page
Any thoughts, ideas? thanks!

If you're looking to trap the swipe gesture and take some custom action with it, yes, it's easily doable within a hand-coded ePub and iBooks. We do it in our books to suppress the normal page turn response on certain controls. Trap the move event, act on it, and preventdefault.

Similar Messages

  • Is it possible to use the Study Cards feature in iBooks without the special new .iBooks format?

    The all new iBooks 2 has been released today, with quite a compelling array of features for students. I've watched a few videos, among those the introducory video from Apple, and one of the features that appealed to me most is the Study Cards feature, which uses notes you've created to generate study cards you can practise with.
    Now, I have a bunch of .ePub books, most of which are annotated and have notes. To my surprise (and a tiny bit of frustration) however, I wasn't able to find the button to activate Study Cards.
    I've tried to make a book myself using the also newly released iBooks Author application, and found that with the new book it indeed is possible to use the notes.
    Is there any way to make Study Cards available for .ePub books as well?

    I was thinking, perhaps there's a way to import ePub files into the iBook Author software, and thus create an iBooks format that enables the use of Study Cards.
    I haven't found an easy way to do so yet, though. Perhaps some authors with more experience could share their methods of converting their published books to this new format, so we can try to do it with our own (DRM free) ebooks?

  • HT201250 Can I restore photo files from Time Machine without the use of an external drive?  I'm trying to restore lost photo files and I see them listed in Time Machine (without use of an external drive), but when I try to restore I get a error code 36.

    Can I restore photo files from Time Machine without the use of an external drive?  While I was transferring photos back and forth from a thumb drive something went haywire and my IPhoto was wiped clean!  When I click on Time Machine I see all the dated pages (without an external storage drive connected), go back to a date where all my photo files are there, click "restore", and I get the message:  "The Finder can't complete the operation because some data in file cant be read or written (error code - 36)"

    Thanks so much Terence.  I tried some of the fixes from that page, but then discovered the suggestion to compress the Time Machine Back up of the original library and transfer it as a zip back to my computer as detailed here:
    http://pondini.org/TM/E9.html
    That worked like a charm.  I really appreciate it. 

  • Red Hat Cluster Suite without the use of RAC

    Hi,
    I want to install Oracle 9i/10g database on two nodes in linux redhat AS 3. I want to use Red Hat Cluster Suite for clustering and failover the Oracle db without the use of RAC. Is it possible and would it be sufficient enough ? Does Red Hat Cluster Suite support with Oracle 10g or just 9i ? With Red HAt Cluster Suite, would it require to have one virtual IP ?
    Thanks

    If you want failover all you need is a dataguard solution and skip out on cluster suite.
    If you want Distributed Database then you need RAC.. You can't implement a 9i/10g cluster per say by using an OS solution vs an Oracle solution.
    Node A - Primary
    Node B - Secondary
    Node A -> B (DataGuard redo replication)
    Process Management scripts to switch users from A to B and vice versa pending recovery of instances. Cluster suite has no involvement outside of what may be nice nice system management capability.

  • HT1766 Is there way of accessing your back up data without the use of an i-phone?

    Is there a way of accessing your back up data from the computor without the use of an i-phone?

    If it wasnt activated prior icloud wont help now. Did you ever use the save and print option to "send it itunes"?  I did that all the time prior to icloud to back up my docs. Then you can "copy from itunes" in the new document dialog.
    I still recommend doing the export to iTunes to create a local back up copy on ocassion.
    For future reference, To activate icloud for documents, go into the main settings app, tap icloud, then documents and data, and turn it on. Then go to the app (maybe numbers) further down the main settings list, tap it and turn on "use icloud".
    Jason

  • Is there any way to connect an iPhone to an external hard drive without the use of a computer?

    Hello All,
    I am planning to travel to Central America, and I want to take pictures with my iPhone. I only have 8 GB memory, so I wanted to take my 1 TB WD Mac External Hard Drive with me on the trip. Is there any way I can connect my iPhone directly to the external hard drive, without the use of a computer? Thanks in advance!

    The external hard drive has only one input port which is usb, so you can only use usb here. Also try considering online storage.

  • Running Predictive/Progresive outbound campaigns without the use of IVR

    Is it possible to run a predict/progers outbound campaign with a 3:1 (port:agent) ratio without the use of ivr
    could i instead place the customers on hold somewhere in icm while the agents are busy?
    just a thought...

    What you are asking for in essence is the ability to queue the call. This is only possible in an ICM environment with an IVR or with some other peripheral integration utilizing the Service Control interface.

  • Direct wireless print without the use of a router

    Is it possible to print directly to the printer without the use of a router?
    This question was solved.
    View Solution.

    Hi Brad,
    Welcome to the HP Community Forum.
    OFFICEJET PRO X476 AND X576 MFP SERIES User Guide     says Yes
    See Page 118
    Reference:
    HP Officejet Pro X476dw Multifunction Printer
    Click the Kudos Thumbs-Up to say Thank You!
    And...Click Accept as Solution when my Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • How to sort random number without the used of order by

    Hi ,
    how should 5 random number be sorted without the use of order by in PLSQL
    eg.
    id amount
    1 2
    2 9
    3 3
    4 5
    5 7
    Edited by: sake1 on 1-dec-2010 8:16

    I used Altavista and found one example, how does it look?
    DECLARE
      /* there is no built array in oracle, you must declare
      your own */
      TYPE Numarray IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
      /* the array of numbers - using assoc array because I can start
      with zero like traditional arrays */
      Nums Numarray;
      n NUMBER := 0;
      Temp NUMBER;
    BEGIN
      /* load up the array, put 20 random values in the array,
      in array indicies 0 to 19 */
      FOR i IN 0 .. 19
       LOOP
        Nums(i) :=  Round(Dbms_Random.Value(1, 1000));
      END LOOP;
      /* get the array size */
      n :=  Nums.Count();
      /* display the unsorted values - loop through the whole array and
      print out the values */
      Dbms_Output.Put_Line('unsorted:');
      FOR i IN Nums.First .. Nums.Last LOOP
        Dbms_Output.Put_Line(Nums(i));
      END LOOP;
      /* bubble sort - using two loops, compare each value with the one
      after it
      if the one after the current one is smaller , then
      switch their locations in the array, this is just like standard
      bubble sorts
      in other languages. The only real diff is the syntax.
      FOR i IN 0 .. n - 1 LOOP
        FOR j IN 0 .. n - (i + 1) - 1 LOOP
          IF (Nums(j) > Nums(j + 1)) THEN
            Temp := Nums(j);
            Nums(j) :=  Nums(j + 1);
            Nums(j + 1) :=  Temp;
          END IF;
        END LOOP;
      END LOOP;
      /* display the values sorted */
      Dbms_Output.Put_Line('sorted');
      FOR i IN Nums.First .. Nums.Last LOOP
        Dbms_Output.Put_Line(Chr(9) || Nums(i));
      END LOOP;
    END;
    unsorted:
    155
    909
    795
    977
    942
    214
    105
    269
    283
    820
    108
    594
    784
    921
    856
    736
    802
    457
    951
    411
    sorted
         105
         108
         155
         214
         269
         283
         411
         457
         594
         736
         784
         795
         802
         820
         856
         909
         921
         942
         951
         977
    */In the code the first comment is wrong actually i think, that one:
    "there is no built array in oracle, you must declare your own"
    I remember there were some system collection-types, if i'm not mixing with something, i remember there was some kind of such but they were un-documented ones, so we can juridically say that the comment in the code was still correct.

  • Can a printer be set up on a iPad without the use of a separate computer? I want to get rid of my laptop and just use. IPad...

    Can a printer be set up on a iPad without the use of a computer? I won't to discard mt laptop and only use the iPad. I ordered a hp3050a which meets the spec....but it requires that the cd be used for see . this is fine for the initial set up but how do I fix or reconfigure if I do not have a computer?

    All you need to do is make sure it's a wifi configured print and connect the print and ipad over the same wifi network. Also make sure the printer is Airplay Capable.

  • How to buy application on App store without the use of credit card?

    Hello! I would like to ask if there is a way to buy application on the app store without the use of credit cards
    I have a debit card. can i use a debit card instead?
    i'm from the Philippines by the way.

    Debit cards not accepted in all areas. Use an iTunes gift card if you have
    no credit card.
    In countries where the iTunes Store only sells apps, the accepted payment methods are Visa,
    MasterCard, and American Express. Other payment types such as gift cards, store credit,
    monthly allowances, ClickandBuy, and PayPal are not accepted. Depending on your App Store
    country, prices may be listed in your local currency, US Dollars, or Euros.   
    http://support.apple.com/kb/HT5552

  • Help!! I want photos that are being put onto my mac via camera to go onto 2 ipads without the use of internet or cables! I can use a wireless box just no internet? i have no idea so please help!!

    Hi I am a photographer and i do school proms. I previously linked several laptops up and created a network so that any photos i took when onto one laptop and then went staright onto 3 others.
    I am now looking to use ipads as viewing stations instead of laptops my problem is is that i dont know how to link everything up without the internet. icloud would be the best way but alot of hotels that i go to you cant get signal so that makes me stuck.
    I previously created a network using a roughter and eternet cables.
    So camer to mac book pro (sorted)
    mac to ipads = no idea
    Can anyone help please?

    Hi I am a photographer and i do school proms. I previously linked several laptops up and created a network so that any photos i took when onto one laptop and then went staright onto 3 others.
    I am now looking to use ipads as viewing stations instead of laptops my problem is is that i dont know how to link everything up without the internet. icloud would be the best way but alot of hotels that i go to you cant get signal so that makes me stuck.
    I previously created a network using a roughter and eternet cables.
    So camer to mac book pro (sorted)
    mac to ipads = no idea
    Can anyone help please?

  • How can I wipe my hard drive and restore to factory settings without the use of the original OS CD?

    I have a 2010 MacBook and I need to wipe the hard drive and restore to factory settings.
    The problem is that even though I have the original disc, the CD drive has stopped functioning and will reject any disc put into it.
    Therefore, is there another method to do this without the CD?

    Not very easily.  To restore to factory software you need the original installation DVD (CDs).
    If you have another Mac which is the same make and model so that those installation DVD (CDs) would work, you can use a Firewire cable between the 2 Macs and then put your Mac to be reset into Target mode and use the other Mac to install the software.  However I suspect that is unlikely.

  • Need help with getting images to look smooth (without the bitmap squares) around the edges. When I transfer the image from pictures, it sets itself into the InDesign layout, but with square edges. I need to find out how to get it to look smooth?

    Need to find out how to get my images transferred into an InDesign layout without the rough edges, as with a bit map image, but to appear with smooth edges in the layout. I can notice it more when I enlarge the file (pic). How can I get it to appear smooth in the finished layout. Another thing too that I noticed; it seems to have effected the other photos in the layout. They seem to be
    pixelated too after I import the illustration (hand drawn artwork...)? Any assistance with this issue will be greatly appreciated. Thanks in advance.

    No Clipboard, no copy & paste, as you would not get the full information of the image.
    When you paste you can't get the image info from the Links panel, but you can get resolution and color info either via the Preflight panel or by exporting to PDF and checking the image in Acrobat.
    Here I've pasted a 300ppi image, scaled it, and made a Preflight rule that catches any image under 1200ppi. The panel gives me the effective resolution of the pasted image as 556ppi. There are other workflow reasons not to paste—you loose the ability to easily edit the original and large file sizes—but pasting wouldn't cause a loss in effective resolution or change in color mode.

  • Possible to access classes in other folders without the use of packages?

    Hi,
    I'm trying to write a kind of connector application, and I have come across this stumbling block.
    I have a folder for my main program classes, which will not change. External to that folder( either in a subdirectory or another directory on the same level) I want to have my classes to "connect". The connected classes will be compiled dynamically, as they depend on something in the main classes folder for complilation... I trust I can satisfy that using javac -classpath...
    The problem is that I would like one of the main classes to be able to access the connected classes at runtime, from the other folder. The collection of connected classes will be changing, so that, coupled with the fact that one of the main classes will be required to compile each connected class seems to rule out the use of packages for the connected classes.
    Is there a way to get around this?
    Thank you,
    Jesse

    Are you trying to dynamically compile Java classes (in external folders
    without packages) via Java? Yes, I will be (hopefully) using com.sun.tools.javac. I haven't done that part yet, as I don't want to waste my time on a design that is fundamentally flawed :)
    Does each new 'application' get placed into its ownfolder? No. I will be building a collection of new apps that will all be contained in one folder.
    Once an application is compiled, must it beimmediately available to the process that compiled
    it? Yes. Once an application is compiled I need it to be accessable from that point on.
    Thanks,
    Jesse

Maybe you are looking for