How to manage, to insert phone gesture in cp8 responsive project ?

l tried to convert a responsive cp 8 project into an App, with phonegapbuild. Marvellous, it works. But does anyone have ever tried those phone gestures ? Ok, I checked the appropriate window, but how can I manage my slides to swipe frm one to another ? I tried  to put a click box above the slide but it doesn't work. Can't find any tutorial about "How to insert phone gesture..." thanks a lo

Thanks for your reply, Lilybiri.
In Responsive Project, the default size of Tablet is 768(W) x 627(H), so, since the width is larger than the height, I thought that you'd want to hold the tablet horizontally in order to see the 768(W) x 627(H) (which appears to me to be landscape) layout. But now it occurs to me, after reading your message, that the 768(W) x 627(H) layout of the tablet is viewed by holding the tablet vertically, and that when the tablet is held horizontally, the layout is automatically switched to the Primary view. Is that so?
The reason I want to change the primary view to portrait is that I want to create a tutorial based on some PDF pages which are in portrait layout. I convert those PDF pages to individual images using Acrobat Professional, then import them into Captivate. But I realize that the viewers would have to scroll down to see the lower part of the page.

Similar Messages

  • How to manage custom document properties (e.g., company name, project name)

    Hi,
    How to manage custom document properties (e.g., company name, project name, event date...) in Apple iWork Pages like it is possible in Microsoft Office Word ?
    The idea is to simplify the management of multiple instances of same piece of information in a document by writing them once as a "properties" of the document that can be referencing in different places of the document. Changing the property value, will automatically change all its instances.
    Thanks in advance for your help

    Thanks for your help Peter.
    Search-Replace and Auto-Substitution are not requivalent for me since I'm looking for something more complex.
    Suppose you have a document about an Event which occur on a specific date (e.g., 11-09-2003).
    In your document, you may be interested in...
    - sometimes display the date as '11-09-2003',
    - sometimes display the date as 'Novembre, 2003',
    - sometimes display the date as 'Sunday, November 9, 2003'.
    With a document property, you would be able to define the EventDate as 11-09-2003, and then define different specific format (e.g., 'mm-dd-yyyy', 'mmmm, yyyy'...) for each reference to the EventDate document property.
    Using Search-Replace of Auto-Substitution, it will be painful since you will have to define as one token per format of a document property (e.g., EventDateAsMMDDYYY, EventDateAsMMMMYYYY...).
    More than that, suppose you have a Numbers table inserted in your Pages document.
    You may be interested in using some document properties in formulas.
    This can't be solved using Search-Replace.
    But its ok, I will wait until this feature will be supported in Pages.

  • How to manage settings for hand gestures

    Swipe no longer works on my iPhone. It has switched to double tap. How do I change the behavior back to swipe style behvaior?

    How did it switch?

  • How to manage my daughter's new phone account

    We just got my 11 year old daughter her first phone (a Samsung S3 Mini). The salesman told us we would be able to use the "Family Base" to control/ turn-on-off her phone, text, web access and email and we would have full control there. Our main goal (as we explained) was to let her have the phone, texting, and gmail, but to turn off her web access (unless she was being supervised - at home). He told us we would definitely be able to keep GMail on, and separately control her web access.  Now that I am looking through the Family Base control center, I'm not really seeing all that.  I see you can manage phone and texting (which we've decided to let her have on), but I don't see management of web access, and I don't see exactly how to manage that separately from her ability to email.
    My second issue is... I would like to activate a "Find my Mobile" or "Find My Phone" type service (because I'm worried about her leaving her phone somewhere) but I'm wondering if this service requires that her phone have web access (and maybe location services on?) so that it can function.
    Surely there are other adults out there trying to manage their kids the same way I am. Can someone please give me some tips/ best practices or suggestions on how to manage all this?
    In addition to my concerns about managing her web usage (while maintaining email), what's the best "find my phone" that I should implement?
    Thank you in advance.

    A few things you can do here.
    1) The Verizon Rep Lied to you
    2) You can download Parental Control Apps from the Play Store that are password protected and work much better then Family Base. Look at those and dump Family Base
    3) Download Where's my Droid. It will do all of the find my phone options and much more. check it out
    4) You might also want to download something like Phone Tracker which will allow you to track the phone and its whereabouts near real-time so you can see where she is at all times. (Check local laws in your area first though to make sure you are legal doing this)

  • HT1848 MY wife has an Iphone 4  and I have a 5. To date we haev used one apple is/account to manage music purchases. Recently we bought a Mac and created a new apple account for her. How do I synched her phone with new apple account?

    MY wife has an Iphone 4  and I have a 5. To date we have used one apple account to manage music purchases/library. I updated ny phone to the new OS version and all her texting is showing up on my phone.  I understand if i create an apple account for her I will not see her texts. Recently we bought a Mac and created a new apple account for her. How do I synched her phone with new apple account and get access to the music library under my account on the new MAC laptop  before I update her phone to the new OS?
    Going forward if I purchase music under my apple id and want her to have it on her device, how can I acheive that?

    You can continue to share an Apple ID for purchases.
    Sign her in to her new account here:
    Settings > iCloud > Delete Account (Keep on Phone if you want to transfer contacts, calendars, etc...) then sign in with her new ID
    Settings > Messages > Send & Receive > Apple ID > Sign out then in with new
    Settings > FaceTime > Apple ID > Sign out then in with new
    Use the same Apple ID here:
    Settings > iTunes & App Stores > Apple ID

  • Using datasources: How to manage transactions when perform. update/insert?

    I've been trying to find information on how datasources manage transacctions but I've been unable to find much information. I've read that for XA datasources you dont have to commit, save and rollback manually, but how are transactions managed for non-XA datasouces?+ I've only seen examples with select statements, such as in the example on this page [this page|http://developers.sun.com/jscreator/reference/techart/2/jdbc.html], but I've never seen a working example with insert and updates.
    Can anyone point me to some examples?*
    Also, when I use the DriverManager instead of the DataSource for doing updates/inserts I use the setTransactionIsolation(Connection.TRANSACTION_SERIALIZABLE) method. Can that be used with datasources?+
    Thank you <img class="emoticon" src="images/emoticons/laugh.gif" border="0" alt="" />

    If you are using a connection pool, how are you guaranteeing that you are using the same connection throughout the same application? Look at the following:
    1) You grab a connection from the pool
    2) You call procedure A
    3) You call procedure B and issue rollback in procedure
    4) You call procedure C
    5) You close your connection
    Are you saying you made changes in procedure A and when you issued a hard rollback in procedure B, the changes in A were not rolled back?
    I'm guessing the problem is that you are not issuing your statements using the same connection.

  • HT1918 How do i change the phone number on my apple ID account so i can use messaging with my Ipod Touch 4th gen?

    How do I change my phone number on my Apple ID account? Not the number for billing. I got a new Ipod touch and when I was setting it up my emails where correct but the phone number was wrong. The gentlemen at the Apple Store told me just to go on my account on my computer and change it but i cant find where. Only part i know how to change is the billing number. Thanks.

    If you can remember them their current answers you can login here and change them : https://appleid.apple.com , click on 'Manage your Apple ID' and then 'Password and Security' on the left-hand side of your account's page
    If you can't remember their answers and you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then see if the instructions on this user tip helps you get them reset : https://discussions.apple.com/docs/DOC-4551

  • How do i change the phone number for my apple id on my iphone5 ?

    how do i change my phone number under my apple id on an iphone5 ?

    To manage the Apple ID:
    https://appleid.apple.com

  • How do i change the phone number associated with my apple ID?

    how do i change the phone number associated with my apple id and attach it to my ipad?

    Tap "Manage your Apple ID"
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/

  • How do I remove my phone number from my Apple ID?

    How do I remove my phone number from my Apple ID?

    On a computer, go to https://appleid.apple.com/ and select "Manage your Apple ID". Log in with your Apple ID and password, then select Phone Numbers from the left column. You can edit or delete them from your account.
    Be sure to click the Save Changes button before you leave that page.

  • How or can I insert a picture to an exsisting photo album in between other pictures?

    How or can I insert a picture to an exsisting photo album in between other pictures?

    The easiest is to use 3rd party apps like Photo Manager Pro; you can drag pictures to any position.
    Before
    http://i1224.photobucket.com/albums/ee374/Diavonex/5cd4653fb07b9aa0ef10642dc01c3 26a.jpg
    After
    http://i1224.photobucket.com/albums/ee374/Diavonex/c276e25c9f93f43081b79db6d309d c6d.jpg

  • I still can't figure out how to manage & sync my medias.

    Hi everyone
    I have to admit, I've owned an Iphone for 2 years now and I still can't figure out how to manage my pictures. I'm confused, I don't know how to get them out, import them...I have 3 albums in my phone taking a huge amount of space with duplicates in : camera roll, photo library , last importation ...!
    same goes for Adress book.
    Can anybody help and explain to me how that works ? Explain it to me as if I'm a 4 year old !
    Here are some specific questions :
    where are the pictures saved on the macbook ?
    how to manage and delete them in batch ?
    how to keep one folder in the phone ?
    How does this Syncing business work?
    Thanks for your help
    D

    Is this article of any help http://support.apple.com/kb/HT4236 ?

  • How to Commit before Insert Row when Press Create Insert Button ?

    Hi all;
    I'm Using JDev 11.1.1.2.0
    How to Commit before Insert Row when Press Create Insert Button in ADF11g?
    <af:commandButton actionListener="#{bindings.CreateInsert.execute}"
    text="CreateInsert"
    disabled="#{!bindings.CreateInsert.enabled}"
    id="cb8" />
    best regards;

    You need to do a custom method eather in managed bean or in Application module to do that.
    in managed bean it would be something like:
    public void CommitAndInsert(ActionEvent actionEvent) {
    OperationBinding opCommit = ADFUtils.findOperation("Commit");
    opCommit.execute();
    OperationBinding opCreateInsert = ADFUtils.findOperation("CreateInsert");
    opCreateInsert.execute();
    In page bindings Commit and CreateInsert must exist
    then the button actionListener will be
    <af:commandButton actionListener="#{backing.CommitAndInsert}"

  • It's been only 2 months I hav purchased iPhone 5 invested all my savings.i know how I manage to buy an iPhone . But today apple had declared that iPhone 5 had Been discontinued . I m feeling so low n comfort less ,I want apple to support me.pls Help me

    It's been only 2 months I hav purchased iPhone 5 invested all my savings.i know how I manage to buy an iPhone . But today apple had declared that iPhone 5 has Been discontinued . I m feeling so low n comfort less ,I want apple to support me.pls Help me????

    No worries. Apple will continue to support your phone. By "discontinued", they just mean that they are not selling new ones anymore. You will still be able to get IOS7, you will still be able to get support and service, you will still be able to buy apps and music, use FaceTime, Mail, Messages.....
    Nothing has changed except that you can't buy a new one....
    Cheer up - all is well!
    Cheers,
    GB

  • HT1688 I upgraded my Iphone 4s with the new operating system.  After the upgrade was performed all my contacts were lost.  How do I recover my phone contacts?

    I upgraded my Iphone 4s with the new operating system. After the upgrade was performed all my contacts were lost.  How do I recover my phone contacts?

    Synch them back from whatever contact manager or cloud service you stored them in.

Maybe you are looking for

  • How to change menu bar in Korean to English in InDesigh CC

    Hi, I just installed free trial version of InDesign CC on my Mac. I don't know what I selected, but the menu bar shows in Korean which I can read it. However, I prefer to have menu bar in English. Does anybody know how to change it? Do I have to rein

  • Enterprise manager 10.2.0.3.0

    Hello, sorry if i cannot write English well. in my server Oracle enterprise manager not work. for it. i run : emca -repos create but i get error i a log file: Jul 11, 2010 9:09:00 AM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag '-repos' set

  • Email excel attachment issues

    Hi All, My requirement is to convert the alv output to an excel and send it to email in background processing. Am creating the headers through the field cat headings as the headings are dynamic. And the item data through the output internal table of

  • Navigation between JFrames........PLEASE HELP!!!!

    hi does anyone know how i could navigate between JFrames , so when the next button is pressed how do you go from the first frame to another frame. Thanks in advance

  • 3gs sin servicio despues de IOS 6.1

    Dos Cosas: Se me olvido mi codigo de Restricciones, como lo hago para recuperarlo??? Desde que actualice a IOS 6.1 tengo mi iphone Sin Servicio, no encuentra la red de mi empresa telefonica