Is it possible to make the buttons work in Acrobat Reader for iPhone and iPad?

Hello

I shopped in the forums, and although several threads are on the same question, I can't find a conclusive answer. I try to open an interactive pdf with buttons (show/hide actions) on my iphone in Acrobat Reader. However, the functions do not work, then they work fine on my Mac. Am I right in thinking that it is impossible to have buttons in interactive PDF work on my iOS devices? All applications are up to date. The buttons were created in inDesign.

Thanks in advance for your support.

Hi jom13880393

I apologize for the issue.

However, the navigation buttons options you speak is not available in the app and there is no solution for it right now.

Kind regards

Supriya

Tags: Adobe Document

Similar Questions

  • Anyone know why the phone was hidden on white on iphone and ipad, but that works on android, how to fix?

    Anyone know why the phone was hidden on white on iphone and ipad, but that works on android, how to fix? TKX

    iOS devices automatically detect the phone numbers and make a link. We use link styles you have defined.

    Go to Site settings and create a new style of link with colors that will work and apply.

  • TimeCapsule wifi does not work for iphone and ipad, but doesn't work for laptops

    I just got a new 3 TB timecapsule to replace my old 1 TB timecapsule.  Everything seems in place and I transferred all my data to the new.  Our computers two apple laptops gets wifi nine immediately, but our two iphones and an ipad receive no wifi.  They show that they are connected to a new network, but not WiFi.  Can someone tell me what should I do?  Thank you!

    On the iphones and ipad clear on all networks known. Restart the device and make a new configuration of the network.

    If they are later version idevices... test in the same room as the TC. Still have problems reset the TC and give it a new configuration... Use very short names, without spaces and pure alphanumeric characters. Test first without password... It should work fine... Then add a password... Make sure that it is as pure of 8 to 20 alphanumeric characters.

  • Incorrect link to the multilingual version of Acrobat Reader for Mac

    Hello

    I wanted to install the multilingual version of Acrobat Reader in a MacBook,

    then I came across the link below which takes you to the version of Windows.


    Adobe - Adobe Reader: for Macintosh: Adobe Reader 10.1 - multiple languages

    As I'm sure there are a lot of Mac users who need the multilingual version,

    could someone please fix the link or post the link here?

    Thanks in advance

    Adobe Acrobat Reader DC install for all versions

  • I downloaded the acrobat on my iPhone and IPAD player, and when I want to open an attachment the reader is not an option. How can I solve the problem

    I downloaded Acrobat reader on my iPhone and IPAD. When I go to open an attachment, acrobat is not an option. How can I solve this problem?

    Hello

    What is the application you use to read email?  It's Apple Mail (the default mail on iPhone and iPad app)?

    Please take a look at the section "Open email" the following documents of the FAQ.

    How to open PDF documents in Adobe Acrobat DC for iOS (iPad version)

    How to open PDF documents in Adobe Acrobat DC for iOS (iPhone version)

    If Acrobat Reader for iOS is installed properly on your iPhone and iPad, Acrobat Reader should appear as one of the options for the iOS 'Open In' feature.

    Please let us know if you have any other questions.

  • Tips on improving the graphics for the app for iPhone and iPad

    I'm creating an application for iPad and iPhone 4 and it looks terrible on the iPhone 4.

    I created the Flash file in Flash IDE with Movie CS5.5 size 1024 x 768 and I use the AIR according to the parameters of IOS:

    Rendering: CPU

    Device: iPhone and iPad

    Resolution: high

    All of my graphics are vector, so I assumed that it would be the crisp air on both devices. It is not as perfect as you are looking for on the iPad as it appears on my PC screen, but I can live with that. However, I can't live with the appearance of the iPhone 4.

    So I'm looking for advice on how to improve the appearance of the iPhone 4.

    As far as I know, there isn't a way to use the 2 sets of graphs, one for each device. Please correct me if this is wrong and she would offer me a solution.

    Do all the graphics in PNG would be a solution?

    BTW I use AIR 3.2 SDK if that has to do any and my graphics are static.

    Thanks in advance.

    Nice vectors will look depends on the setting of stage.quality. Try it on medium or high instead of low. In addition, CPU or direct is likely to give more beautiful than GPU vectors only.

  • Apple removes all functions of the Apple watches sold in the UNITED Arab Emirates, as they do for Iphones and Ipads

    I am considering the purchase of an Apple Watch in the Dubai UAE UNITED. I bought an Ipad in Dubai and was horrified when I discovered that Facetime is disabled on all Apple devices sold in the UNITED Arab Emirates. I want to know is whether Apple are also turning off features Apple Watch som please the Government of the UNITED Arab Emirates?

    Hi, Rodolphe

    There are no regional differences for Apple Watch in hardware or software.

    The included USB adapter pins will be located in the country of purchase.

  • Flash Builder 4.6 for mobile: one app for IPhone and Ipad? Or separate the 2 apps?

    Can I create a simple application that loads different viewNavigators etc. depending on the size of the target device screen, or should I be looking at developing 2 different applications, one for the other for smart phones and tablets?

    For example on the shelves, we could use SplitViewNavigator and then on smart phone that we could use a series of theses or tab navigator or something more suited to the small screen.

    Pointers to information on this topic would be great, thanks

    I just found this ad that seems to address the topic:

    http://www.riagora.com/2011/06/Adaptive-UI-Mobile-vs-Tablet/

  • Why is the cloud creative mobile applications only available for iphone and ipad? I need basic apps Android

    Where mobile applications base android? Why people do you assume that everyone uses an ipad or iphone

    I want applications android mobiles!

    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform for feature requests

  • Make the button invisible when flv starts again

    Hello

    Please, is - can anyone help me and tell me how do to have a button instance become invisible when you click the play button on the skin.swf file? Maybe there is another way to do what I'm doing.

    I have a Flash 8 file with a pointing to an FLV file FLVPlayback component. I use an outer skin for controls. When the video ended I displaying a button, but if the person wants to play the video again the button must again become invisible. I guess I need to create an actionscript that says: If the video is in progress (at all) the button is invisible. But how?... is the big question for me.

    Any help would be great.

    Thank you
    thepopguy

    This is possible. You need actionscript to check the status of the video, if it plays then the button is invisible. This is what we call an event listener. You must give the component an instance name - like vid. Then, use this code on the frame:

    Wait reading sequence
    var vidList:Object = new Object();
    vidList.playing = function() {}
    Button1._visible = false;
    other actions go here
    }
    vid.addEventListener ("play", vidList);
    stop;

    Listen to movie stop
    var vidList2:Object = new Object();
    vidList2.stopped = function() {}
    Button1._visible = true;
    other actions go here
    }
    vid.addEventListener ("order", vidList2);
    stop;

    ============
    This code will actually listen to the playback of the sequence, and then it will make the button invisible. He listens for the film to stop, and it makes them visible again.

    Sample:
    http://www.johnkalnin.com/FlashHelp/vid-isPlaying-Inv.html

    Flash 8 source:
    http://www.johnkalnin.com/FlashHelp/vid-isPlaying-Inv.fla

  • I can make the universal app (iPhone and iPad)?

    How can I make uhearing app that support for iPhone and iPad?

    I want that the r resolution support in iPhone and iPad (HD)...

    Thank you!

    You can check the box full screen and select iPhone and iPad in the Device menu.

    You have the choice of the size of the stage that you use. Either have a size that is suitable for iPhone and additional content above and below the plate, or just for the iPad and have additional content on the left and right.

    These days, I'm doing the second option, because then the content works for Android devices as well. Thus, having a stage that is 1024 x 768, but include background graphics extra left and right edges of the stage. That will be happy then show when you're on an iPhone, and the whole scene is scaled down to having the right size.

    If you have lots of additional background, like for example 512 pixels on each side of the stage, it is sufficient to too much work for all current Android devices.

  • I use Firefox on my Mac (OS 10.9.2). V29 Firefox has encouraged the synchronization. Can I sync with my iPhone and iPad?

    I see conflicting information about Firefox for Mac OS. It works on my Mac OS X desktop.
    What is the official position?
    If Firefox is not available for iPhone and iPad, is such a product in the pipeline?

    Sorry, that Mozilla has no plan for a version of Firefox for iOS devices. Regarding the Firefox sync service, Mozilla has interrupted the application for some time ago iOS devices, but Favorites on the Go app took what Mozilla has created for iOS and synchronization service. Unfortunately, Firefox 29 has a new version of sync that is not backward compatible, so on the go bookmarks must be updated to work with the new version of Sync.

    I think that the major problem between Apple iOS and Mozilla's 'walled garden' approach Apple software running on their devices and approach open source Mozilla to the software.

  • Is it possible to make a button go to 1 of the 3 scenes?

    Is it possible to make a button go to 1 of the 3 scenes? I do an animation and I need to when you click the button it go 1 3 scenes for this button, but he chose 1 of these 3 scenes at random. I'm new to actionscript, I don't know what I'm doing.

    the first frame of each scene label (for example, "frame1_scene1", "frame1_scene2" etc.);

    You can use:

    {btn.onRelease = function ()}

    _root.gotoAndPlay ("frame1_scene" + math.ceil (3 * Math.Random ()));

    }

  • iPod stopped playing in the middle of a song. The screen still shows the song. None of the buttons work. Cannot close the iPod is facing down. How can I fix it?

    my iPod, the generation classic 32 GB, stopped playing in the middle of a song. The screen is stuck on this song. None of the buttons work.  I can't stop the iPod.  How can I fix it?

    Hi, lesliefromhowell!

    Thank you for reaching out by Apple Support communities. After reading your post, I understand that your iPod Classic does not. I count on my iPod for music on the go and want to make sure that you can use your own without problem!

    Relying on the buttons have not helped get the iPod to start playing or to restart, please follow the steps outlined in the article below to reset your iPod.

    Learn how to reset your iPod

    You'll want to use the instructions under the "iPod, iPod (scroll wheel), iPod (touch wheel), and iPod (dock connector)" section. These instructions are the following:

    iPod, iPod (scroll wheel), iPod (touch wheel), and iPod (dock connector)

    To reset your iPod, follow these steps:

    1. Slide the Hold switch to the locked position and then come back!
    2. Hold down Menu and Play/Pause all buttons until you see the logo Apple/iPod (about 6-8 seconds). You may need to repeat this step.

    If you can always reset your iPod, follow these steps:

    1. Connect your iPod to a power adapter and plug the adapter into a power outlet.
      You can also connect your iPod to your computer. Make sure that the computer is on and that it is not set to go to sleep.
    2. Try resetting your iPod again.

    Good listening!

  • How to make the button to set the properties of auto-scale one of the Axes on the graphical indicator so I can turn on or off when I press on it. In the Labview web UI designer

    How to make the button to set the properties of auto-scale one of the Axes on the graphical indicator so I can turn on or off when I press on it.

    I need to change the adjustment vaguely Autoscale property for my graphic indicator. Can someone help me please.

    Thank you!

    Hello

    I have confirmed that there is currently no way programmatically enable/disable autoscaling for axes on the LabVIEW graphical indicator generator of the user Web interface. We noted this to possibly be implemented in the future; Sorry for the inconvenience.

Maybe you are looking for