Is it possible to know 'Where am I' once a field has been clicked?

My question relates to the "Mouse Up" JS that are so often associated with a field.

I tried this code:

Console.println (this.) Rect);

and the result was: "undefined".

Then, I tried this:

Console.println (this);

and the result was: [object Doc]

so, I guess I'm making progress, but I'm too high on the hierarchy of the object.

What I need is the rect or name, or a way to determine which of the many areas with same code has been clicked.

This kind of generalization (same code in many areas) that can save a lot of time and coding.

TIA,

-Ramon

Try this:

Console.println (Event.Target.Rect);

Tags: Acrobat

Similar Questions

  • Need to know where download CC once again it has been uninstalled

    Chat tech had me uninstall the CC program.  Need to know where to go to be able to reinstall it.  Everything I find is through the registration links.

    Hi rablrsr,

    Welcome to the community!

    The link to download the Adobe creative cloud desktop application is https://creative.adobe.com/products/creative-cloud, you may need to sign in using your Adobe ID and password but registration is not necessary.

    -Pierre

  • I would like to know where to find a friend app has been installed on my phone and who else is listed on it? I would love the history of this app on my phone for today's date, please.

    I would like to know where to find a friend app has been installed on my phone and who else is listed on it? I would love the history of this app on my phone for today's date, please. I changed my phone a couple of times, because the application was initially installed, but I can't work when it has been installed or that has first been listed on it... where I'd get that information from? I do my back ups on my laptop that uses OS X El Capitan Version 10.11.4 on iTunes. Thank you.

    Locate the app in iTunes > window Apps, select it, and press Cmd + I to get info. The file tab should show which account it was acquired on and when. Another I don't think that there is no history, that you can get. All you can see is a current list of those you follow and you allowed to follow you.

    TT2

  • Is it possible to know if transparency (multiply / darken etc.) has been used in any part of the file select all objects?

    I recently had problems with Illustrator files with objects and text.

    These elements consist of spot colors and have effects, such as multiply, obscure or Luminisity applied to them.

    Our current workflow requires us to save the only 1 file .ai to PDF which must pass through a TEAR, then accelerated for printing by other software.

    Version staircase to the top of the file is sent to me, opened and edited in Illustrator and then re-recorded in PDF format to send to a print finisher (varnish or sheet, for example)

    It is at this point that some items were not displayed correctly or at all.

    I know that sounds complicated process (and is!)... but is it possible to work around this issue?

    Thank you

    The Flattener Preview Panel?

    Check "all transparent objects.

  • How will I know where all the reports of users has access

    Hi gurus,

    We use the Hyperion Financial Reporting 9.3.1 & we have 80 reports & 750 users. How will I know where all the reports of users has access. Where can I find this information. I checked the SSP, it only shows the provisioing details, but not the name of the report. I also checked the Essbase.sec but no use. Where can I get the info. Kindly help me.


    Kind regards
    Kris...

    There is no tool of Hyperion to display easily groups and security filters.

    But it really depends on how you set up your security model.

    Normally, you add users into groups and assign these groups to essbase and reports (via the BEEP groups) cubes, so you can check reports have access to correct group and the users are in a good group.

    There is a security tool to export available here, hosted by Applied Olap, and underground work Olap-based:
    http://www.appliedolap.com/free-tools/Advanced-Security-Manager

    Best regards, Iain

  • How to check where the table field has been used as a foreign key in the database

    Hi I have a field in my table Office I had office_code field, this field has been used in the tables of diffirent as foreign key is a sql I can wirte to see all the tables that have used this field as a foreign key

    Edited by: adf009 09/05/2013 10:37

    Edited by: adf009 09/05/2013 10:38

    Check this box

    SELECT * FROM user_constraints WHERE table_name='EMP' and CONSTRAINT_TYPE='R';
    

    Type = 'R' means referential integrity constraint type.

  • Is it possible to know if the contents of a layer have been edited?

    HII...

    I wanted to know whether or not the contents of a layer have been edited since its creation... I'm not looking for a solution where the controls are carried out after the last document updated the... Allows to observe a scenario where a document is not saved... So, in this case how do find us that a layer has been changed since it was opened... ?? Please guide me...

    Thank you...

    PS: I need to compare between the two States of a layer. For example, when I start my plugin to create a document, it opens a document from a specified path. It contains a layer with its editability is to be drawn. Now, the scope of my plugin ends... The user is free to make any changes on the document, but it is forbidden to change this specific layer, but no one can stop the user... !!

    Now I raise my plugin once again, and I check if this layer has been published or not... Now, can someone guide me... ?? Since then, the scope of my plugin ends after the creation of documents, so I am not able to keep all the values in post...

    There is no way to tell after the fact if a layer has been changed. Even noticing when a user does it right now that they do is difficult; you will have to rely on something like the kArtPropertiesChangedNotifier, and it's a little risky. You can see when the author of this notification happens to see what art is selected and see if it is on your layer, but there are a few holes in it. Deleted, for example, would likely happen before that declaring then you'd see never the art on your layer is removed (since his is more selected, because his party).

    In general, the changes in art is almost impossible, I'm afraid

  • How will I know if a product key for xp has been activated yet

    Hi I recently bought a copy of windows xp pro and what he was going to install on my laptop that I'm on vista, it is an authentic copy from what I understand, but before starting the installation, I need to know if the product key has been activated yet, is it possible to tell? Thank you all

    Simply call Microsoft on the toll free number: 1800-936-5700.

    Give them the product key, and they will tell you if it has been used for activation aldready and if it has been blocked.

    Also give them the part number of the Windows XP disk and they will tell you if what drive it is. (OEM, retail). and they can also tell you if the product key will match and work with the disk.

    Do that before you start the installation, train them if the disk and product key do not match, you will be stuck.

  • How do you know that a spesific procedure or function has been run by the user who and when?


    Hi all

    Suppose I have a procedure or a function whose name is MY_PROC. Is it possible to learn that the user who has been running this procedure and when?

    Thank you

    Hi NightWing,

    You need VERIFICATION for operations.

    11.2 docs: AUDIT

    For example:

    SQL> show parameter audit_trail;
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    audit_trail                          string      DB
    SQL>
    
    SQL> conn iarsov/iarsov
    Connected.
    SQL> create or replace function test_audit
      2  return date
      3  is
      4  begin
      5  return sysdate;
      6  end;
      7  /
    
    Function created.
    
    SQL> conn system
    Enter password:
    Connected.
    
    SQL> audit execute on iarsov.test_audit by access;
    Audit succeeded.
    
    SQL> select os_username,username,obj_name,owner from dba_audit_trail where obj_name = 'TEST_AUDIT';
    no rows selected
    
    SQL> conn iarsov/iarsov
    Connected.
    
    --call the function and trigger audit operation
    SQL> select test_audit from dual;
    TEST_AUDI
    ---------
    04-AUG-14
    
    SQL> conn system
    Enter password:
    Connected.
    
    SQL> select os_username,username,obj_name,owner,timestamp from dba_audit_trail where obj_name = 'TEST_AUDIT';
    
    OS_USERNAME          USERNAME                       OBJ_NAME             OWNER                TIMESTAMP
    -------------------- ------------------------------ -------------------- -------------------- ---------
    oracle               IARSOV                         TEST_AUDIT           IARSOV               04-AUG-14
    

    Kind regards

    Ivica

  • The field where the url should be visible, has been reduced so that I can't see the url. I want to restore this field so that I can see the full url.

    Until a few days ago, I was able to read any reasonably short url in the familiar field or the space at the top of Firefox. Suddenly, this area, I mean the space where I could type a url, declined. How to restore this field? And by the way what we call this area? This is the address bar or navigation bar or what?

    It is called "address bar", try to move the mouse on its right edge. The cursor should get a form of "<>" - and you can click and drag to the right to increase the size of the location bar.

    If this does not work, open the dialog questions Troubleshoot Firefox in Safe Mode , select 'reset all toolbars and controls', press 'save changes and reboot.

  • Looking for an example application where more than a similar unit has been tested at the same time

    I'm looking for an example application where more than one unit of the same kind are tested simultaneously on a grid of test with several stations. My first thought was to use loops Parallels, but because that test equipment is shared is probably not the best approach.

    Thank you.


  • How can know you why your Xbox 360 console has been banned if you don't receive any email.

    Our Live xbox360 console was banned, it has never received an email stating why this was done.  My son knows not what it could have hurt.  Support has no answers.   How can get us the answers, and how can we solve this problem?

    Hi KarenBorrelli,

    I suggest you to contact Xbox support and check if it helps.
    http://support.Xbox.com/en-us/contact-us?XR=footnav

    For your information, you can follow the links and check if it helps.
    http://www.Xbox.com/en-us/consoleban

    http://support.Xbox.com/en-us/Xbox-Live/troubleshoot/Xbox-Live-console-ban

  • How know what form button has been clicked

    I have a form with three buttons on it: a standard reset button, and two buttons that perform different functions that a user has clicked on validate. When I go on the action page, how can we know which button was clicked to perform the correct action?




    On the action page, do


    Subject S1

    Subject S2

  • Is it possible to use the full version of Windows that has been used by another person and uninstalled from his PC?

    I found on the version complete Amazon Windows XP (non OEM) that has been used before, but uninstalled, the original PC. Is it legal to use this operating system even if someone else has already activated? Thank you.

    His legal (as long as he has really been uninstalled)

    (1) general rule of thumb - do not buy reselers which advertse on Amazon's web site.

    (2) the phone activation will be required.

    J W Stuart: http://www.pagestart.com

  • I want to know if my Windows Live Hotmail account has been hacked. The password has been changed for a different from mine.

    At my hotmail account hacked because I went to change my password and password reset information have a different email address of mine. More I'm going to remove it, and he wants to send a notification by e-mail to this address.  How can I clear this mess?

    original title: hacked

    Hi LeRoy Lawson, c.

    When you use Windows Live Hotmail and the question you have posted is related to Windows Live, so it would be better suited in the Windows Live community. Please visit the link below to find a community that will provide the best support.

     

    Windows Live Solution Center Hotmail Portal

    http://windowslivehelp.com/product.aspx?ProductID=1

    I hope this helps.

