PDF page parameter doesn't work in Mac

opening a pdf with the following url doesn't make the current
page 4. Only happens in Mac.
file:///Users/bk/abc.pdf#page=4
Any thoughts?

Known bug.

Similar Messages

  • Google page translate doesn't work

    Hi,
    Google translate page translate doesn't work in firefox 29.0.1 (mac osx).
    Translate.google.com -> type in url in the box and then translate gives me
    "This page was not retrieved from its original location over a secure connection."
    and then nothing happens. I cleared caches and cookies, also did safe mode to disable all add-ons, still doesn't work.
    Google translate does work in other browsers (Opera 12.16).
    Can someone tell me how to fix this?
    Thanks

    You can look at an extension like one of these.
    *FoxLingo: https://addons.mozilla.org/firefox/addon/foxlingo-translator-dictionary/
    *ImTranslator: https://addons.mozilla.org/firefox/addon/imtranslator/

  • Page naviagation doesn't work after deploy ADF application to Weblogic

    After deploy my ADF application (ear) to Weblogic Server, the page navigation doesn't work. When running the ear on weblogic, I got following warnings:
    <2010-11-5 下午05时06分01秒 CST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application HwtOrder is not versioned.>
    <2010-11-5 下午05时06分38秒 CST> <Warning> <netuix> <BEA-423420> <Redirect is executed in begin or refresh action. Redirect url is /console/console.portal?_nfpb=true&_pageLabel=AppApplicationOverviewPage&AppApplicationOverviewPortlethandle=com.bea.console.handles.AppDeploymentHandle%28%22com.bea%3AName%3DHwtOrder%2CType%3DAppDeployment%22%29.>
    <2010-11-5 下午05时07分33秒 CST> <Warning> <netuix> <BEA-423420> <Redirect is executed in begin or refresh action. Redirect url is /console/console.portal?_nfpb=true&_pageLabel=DiagnosticsViewDomainLogTablePage&DiagnosticsViewDomainLogTablePortlethandle=com.bea.console.handles.LogDispatchHandle%28%22DefaultServer%3BDomainLog%22%29.>
    I can run the application correctly in jdeveloper 11g environment. I think there is something wrong with deployment. Can anyone help me?

    When you target url with .jspx, you are running the page itself, not in the task flow context, so navigation doesn't work.
    In the task flow, your page has 'Activity ID' (which is, for example, 'mainPage' for mainPage.jspx) and the navigation is defined for activity IDs, not pages.
    Pedja

  • Burned in Nero Express through Windows, doesn't work on Mac

    So I just burned a Data DVD (files like music and mac applications) on Windows, using Nero Express, but then I mount it on my Powermac G5 PPC and it doesn't work, my mac doesn't recognize it, what's the problem ?
    Thanks.

    Did you close the disc, or leave it open for further burning sessions?

  • When i convert a word file with a hyperlinks to a PDF file it doesn't work ?? thanks in advance for helping me

    when i convert a word file with a hyperlinks to a PDF file it doesn't work ?? thanks in advance for helping me

    using microsoft word.
    the hyperlink doesn't work in the pdf file (adobe reader).
    adobe reader xi.
    my operating system windows 8.1.
    the attached screen is appeared.

  • IPhone 5 doesn't work with Mac OS 10.5.8 - do I need to ugrade to 10.6 and then upgrade to Mountain Lion or can I just upgrade to Mtn Lion right away?

    iPhone 5 doesn't work with Mac OS 10.5.8 - do I need to ugrade to 10.6 and then upgrade to Mountain Lion or can I just upgrade to Mtn Lion right away?

    At least to 10.6.8. You must do this to upgrade to Mountain Lion.
    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.
    Upgrading to Mountain Lion
    To upgrade to Mountain Lion you must have Snow Leopard 10.6.8 or Lion installed. Purchase and download Mountain Lion from the App Store. Sign in using your Apple ID. Mountain Lion is $19.99 plus tax. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mountain Lion - System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer) - Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) - Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) - Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) - Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) - Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) - Model Identifier 3,1 or later
             7. Xserve (Early 2009) - Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.

  • [BUG]: MakeWritable doesn't work for mac

    I'm trying to use oracle.jdeveloper.refactoring.util.MakeWritableHelper in my plugin, and I found it doesn't work for MAC. The byte code shows it only check the osname for "Windows" and "Linux".
    and some Jdeveloper refactoring feature failed due to can't make file writable, they may also related to this class.

    My MAC version is OSX 10.5.4.
    I don't have a stacktrace. It just fails silently.
    You can easily reproduce this bug by reformat a readonly file.
    Here is the code I reverse engineered from oracle.jdeveloper.refactoring.util.Util.java:
    public static boolean setReadOnly(java.net.URL url, boolean readOnly)
    boolean ret = false;
    java.lang.String cmdarray[] = null;
    java.lang.String platformPathName = oracle.ide.net.URLFileSystem.getPlatformPathName(url);
    java.lang.String osName = java.lang.System.getProperty("os.name", "");
    if(osName.startsWith("Windows"))
    cmdarray = (new java.lang.String[] {
    "ATTRIB", readOnly ? "+R" : "-R", (new StringBuilder()).append('"').append(platformPathName).append('"').toString()
    else
    if(platformPathName.equalsIgnoreCase("Linux"))
    cmdarray = (new java.lang.String[] {
    "chmod", readOnly ? "u-w" : "u+w", (new StringBuilder()).append('"').append(platformPathName).append('"').toString()
    if(cmdarray != null)
    java.lang.Runtime runtime = java.lang.Runtime.getRuntime();
    try
    java.lang.Process process = runtime.exec(cmdarray);
    if(process.waitFor() == 0)
    ret = (new File(platformPathName)).canWrite();
    if(ret)
    oracle.ide.model.Node node = oracle.ide.model.NodeFactory.find(url);
    if(node instanceof oracle.ide.model.TextNode)
    oracle.ide.model.TextNode textNode = (oracle.ide.model.TextNode)node;
    textNode.isReadOnly();
    catch(java.io.IOException e)
    e.printStackTrace();
    catch(java.lang.InterruptedException e)
    e.printStackTrace();
    return ret;
    }

  • It doesn't work on mac os yosmite....can u help?

    it doesn't work on mac os yosmite....can u help? my current version now is 11.0

    http://adobe.ly/DVA_updates

  • Account doesn't work on Mac Mail but does on iPhone

    I have a IMAP email account with my company that works on my iPhone and in Entourage but doesn't work in Mac Mail. I have tried to copy the settings and even did a full erase and reinstall of Leopard and no one has an idea why it won't work, the hosting company or Pro Care. Any idea out there?

    No idea what  "My apple ID account doesn't work on my itunes but it does on the web" means.
    Please explain

  • Both Chrome and Safari interrupt online streaming to request/demand an update for a PC program that doesn't work on Macs. What is going on?

    Both Chrome and Safari interrupt online streaming to request/demand an update for a PC program that doesn't work on Macs. What is going on?

    The update alerts are fake, and are intended to dupe you into installing malware or disclosing private information so that your identity can be stolen.
    You might get the alerts when visiting a website that has been hacked. Don't visit the site again. If applicable, notify the site administrator of the problem, but don't send email to an unknown party.
    If you get the alerts when visiting more than one well-known website, such as Google, YouTube, or Facebook, then they're almost certainly the result of an attack on your router that has caused you to get false results from looking up the addresses of Internet servers. Requests sent to those sites are redirected to a server controlled by the attacker. It's possible, but less likely, that the DNS server used by your ISP has been attacked, but you should assume that the router is at fault until proven otherwise.
    The router's documentation should tell you how to reset it to the factory default state. Usually there's a pinhole switch somewhere in the back. It may be labeled "RESET." Insert the end of a straightened paper clip or a similar tool and press the button inside for perhaps 15 seconds, or as long as the instructions specify.
    After resetting the router, quit the web browser and relaunch it while holding down the shift key. From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. Do the equivalent if you use another browser. Open the Downloads folder and delete anything you don't recognize.
    Then go through the router's initial setup procedure. I can't be specific, because it's different for every model. The key points are these:
    1. Don't allow the router to be administered from the WAN (Internet) port, if it has that option. Most do.
    2. Set a strong password to protect the router's settings: at least ten random upper- and lower-case letters and digits. Don't use the default password or any other that could be guessed. Save the password in your keychain. Any password that you can remember is weak.
    3. If the router is wireless, or if you have a wireless access point on the network, use "WPA 2 Personal" security and set a different strong password to protect the network. If the router or access point doesn't support WPA 2, it's obsolete and must be replaced.
    During the time the router was compromised, you were redirected to bogus websites. If you ever connected to a secure site and got a warning from your browser that the identity of the server could not be verified, and you dismissed that warning in order to log in, assume that your credentials for the site have been stolen and that the attacker has control of the account. This warning also applies to all websites on which you saw the fake update alerts.
    Check the router manufacturer's website for a firmware update.
    If you downloaded and installed what you thought was a software update, ask for instructions.

  • Software doesn't work on mac

    hi, i just got an airbook. i have never had a mac before. it is nice, but my language software ( digital publishing) doesn't work on mac, but i don't want xp or vista on my computer. are there any patches or other software which could make my language software work? thanks

    *"are there any patches or other software which could make my language software work?"*
    You could try CrossoverMac from Codeweavers.com
    Otherwise, you'll need to see if there is a Mac version of your software, or else install Windows on your Mac.

  • When I want to DL an app and after I enter my ID and password , DL starts . But then a message shows up and want me to verify my payment info. And redirects me to that page . Every thing I do on that page it doesn't work and then I can't DL.

    When I want to DL an app and after I enter my ID and password , DL starts . But then a message shows up and want me to verify my payment info. And redirects me to that page . Every thing I do on that page it doesn't work and then I can't DL.

    Do this on your iTunes program on the computer instead. Your Credit Card used on the profile is probably maxed.

  • I bought Export PDF - and it doesn't work - it tells me to buy it again

    I bought Export PDF - and it doesn't work - it tells me to buy it again

    Hello Erich,
    I'm not sure what caused the trouble you had accessing your subscription.  I've asked our Customer Service team to cancel and refund the duplicate subscription you purchased on 19 March.  If you're still having difficulty using ExportPDF, let us know and we'll try to help!
    -David

  • BrowseForFileToSubmit doesn't work on MAC

    Don't know if anyone else has ever had this problem and resolved it but here goes.
    I have a PDF form with a large number of fields including one for attaching an image file. I am using the following command on the focus event of my appImage field: this.getField("appImage").browseForFileToSubmit();
    It works fine on the PCs I test on but it refuses to work on any Mac. I can't even get focus on the field, the cursor doesn't change from a hand.
    The field is required, NOT read only, and has it's file select attribute set. I've RTF'ingM, Googled the problem, searched Adobe main site, Adobe forums and asked other developers for their opinions / advice but as of yet no-one can explain the problem let alone fix it.
    Can anyone out there help?

    I've just created a brand new 1 page PDF with one text field and applied the JavaScript exactly as it is in the manual on the Mouse Enter event and it doesn't work. Also tried the OnFocus and Mouse Down events.
    Using Mac OSX 10.4.1 with Acrobat Professional 8.1.1
    Also tried Mac OSX 10.4 With Acrobat Professional 8.0.0
    On PCs the form works fine. My problem is on the MAC.
    Thanks

  • Acrobat Pdf viewer Plugin Doesn't work Mozilla Products

    Mountain Lion (OSX.8.2)
    500 GB Hard Drive rought 200 GB left empty
    Intel i7 2.8 GHZ Processor
    8 GB System RAM.
    In Acrobat and Reader XI (and X as well) the PDF viewer Plugin does not work. In fact it doesn't does not even show up in the Addons > Plugins.
    There are three, only one appears:
    The Adobe PDFViewerNPAPI.plugin only shows up.
    When I try to open a PDF  in any Browser that use Mozilla's Gecko engine. Just see a Bright white Screen.
    I don't use Chrome or Safari on Principle. But have tested  and works fine.
    Other Browsers that use webkit works just fine.
    Since posting this to Plugins which no one has even read. (group appears non functioning) I decided to post here.
    Just to make make sure another Plugin is not interfering I removed all my Plugins and just installed the the three Plugins above. Same issue. According to addons > Plugins
    only the NPAPI plugin exist.
    I've posted a Bug report once again Like I have been doing on this problem since the switch from OSX.1 on Up for acrobat/Reader every new version that comes out.
    Maybe someone that knows what the problem is can let me know what to fix.

    Where are they advertising it? Perhaps there's more up to date information but I look in
    http://www.adobe.com/products/reader/tech-specs.html - maybe the problem is that I'm looking at Reader, not Acrobat?
    Adobe Reader XI / Tech specs
    Mac OS
    Intel® processor
    Mac OS X v10.6.4, v10.7.2, or v10.8
    1GB of RAM
    350MB of available hard-disk space
    1024x768 screen resolution
    Safari 5.1 for Mac OS X v10.6.8 or v10.7.2; Safari 5.2 for Mac OS X v10.8; Safari 6.0 for Mac OS X v10.7.4 or v10.8

Maybe you are looking for

  • How can I update my IPad when there is no item for it on the menu of my ipad

    I cannot find a way to up date my iPad because there isn't an item on the menu for it. No one seems to be able to get round this my iPad model is MC 769B and is only 14MB but surely I should be able to update to an iOS 5 or 6?

  • Can't reverse aggregated payment document

    Hi, I can't reverse an aggregated payment document with FP08. I get the error message IUEEDPPLOTA 245 "Payment doc. 1234 is allocated to a contract acct for aggregated posting".  What can I do. Best regards, Ben

  • JDBC Refcursor error

    I am trying to access a procedure returning refcursor. It works great in TOAD. Except when I try to access JDBC driver throws wierd error stating. This error shows at the execute statement java.lang.StringIndexOutOfBoundsException: String index out o

  • Brief conclusion of Boss class and there interface concept or basic programming architecture ?

    I am new in this indesign development so i am studying the  documentation provide by sdk till date i think lots of concept are clear to me but still while doing practicle implementation many concept intermixed in my mind .one of them is "command" .so

  • Hex values in byte

    I need to encode a message string that consists of a byte array to be sent to a device. Two of the items are numeric values that are to be represented as hex 0x00 - 0xFF. This needs to be placed into a single byte. My question is this, can I use a sh