Interactive buttons working on Adobe Viewer but no on the final App

Hi everyone,
I got a lot of troubles with interactive buttons:
I made buttons with link with "pageTo" and with "getURL" (and the syntax "navto://Article#2").
What I already know:
• when using the "navto" syntax, the first page is the 0 (and not the 1 page);
• I double checked the Article's spelling and it's correct.
the problem is that when I test the app with the Adobe Viewer on my iPad those links work well, but when I create the App and I test the .ipa file on my iPad those links don't work anymore.
I'm working on Mac.
anybody has any idea?
thank you very much!

thank you!
I saw that one link is actually working and it refers "outside" to another article in the folio, while all the links that refer within the same article are not working.
can you please confirm this or is this just a unpredictable behavior?
I'm asking this because I have to choose a workaround to fix this.
the options are:
1.multistate objects to simulate the new pages;
2.move all the pages in new articles so I can keep just links that refer to "outside";
(I prefer the first solution because in this scenario I can't hide the pages frow the folio flow).
thank you very much for your help!

Similar Messages

  • Help! "Create links to other articles" not working on the final App

    Hello everybody,
    I've done an App for an independent band of Spain, that's a very nice format for musicians (you know, like the booklet with the lyrics), but now, when I have the Developer Edition App on my iPad, something is wrong.
    I have an index on this App, and inside it I have a menu to go to the article called "Remixes", and inside this article, I have several pages (one for each remix/artist). I'm using the order navto://... All is running well in DPS, but not on the final App (developer). On the App, for example, the order navto://remixes#2 isn't working! So when I'm clicking on the menu, I'm going to the first page of the article always! That's a big problem because all this App was thought in this way
    By the way, I'm working under the 27 Viewer Version.
    Anybody could help me with that?
    Thanks a lot!

    Thank you Bob. Hopefully Adobe can fix it early next week... I'll wait for a solution asap

  • I recently Updated my phone and my front camera stopped working its pitch black but still shows the icons on the screen but when i get off the app and get back on and flip the camera to my face view it works fine

    I recently Updated my phone and my front camera stopped working its pitch black but still shows the icons on the screen but when i get off the app and get back on and flip the camera to my face view it works fine

    Hi there Fgonzalez2015,
    You may find the camera troubleshooting steps in the article below helpful.
    Get help with the camera on your iPhone, iPad, or iPod touch
    You see a closed lens or black screen
    If you see a closed lens or black screen when you open the Camera app, try these steps:
    Make sure that there’s nothing blocking the camera lens. If you’re using a case, try removing it.
    Force the app to close, then open the Camera app again.
    Restart your device, then open the Camera app again.
    If your device has a front and rear camera, try both cameras by tapping the camera swap icon . If you see the closed lens or black screen on only one camera, take your device to an Apple Retail Store or Authorized Service Provider for more help.
    -Griff W.  

  • Since I have Yosemite on my iMac I can't view PDF files in Safari anymore.  It keeps telling me to upgrade my Adobe Reader, but it is the latest version.  Please help?  I don't have this problem on my Macbook that does not have Yosemite installed.

    Since I have Yosemite on my iMac I can't view PDF files in Safari anymore.  It keeps telling me to upgrade my Adobe Reader, but it is the latest version.  Please help?  I don't have this problem on my Macbook that does not have Yosemite installed.

    Back up all data before making any changes. Please take each of the following steps until the problem is resolved.
    Step 1
    If Adobe Reader or Acrobat is installed, and the problem is just that you can't print or save PDF's displayed in Safari, you may be able to do so by moving the cursor to the the bottom edge of the page, somewhere near the middle. A black toolbar should appear under the cursor. Click the printer or disk icon.
    Step 2
    There should be a setting in its preferences of the Adobe application such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected.
    Step 3
    If you get a message such as ""Adobe Reader blocked for this website," then from the Safari menu bar, select
              Safari ▹ Preferences... ▹ Security
    and check the box marked
              Allow Plug-ins
    Then click
              Manage Website Settings...
    and make any required changes to the security settings for the Adobe PDF plugin.
    Step 4
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
    /Library/Internet Plug-ins
    In the Finder, select
              Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens by pressing command-V, then press return.
    From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
    Step 5
    The "Silverlight" web plugin distributed by Microsoft can interfere with PDF display in Safari, so you may need to remove it, if it's present. The same goes for a plugin called "iGetter," and perhaps others—I don't have a complete list. Don't remove Silverlight if you use the "Netflix" video-streaming service.
    Step 6
    Do as in Step 4 with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari.

  • My Javascript works in Dreamweaver Live View, But Not On The Server

    I set up a javascript function to set the focus to the first field in a form as the page loads.  It works fine in Dreamweaver's Live View, but not on the local or remote servers.  Here's the code:
    In the heading I have the following function:
    <script type="text/javascript">
    function setFocus()
    document.getElementById("firstname").focus();
    </script>
    In the <head tag, I have:
    <body onload="setFocus()" ...
    and the first field in the form is:
                <input name="firstname" type="text" id="firstname" style="text-align: center; color: #009; text-transform: capitalize; font-variant: normal; font-weight: bold; line-height: normal; font-style: normal; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" tabindex="1" value="<?php echo $fstname; ?>" size="15" maxlength="20">
    I guess I must be missing something, but don't know what.

    EUREKA! (and OOOPPPPSS!)  I found the problem (and I thought javascript was case sensitive - according to the tutorial, it's supposed to be).
    Here's apparently wha hoppen.  The first field in the form is the person's first name, but it's also a SPRY validation field.  I gave the actual field the name and id of "firstname", and the SPRY validation the name "FirstName", figuring that scripts would be case sensitive.  In fact, when I first inserted the SPRY object, I tried to name it "firstname" also, but it wouldn't let me, so I capitalized the first letters, and it accepted that; that made me feel that this is OK.  Here's the entire field's code:          <label>First Name:
               <span id="FirstName">               
                <input name="fstname" type="text" id="fstname" style="text-align: center; color: #009; text-transform: capitalize; font-variant: normal; font-weight: bold; line-height: normal; font-style: normal; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" tabindex="1" value="<?php echo $fstname; ?>" size="15" maxlength="20">
                <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldMinCharsMsg">Minimum number of characters not met.</span></span></label>
    I accidentally tripped over the answer when I started using the Dreamweaver's Edit>Find Next search to see if I had something else named "firstname", and I found that it located every permutation of that word (e.g. firstname, FirstName, FIRSTNAME etc.).  Having seen that, I tried changing the "name=" and "id=" to "fstname, and the same corresponding change in the javascript, and VOILA! it worked.  That leaves me rather curious about this alleged "case sensitivity" thing.  I get the impression that it IS case sensitive, except when IT'S NOT.  How does this work, and how do I know when it is and isn't?

  • I try to create an html for IPad. The html page contains an element overlapping a video, now it works as for view but the focus is still with video. This denies the event of overlapping element from occuring. Can please anyone help to solve this issue?

    I try to create an html for IPad. The html page contains an element overlapping a video, now it works as for view but the focus is still with video. This denies the event of overlapping element from occuring. Can please anyone help to solve this issue?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • HELP!! WRT54G2 works for one computer, but not for the other

    I have a WRT54G2 and it is connected to 2 computers. The internet works in one computer, but not on the other. The tech support said i needed to configure it or firmware or something like that. But my product is out of warranty and I really need the internet on the other computer as well. Please Help!!!

    As your one computer is working fine then there is no problem with the router so far...
    The computer which is not working...check the IP Address on that...
    Click Start >> All Programs >> Accessories >> Command Prompt...A black box will appear(Command Prompt)...In the Command Prompt window type ipconfig and press 'Enter'...Look for Ethernet Adapter Local Area Connection IP Address , Subnet Mask and Default Gateway...
    IP Address should be 192.168.1.x, Subnet Mask : 255.255.255.0, Default Gateway : 192.168.1.1 (assuming your router is 192.168.1.1)...
    If you get the above mentioned IP Address, Subnet and Gateway Address then you should ping the Gateway, type ping 192.168.1.1 and press Enter...If it gives you request timed out then disable any firewalls, security softwares on the computer...
    If you get 4 replies then type ping 4.2.2.2 and press Enter, if you get request timed out, then you need to upgrade your router's firmware...If you get 4 replies then type ping yahoo.com and press Enter...If you get replies for Yahoo then you should get the Internet after adjusting the browser settings...
    Adjusting Browser Settings : Open an IE, click Tools >> Internet Options, then delete all files, cookies, history, forms...Goto "Connections", make sure Never Dial a Connection is checked, click on LAN Settings and make sure all the options are unchecked...Once you are done click on O.k...Close the IE and re-open it...
    If yahoo times out then provide static DNS on your LAN Connection...
    Click on the Start button >>> Settings >>> Control Panel >>>Network Connections- Right click on the icon for Local Area Connection and go to properties- On the 'General' tab select 'Internet Protocol TCP/IP' and click on the Properties button- Select 'Use the Following DNS Settings' Preferred DNS 4.2.2.2 Alternate DNS - 192.168.1.1>>Click on Ok button to Save and Click on "Close" on main Properties window...You should be able to go online...

  • HT2513 my iCal shows events in the "month" view but not in the "week" view? why is that?

    my iCal shows events in the "month" view but not in the "week" view? why is that? doesnt sync automatically all the time only sometimes

    my iCal shows events in the "month" view but not in the "week" view? why is that? doesnt sync automatically all the time only sometimes

  • I have a bluetooth headset that only works in phone feature but not in itunes or apps on my iphone, please help

    I have a bluetooth headset that only works in phone feature but not in itunes or apps on my iphone, please help.
    It works fine through my macbook, can't find anything in settings on iphone to resolve problem

    The headset has to have A2DP capability, which most (I believe) do not.
    http://en.wikipedia.org/wiki/Bluetooth_profile

  • I would like to update adobe flash but not install the google toolbar, no option to do so, I had to

    i would like to update adobe flash but not install the google toolbar, no option to do so, I had to abort the update. thank you.

    When I do the update, I get a request about google and decline. I am not sure why you do not get such a selection. To get better information, try the Flash forum.

  • My ipod app no longer works. Everytime I go to open the ipod app it stays open for a second and then shuts down. I am not able to get anything to play either through the standard ipod controls or the multitasking control panel. I'm sure there will be an u

    my ipod app no longer works. Everytime I go to open the ipod app it stays open for a second and then shuts down. I am not able to get anything to play either through the standard ipod controls or the multitasking control panel. I'm sure there will be an update soon to correct this, i just wanted to see if anyone else was having the same problem.
    wen i open ipod in my iphone ,, it gets stuck ,, and get backs to the menu ,,, and doesnot play anything ,, not video nor song

    If your phone is not officially unlocked by the carrier in the UK, you can not use the phone using another SIM, unless you modify the software or the SIM, which can lead to unexpected results, such as non functioning apps.
    Unauthorized modification of iPhone OS has been a major source of instability, disruption of services, and other issues
    Problems resulting from those modifications can't be discussed in these forums, due to the Terms of Use

  • I have a G5 iMac. The browser and other apps were deleted by mistake.  If I had a working browser I think I could recoverss the other apps I need.  Question is .... Where to start without a browser?

    I have a G5 iMac. The browser and other apps were deleted by mistake.  If I had a working browser I think I could recover the other apps I need.  Question is .... Where to start without a browser?

    Well, go to a library or friends house & download file.  Do not expand. copy to zip drive. etc.
    Here is how to download iCab from the terminal.  the curl command reads html page.  I fished out the download link.  I think you want 501.  To get link, click on what download you want.  In the page that comes up . Look at the http source.  search for auto & copy link.
    http://icab.de/dl.php
    Macintosh-HD -> Applications -> Utilities -> Terminal
    # copy the following line to terminal.
    curl -O  http://www.costantini-net.de/iCab/iCab305_UB_OSX.zip
    # Or
    curl -O http://icab.clauss-net.de/icab/iCab_501_UB.zip
    # my termina commands.  Put file in home folder.
    mac $ curl -O  http://www.costantini-net.de/iCab/iCab305_UB_OSX.zip
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    26 6592k   26 1729k    0     0  44360      0  0:02:32  0:00:39  0:01:53 40984^C
    mac $ pwd
    /Users/mac
    mac $ ls i*
    iCab305_UB_OSX.zip
    mac $ ls -l i*
    -rw-r--r--   1 mac  staff       1M Jul 16 13:49 iCab305_UB_OSX.zip
    mac $

  • HT1725 How do I get my Netflix to work on my first generation IPad?  The new app update made it stop working.

    How do I get my Netflix to work on my first generation IPad?  The new app update made it stop working.

    See Kappy's great User Tips.
    See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities
    https://discussions.apple.com/docs/DOC-4551
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Send Apple an email request for help at: Apple - Support - iTunes Store - Contact Us http://www.apple.com/emea/support/itunes/contact.html
    Call Apple Support in your country: Customer Service: Contacting Apple for support and service http://support.apple.com/kb/HE57
     Cheers, Tom

  • I'm having issues with my TV programmes artwork. It shows in iTunes but not on the Videos app.

    I'm having issues with my TV programmes artwork. The artwork shows in iTunes but not on the Videos app. Is anyone else having a similar issue?

    Your feed is at http://feeds.feedburner.com/blogspot/GPKwx
    The latest episode in it is 23 July: the later episodes haven't made it into the feed so either the connection to Feedburner has failed or there is something about the recent episodes which is causing them not to make it into the feed. It's not obvious from looking at the web page what this might be.

  • Email button works in preview mode but not when published to PDF

    I thought I had cracked everything but -  I have set preferences to email results to a specific address. In preview mode this works and outlook is opened with all the details. Once I have published to Acrobat 9 pdf - there is no response to the email button. If I play the SWF file I have the same problem. What am I doing wrong? Using Captivate 5 trial and Acrobat 9.3 Pro.

    HI there
    You might try adding the location to the trusted locations list as described below:
    Click here to view
    But i'm guessing you didn't see the link below.
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

Maybe you are looking for

  • I can't get rid of iMesh search box - got rid of toolbar but not search box - it is not included in add-ons

    I downloaded iMesh thinking it was just a normal music-streaming site. However, it downloads a toolbar and search box. I seemed to have deleted the toolbar with no problem. However, the search box is still there, to the right of the navigation box, a

  • Send Variable From ASP to Flash to ASP

    I'm really, really new to Flash and using Flash 8 Pro. This is what I'm trying to do. I have a list of cars, when someone clicks on a car, they are taken to a page with details about the car and a flash gallery. The Flash Gallery is reads the image f

  • Android AcousticEchoCanceler

    Hi, When using Skype on Andoroid, there is no AEC option coming from Skype. That's why mobile phone can't use its embeded EC solution. Only Hangout(Google)(48Khz) is sending AEC option. I think it's better to use because it's difficult to know delay

  • Adding columns in a open sql select query

    Hi Everyone, I would like to add the values of n columns of a table and place them in one column, how can i achieve this in open sql. In oracle native sql the query will look like this: Select col1 + col2 + col3 AS col from tab1; On a similar grounds

  • Alter system kill session in RAC

    Hi, After identifying all inactive jdbc sessions or blocking sessions from gv$session or gv$lock respectively, should alter system kill session executed in both instances of RAC?, Can't we execute like alter system kill session ' inst_id,sid,serial#'