Maybe you are looking for

  • 31 FX for Mac suddenly stopped loading images does anyone have a solution to this.

    Mid day Fx stopped loading images for buttons, images on Web sites, etc. Can I use other browsers on my Mac and they work fine. I have reset Fx and tried with no Add - installed add-ons. I even deleted and reinstalled. No change.

  • Is my current version of Firefox?

    The installed version of Firefox is showing that 10.0.2 on a 64-bit Windows 7 HP computer. Firefox said it is up to date. Is this correct? It has been installed for more than twelve months and no update have been installed according to the history of

  • How to move to Windows 7 64 bit?

    When I started my laptop I chose 64-bit, but when it came to the big red warning I clicked Cancel. The next time I start the laptop it asks for my username and password so I did that and then I checked and now is 32-bit. Is there a way to change to 6

  • HP deskjet F4500: using HP f4500 on Windows 8.1

    Hello I just replaced my old laptop that worked on Windows 7 with a new laptop Windows 8.1. Already my all Deskjet in a F4500 let me scan and wireless printing. I managed to get the new laptop to print via USB, but I want to reproduce the wireless an

  • Can I buy any version of windows that runs on an old Compaq Tablet PC tc1100 DQ871A?

    Can I buy any version of windows that runs on an old Compaq Tablet PC tc1100 DQ871A? My Windows XP Tablet PC Edition swells with no disk to restore. The window of the software came with the computer, so I have a number of validation, but can't find t