Event.hits property does not work at Adobe 9 (repost)

Hello to everyone!
There is a some PDF file, which works fine on Adobe 8 and does not work properly on Adobe 9.
You can download this file from the following hyper-link:
http://www.pdf3d.co.uk/pdf/box97.pdf
When I open this file on Adobe 8 then gold arrow works fine.
In this case the gold arrow (pointer) has a true location on the box.
When I open this file on Adobe 9 then gold arrow has a false location.
In this case the gold arrow (pointer) has a false location on the box.
Could somebody can to me a some suggestion?
Please note if you are using "Orthographic" mode then the gold arrow works fine and has a true location on the box (both Adobe 9 and Adobe .
If you are using "Perspective" mode then the problem is occurred.
In this case the gold arrow (pointer) has a false location on the box (on Adobe 9 only).
I am guessing that something in "Perspective algorithm" has been broken.
Could somebody can to me a some suggestion?
Best Regards,
Peter

Hello to everyone!
There is a some PDF file, which works fine on Adobe 8 and does not work properly on Adobe 9.
You can download this file from the following hyper-link:
http://www.pdf3d.co.uk/pdf/box97.pdf
When I open this file on Adobe 8 then gold arrow works fine.
In this case the gold arrow (pointer) has a true location on the box.
When I open this file on Adobe 9 then gold arrow has a false location.
In this case the gold arrow (pointer) has a false location on the box.
Could somebody can to me a some suggestion?
Thank you,
Peter

Similar Messages

  • Event.hits property does not work at Adobe 9

    I have just discovered that the property "event.hits" does not work at Adobe Reader 9 properly.
    I have some JavaScript, which uses this property:
    if (event.hits.length > 0)
    var targetPos = event.hits[0].position;
    Now, at Adobe Reader 9 the value of "event.hits[0].position" is not correct.
    At Adobe 8 Standard this JavaScript works very well!
    Can you comment this issue?

    Hello to everyone!
    There is a some PDF file, which works fine on Adobe 8 and does not work properly on Adobe 9.
    You can download this file from the following hyper-link:
    http://www.pdf3d.co.uk/pdf/box97.pdf
    When I open this file on Adobe 8 then gold arrow works fine.
    In this case the gold arrow (pointer) has a true location on the box.
    When I open this file on Adobe 9 then gold arrow has a false location.
    In this case the gold arrow (pointer) has a false location on the box.
    Could somebody can to me a some suggestion?
    Thank you,
    Peter

  • Thumbnail preview works in adobe reader 9 but does not work in adobe 8.0

    I have small issue. Thumbnail works in adobe reader 9 but but does not work in adobe acrobat 8.0 in win xp

    Anyone going to tell me how to do this uninstalling and installing??????????
    I don't want to mess things up even more! Geez--I'm almost 60 years old,
    need to work and this might be costing me a job. I'm not 20 and text and
    e-mail etc every day. I'm just asking for a little help that as I see it ,
    is due to a "glitch" with Adobe's software. They can easily in their
    technological minds put a warning on anything before someone downloads
    anything such as "If you download this and you  have already downloaded
    that,, then it won't work." How tough would that be??? They, like most other
    major corporations, are in it for the money. What has happened to customer
    service???
    I need a step by step with my hand held and so it won't screw up things even
    MORE. Adobe...get your customer service and your software together...This is
    draining. I may lose a job over it. I need to have my computer running well
    at this point in time as there is no extra time to spend dealing with
    software issue that are a result of Adobe's software incompatibility.
    I was on the phone for TWO hours last night telling people exactly what was
    going on. I even read the error message word for word. No one would help me
    unless I coughed up the money that I don't have...and in addition I will
    lose a job that might get me some money. This is why I am so upset. Why is
    dealing with Adobe always so difficult??? Of course, I am upset. I'm
    actually a lovely person. It is just that this stuff rattles my nerves.
    Especially when there is a jobwith a raiseinvolved that I may lose as a
    result.
    Now I had better get dressed and ready for the job I have now before I am
    late for work and lose that job, too.....

  • When Firefox is open the zoom function (option/command/space bar) does not work in Adobe programs (InDesign, Photoshop, Illustrator)

    Mac OS X 10.6.7
    CS 5.5
    When Firefox is open the zoom function (option/command/space bar) does not work in Adobe programs (InDesign, Photoshop, Illustrator). This happens only when Firefox is open and when I close it the zoom functions work fine again without having to restart the applications.
    This is intermittent but happens quite frequently each day if Firefox is active.

    MDN doesn't mention -chrome being used for ordinary web pages: https://developer.mozilla.org/docs/Mozilla/Command_Line_Options#Chrome
    When I use
    firefox.exe -chrome about:permissions
    I get a usable window, but zoom doesn't work as you noted.
    How about using an intermediate page and window.open() for the target page? You can (mostly) restrict the chrome of windows opened that way, but it will leave behind the intermediate window...
    https://developer.mozilla.org/docs/Web/API/Window.open

  • At the top of my Mozilla home page, it lists the current URL site I am on. How do I delete them and the others in the drop down box? Highlighting and hitting delete does not work

    At the top of my Mozilla home page, it lists the current URL site, such as http://www.safeco.com, I am on plus the others in the drop down box. How do I delete them. Highlighting and hitting delete does not work.
    I am using windows Vista 007 and Mozila 3.6.1.3

    Do those entries have a yellow star at the far right?
    If they have then they are bookmarks. You can remove them if you open that link and click the star to open the Edit This Bookmark dialog and click the Remove button in that dialog.
    * [[Clearing Location bar history]]
    * [[Cannot clear Location bar history]]

  • Please Help! Drag and drop does not work in Adobe AIR 3.1 (FlashBuilder 4.6)

    I am working on a PC is made of air and flashbuilder 4.6.
    Drag and drop application does not work in Flash Builder 4.6.
    However, the same source will work with Flash Builder 4.5.
    Please help me.
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                  xmlns:s="library://ns.adobe.com/flex/spark"
                                  xmlns:mx="library://ns.adobe.com/flex/mx"
                                  backgroundColor="#323232" width="100%" height="100%"
                                  initialize="init(event)"
                                  nativeDragEnter="onDragEnter(event)"
                                  nativeDragDrop="onDragDrop(event)">
              <fx:Script>
              <![CDATA[
                        import mx.events.FlexEvent;
                        protected function init(event:FlexEvent):void
                                  addEventListener(NativeDragEvent.NATIVE_DRAG_ENTER, onDragEnter);
                                  addEventListener(NativeDragEvent.NATIVE_DRAG_DROP, onDragDrop);
                        private function onDragEnter(event:NativeDragEvent):void
                                  if (event.clipboard.hasFormat(ClipboardFormats.FILE_LIST_FORMAT))
                                            NativeDragManager.acceptDragDrop(this);
                        private function onDragDrop(event:NativeDragEvent):void
                                  var arr:Array;
                                  arr = Array(event.clipboard.getData(ClipboardFormats.FILE_LIST_FORMAT));
                                  startImage.source = (arr[0] as File).url;
                ]]>
              </fx:Script>
              <s:layout>
                        <s:VerticalLayout/>
              </s:layout>
              <s:BorderContainer id="bc" borderStyle="solid" width="200" height="80%"/>
              <s:Image id="startImage" width="100%" height="100%"
                                             horizontalAlign="center" verticalAlign="middle"/>
      </s:WindowedApplication>

    Thank you answers, but it was not the answer I wanted.
    [Problem]
    * Flash Builder 4.5.1(updater) or Flash Builder 4.6
    - If you have installed on pc, does not work adobe air drag and drop
    [Solution]
    1. Reinstalling the Windows 7 (32bit).
    2. Install Flash Builder 4.5.
    3. Flash Builder 4.5.1 updater and Flash Builder 4.6 does not install.
       (Instead of using Flex SDK 4.6 is set up)
    In addition, Windows7 64bit environment does not work drag and drop.
    Is there another solution?

  • Adobe thumbnail preview does not work in adobe acrobat 8.0

    Hi ,
    I have user login using his profile and suddenly his not able to view thumbnail preview of PDF file using navigation panel but the thumbnail preview
    work in administrator profile.
    Si, I guess some settings blocking in user profile to view thumbnail preview.
    I have checked the settings that I know but it still does not work.
    Please advise.
    It is adobe acrobat 8.0 professional using win XP SP3

    Thanks for answering my queries.
    Could you please let get me the following details as well:
    1. The version of Adobe Reader installed on your system.
    2. The default PDF viewing application on your system. You can find the same by double clicking on a PDF on your system and see which application is used to render the PDF.
    3. The value of the following registries:
    HKEY_CLASSES_ROOT\Software\Adobe\Acrobat\Exe
    HKEY_CLASSES_ROOT\AcroExch.Document.7\shell\Open\command
    HKEY_CLASSES_ROOT\AcroExch.Document.7\shell\Read\command
    Ankit

  • Full screen auto-hide feature does not work with Adobe Acrobat Reader add-on 11.0.0.379 in Firefox 17.01.

    "Full screen" menu item and its keyboard short cut F11 stop working with Acrobat Reader. The Firefox top edge border does not hide once you have moved around in the Acrobat document. Therefore it is not possible to display PDF documents in a true full screen mode within Firefox. The auto-hide full screen mode works nicely with other Firefox windows, so apparently the Acrobat Reader add-on breaks the feature. Windows 7 64-bit.

    From the JS API Reference of the print method:
    Non-interactive printing can only be executed during batch, console, and menu
    events.
    Outside of batch, console, and menu events, the values of bUI and of interactive are ignored
    and a print dialog box will always be presented.

  • CS4 suite serial number does not work for Adobe Acrobat Pro

    Hello,
    I am looking for a solution for the serial number issue I am having with Adobe Acrobat Pro. All of other programs within the suite open fine, but when I open Adobe Acrobat Pro it asks for a serial number. When I type in the serial number, I am given a red "X".
    I have called customer support, but they haven't been able to give me any information that will resolve my issue (uninstalled 4 times now). I have Vista and have looked online and on the Adobe website to find a solution. It looks like others are having the same issue from what I can tell while searching. I have run the script too and then reinstalled, but still nothing.

    After some stupid upgrade in my computer (who knows as Microsoft is always doing something), my Acrobat 9 in CS4 stopped working. The error message said to uninstall and reinstall Acrobat. So I went through the control panel and uninstalled it. I then loaded the CD and reinstalled. However the reinstall would NOT accept the orginal serial number. I called Adobe and they gave me a different serial number. Before I let the guy nof the line I tried the  number and it did NOT work! So then he gave me another number which  asked for the previous verison- apparently it was an upgrade number. Luckily I had my old CS3 software and I gave it that number and then it accepted the install. The program now works BUT there is no longer any ADD/REMOVE choice in the CS4 suite in the control panel. There is no way to automatically remove this program anymore! What a mess.
    After reading some of the installation problems others have had and no solutions, I count myself lucky! At least I was able to get the program running.
    Therefore my advise on the serial number problem is to get Adobe on the phonen and get them to give you a number that will work, and don't hang up until you know the program is working!
    If anyone knows how to add the Acrobat to the the add/remove functions in the control panel, please let me know!

  • Why the Apple products does not work with Adobe flash player?

    Could be better if the Apple products work with Adobe Flash Player, I know that Steve does not like to work with them, but I think will be necessary soon.

    From Adobe's own site:
    *** NOTE: FLASH PLAYER IS NO LONGER BEING UPDATED FOR NEW DEVICE CONFIGURATIONS. FLASH PLAYER WILL NOT BE SUPPORTED ON ANY ANDROID VERSION BEYOND ANDROID 4.0.x ***
    While Flash Player remains on Google Play for installation on Android devices that are certified by the manufacturer, installing Flash Player on an uncertified device may result in unexpected behavior and can potentially destabilize your device. A list of certified devices can be found at http://www.adobe.com/go/certifieddevices. Flash Player WILL NOT be supported on any device shipped with or upgraded to an Android version beyond Android 4.0.x
    Further comments on what is the case on Android devices is irrelevant. Adobe has dropped further development of Flash for mobile devices and Apple has made no indications that they have any plans to do so themselves, so it is highly unlikely that there will ever be a native Flash player for any iOS device.
    'nuff said on the matter. Regards.

  • "hit enter"  does not work at EP7 logon screen

    Hi!
    We have an EP7 SP11 with a problem:
    After the user puts his name/password on the logon screen, he hits "enter" key.
    However the logon screen does not do anything.
    So he has to use the mouse to click the "log on" button so that he can log into EP.
    Points guaranteed! Thanks a lot!

    Hi,
    that's strange. I just checked with my portal and it is working fine. What kind of browser are you using? Did you modify the logon screen? Is it working with Firefox?
    Regards,
    Holger.

  • Pda cursor position property does not work

    Hi!
    I have a problem with cursor positionX propery on PDA.
    I use PDA Module 8.2 and Windows Mobile 5 OS on PocketPC.
    Actually problem is only when I try to get value of two cursors, it return the same value for both cursors (you can test it with attached VI), but when I set values it work fine.
    I have also worked with PDA Module 8.0.1 in past and I remember that get cursor position value worked, so I have no idea why it doesn't work in newer version.
    Thanks,
    andrej
    Attachments:
    cursor test.vi ‏21 KB

    Hello andrej,
    Unfortunately I also see the same behavior on a PDA using this "active cursor" property. It appears to me that this property is not being written successfully. I say this because it appears that the value displayed is always from the most recently repositioned cursor rather than either the 0 or 1 which is set by the property node.
    What I will do at this point is to file a corrective action request so that this behavior is corrected for a future release of the LabVIEW PDA module. I apologize for the inconvenience that this causes for your application. Please let me know if I can help at all as you modify your application to work around this behavior. Thanks,
    Mike D.
    National Instruments
    Applications Engineer

  • Javascript does not work in Adobe 9 Reader

    I have created a Parent PDF Index with attachments. Next to each document name, I have 3 icons (PDF, Print and Email icons). The PDF Icon has a basic link: "Go to page in another document" The Print Icon has the "Go to page in another document" link and a javascript: app.execMenuItem("Print"); -When someone clicks the Print Icon, the attached document opens and the Print Box opens to print the attached document. The Email icon has the "Go to page in another document" link and a javascript: app.execMenuItem("AcroSendMail:SendMail"); -When someone clicks the Email Icon, the attached document opens and is automatically attached to a blank email. These links and javascripts worked perfectly in Adobe 8 Professional, Adobe 7 Reader and Adobe 8 Reader. However, the Print and Email functions are not working correctly in Adobe 9 Reader. The Print Icon is clicked and the Print Box opens first and the document opens last (therefore, it is printing the Index not the attached document). Same thing with the Email Icon...it is emailing the Index not the attached document. Is there anything I can do to fix this issue? Thank you in advance for your help!

    Security restrictions changed for execMenuItem(). Here's what the documentation says about it:
    "(Acrobat 8.0) The execution of  menu items through execMenuItem method  is restricted to a short list of safe menus. The execMenuItem method will silently fail if a named menu  item is executed that is not on the safe menu list. Menu items may be removed in future releases, or their behavior may change.
    To see the list of safe  menus, create a form button, and in the Button Properties dialog box,  select the Actions tab. From the Select Action list, select “Execute  a menu item”. Finally, click the Add button to see the Menu Item dialog  box with the list of safe menus.
    The app.execMenuItem method may be executed, without  restriction, in a privileged context, such as in the console or in a  batch sequence. For folder JavaScript, app.execMenuItem can be executed, again, without restriction,  through a trusted function with raised privilege. See Example 4, below.
    Another approach to  executing app.execMenuItem without  restriction is through Sign & Certify. When the document author  signs and certifies the document, privileged methods can be executed  from a non-privileged context provided the document consumer lists the  author’s certificate in the list of trusted identities and the consumer  trusts the author for execution of embedded high privilege JavaScript."
    See here: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/html/w whelp.htm?context=Acrobat9_HTMLHelp&file=JS_API_AcroJS.88.131.html#1995136

  • Read out loud does not work on Adobe Reader XI.  Does anyone know how to fix this problem?

    Does anyone know how to repair the Read Out Loud problem with Adobe Reader XI?

    Hi thomash,
    Are you running into this problem with all PDFs, or just a select few? If the PDF was created from a scan, and OCR wasn't performed (so there's no "live" text), then there wouldn't be anything to read aloud.
    If the issue occurs regardless of the PDF you have open, has anything changed on your system since Read Out Loud worked for you?
    Best,
    Sara

  • Event problem, control does not working

    Hi !
    I have "Tab Control" and there is both pages a Stop button.
    If there is first selected page1 and i run vi and then i select page2
    and i try push Stop2 button nothing happens.
    Whats is the problem ?
    page2 Stop2 button works if there is first selected page2.
    page1 Stop1 button works OK.
    See attachment.
    -HeVi-
    Attachments:
    Test__06_Event.vi ‏28 KB

    OK, take a few steps back and look at your code from scratch!
    You seem to be under the false impression that a tab control needs a case structure on the diagram. Don't micromanage your code! A tab structure is just an easy way to simplify the front panel. From the perspective of the code, you can assume that all controls of all tabs are always visible. (If execution should depend on tab position, place the case structure inside the event structure. )
    See also my earlier comments here.
    You should never place event structures inside cases (or even worse, multiple event structures in multiple cases of the same case structure). Having to add unecessary timeouts is just a kludge to hide a poor program design. More comments can be found at the end of my other post.
    Don't add timeout events unless you really need to do something important at regular intervals. Most of my event structures don't use the timeout event at all.
    Also, if a stop button should be accessible independent of tab position, it should probably NOT be on the tab structure, but next to it! Alternatively, you can "float" a single stop button on top of the tab structure as follows: Select the stop button, then, using only the arrow keys, move it to the desired location on top of the tab structure. While editing, the stop button will have a shadow to indicate that it is not part of the tabs. This shadow disappears while running.
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • How to get Leopard's new visualizers into Tiger?

    Leopard's version of iTunes has some great extra visualizers like Jelly and Stix. I still run iTunes on my old mac which won't take a leopard upgrade. Does anyone know if it's possible to get these new visualizers into Tiger somehow?

  • Photo Gallery with KitKat

    I have searched and not found any discussions on this so far, so I'm wondering if anyone else has noticed this same issue.  I got updated to KitKat and here's how that went down:  after the phone restarted itself after the install, it gave me a messa

  • Obsolete and deprecated parameters

    Hi, we got the error when i start the istance. SQL> STARTUP ORA-32004: obsolete and/or deprecated parameter(s) specified ORACLE instance started. Total System Global Area 167772160 bytes Fixed Size 1247900 bytes Variable Size 75498852 bytes Database

  • Material Master: All part numbers from one vendor

    Hi everyone, is it possible to list all part numbers supplied by a defined vendor - in the material master? I was told by our purchasing department that ME2L would do the job, however I'm not authorized to execute the transaction (for no reasons) and

  • Smartforms: Automatically expand of a field

    Hello, i´ve created a smartform. In this smartform there is a field with a table. This field is filled by a report. My problem is that for espacial there is enough space for three lines in the field, but if i have 4 the last line is cut off? what can