Add/Remove the MenuItems

Hello

Is it possible to add/remove menu items in a single Acrobat windows?

I've seen this behavior:

  • Open a document in and from Adobe Acrobat.
  • Open another document in Acrobat using the plugin SDK with function AVDocOpenFromFile().
  • Download the AVWindow the AVDoc opened by the plug-in.
  • Customize menu items (remove menu items, add new)
  • Windows all Acrobat are changed.
  • Open a document in Adobe Acrobat format, Windows Acrobat is not changed (I guess that's because the changes were made before the opening of this new window)

So my question is: is it possible to apply the change to the only Acrobat window (in my case only the window opens with the plug-in?

Thanks in advance,

Joe

No, it isn't.

Tags: Acrobat

Similar Questions

  • Add/Remove the effect with CSS

    Hello

    I'm trying to implement some sort of entry in my application validation. I expanded TextField to accept only the entry with a number of characters and corresponding to a regular expression. When the regular expression match falls, I want textfield to have an innershadow, and he does. However, the effect is not removed when I remove the CSS class where this effect is defined.

    setOnAction(new EventHandler<ActionEvent>(){
                @Override
                public void handle(ActionEvent e) {
                    if(!getText().matches(restrict.get())) {
                        getStyleClass().add("invalid");
                    }
                    else {
                        getStyleClass().remove("invalid");
                    }
    
                    for(int i=0; i<getStyleClass().toArray().length; i++) {
                        System.out.println(getStyleClass().toArray()[i]);
                    }
                }
    

    .text-field.invalid {
        -fx-border-color: indianred;
        -fx-effect: innershadow(gaussian, indianred, 5, 0.5, 2, 2)
    }
    

    The style class "invalid" appears in the table when the entry is not valid. The class is removed successfully, but not the effect. How can I fix it? Do I need to set the effect in code and no CSS?

    Have you tried this:

    .text-field.invalid {
        -fx-border-color: indianred;
        -fx-effect: innershadow(gaussian, indianred, 5, 0.5, 2, 2)
    } 
    
    .text-field {
        -fx-border-color: indianred;  // change to some other color maybe transparent or use null
        -fx-effect: null
    } 
    

    Could be he you pls tell me how to use the CODE tags.

    Post edited by: jojorabbit

  • Add/Remove the same exact point from a drop down list

    Hello!

    I need power remove/hide and/add/view THE SAME POINT, or that it doesn't look like the same question, please see the example of what I m doing:

    When you open the document:

    01.png

    If you click 'Yes' to the first radio 4 value is added

    02.png

    If you click 'Yes' in the second radio, value 5 is added

    03.png

    If you click 'no' on the first radio, you remove the value 4 BECAUSE you remove the element #3

    04.png

    If you click on 'no' on the second radio, you delete nothing 4 BECAUSE you try to delete the point #4


    05.png

    And then you get this weird combination

    06.png

    This is the code on the first Radio

     form1.#subform[0].value_4::click - (JavaScript, client)

    if (this.rawValue == "1") {
         DropDownList1.addItem("value 4");
    }else {
        DropDownList1.deleteItem(3);
    }

    This is the code on the second radio

     form1.#subform[0].value_5::click - (JavaScript, client)

    if
    (this.rawValue == "1") {
           DropDownList1.addItem("value 5");
    }else {
           DropDownList1.deleteItem(4);
    }

    Anyone know how to remove a specific item of a dropdrown? or may not remove, hide only if this is possible... I tried to change specific values for Add/Remove always from the same point, but it did not work.

    Thank you!

    Ago, I find it odd that there is no native method xfa for the index of an item in the menu drop-down. Not documented at least (as I know).

    What you can do however, is create your own method!

    Here, in the initialize event of your highest subform you create a method that exends class object (which includes all XFA objects too), like native JavaScript:

    //@para String value of the item in the drop down
    //@return Boolean - true if item was deleted, false if not and null object if not found in the list
    
     Object.prototype.deleteItemValue=function(sVal){
     for (var a=0;a
    

    You can remove any item from your drop by modying your code:

    if (this.rawValue == "1") {
     DropDownList1.addItem("value 4");
    }
      else {
     DropDownList1.deleteItemValue("value 4");
    }
    

    Kyle

  • HOW CAN I ADD/REMOVE THE BAR LIST SEARCH ENGINE SEARCH ENGINES

    I would like to remove Google from the list and add an alternative search engine name to the list in the drop-down list on the search bar. Please help with what I can not find the answer in the Firefox "help" sections.

    Concerning
    Lojong7

    Glad I could help! Let us know if you have any other questions.

  • LineChart add/remove the flexible lines

    I'm curious to know if anyone knows examples of LineCharts (histograms or pie charts) where someone adds and removes lines once the application is already loaded. The only way I see currently do is hacking the variable data set provider, but it is ugly and I have this pretty XML that feeds already in full. It would be really great if someone saw this fact with checkboxes, or if anyone can get me pointed in the right direction.

    I'm looking for something very similar to this?

    Were you able to do?

    Thank you

  • How to properly remove the MenuItem

    I need to have several menu items is visible, as long as the user logged on. Therefore, if the user logged out (session that ID is disabled), then these some menus become invisible.

    A quick Google search gives me a trick that you can use removeMenuItem().

    And here is my problem: the same screen should be visible once the user is disconnected. And indeed, the session ID is already allowed. But these menus are still visible.

    How to solve this?

    The State of the screen immediately after the user disconnects, it is that no menu is displayed, correct? When the user then presses the menu button, the screen makeMenu function is called to fill the menu. As long as you do not add logOut, parameters or points, while these elements must not appear in the menu. Without seeing the actual code, the only thing that I can say, it is to use the debugger to review makeMenu execution once the user is logged out, making sure that the logic is correct (for example, sessionId is actually null, for example).

  • Number of rows different when add/remove the same table

    Hello
    I have a problem in a select statement.
    My database is a 9.2.0.8.
    select *
    from  tab1 t1,
            tab2 t2,
            tab2 t3
    where t1.id_c1 = 1
       AND t1.id_c2 = t2.id_c2
       AND t1.id_c2 = t3.id_c2
       AND t2.id_init = 3693
       AND t3.id_init = 3892;
    
    936 rows selected.
    If I change the query to:
    select *
    from  tab1 t1,
            tab2 t2
    where t1.id_c1=1
       AND t1.id_c2 = t2.id_c2
       AND t2.id_init in ( 3693,3892);
    
    61132 rows selected.
    Any ideas? What's wrong??
    TNX

    Published by: 842366 on 3.10 there / 10/2011

    Published by: 842366 on 3.10 there / 10/2011

    T2.id_init in (3693,3892);

    T2.id_init of means is 3693 or 3892. It's the same as:

    t2.id_init = 3693 OR t2.id_init 3892;
    

    While the first request was:

    T2.id_init = 3693 AND t3.id_init = 3892;

    SY.

  • How to add games in the section add/remove?

    Having just changed since an other Netbook (total nightmare) for the (amazing) Toshiba manufacture, my daughter (10) I was wondering how is the number of games in the area Add / Remove programs is much less than in section of add/remove the other factory?
    Are there other sources of games for this machine and if so, how can I add the to add a deletion?

    Thank you very much
    Welcoming

    Add Remove Programs seems to be a cut from the version of the package manager, which is normally executed by user root/master.
    Go to the menu Preferences/main / administration and click the synaptic package manager. This will add to the menu under admin selection. Close the windows.

    Go to the package synaptic/administration manager. This will open add it remove programs in their ENTIRETY.
    Willl you find more games listed. The disadvantage of this addition in the menu list i gives it FULL access to the OS and games programs. Remove some programs from here could also remove the dependencies to other programs.

    Maybe you can configure yourself as user and add or remove root for her. She created without admin priveliges.

    Hope this helps

    MalColli

  • If the CPU hot add/remove is not enabled

    I heard that it is possible to change the number of CPUS and memory without CPU hot add/remove the active through CLI. Is it possible to change the CPU and memory count without turning off the virtual computer to activate the CPU and memory hot add? I work in a hospital and shut down a virtual computer is not possible to activate these functions.

    Hi Eric,.

    You can enable the feature add hot power-CLI, but you will need a restart in order to reload the new configuration.

    Here you can get the detailed information in the present.

    http://ICT-freak.nl/2009/10/05/PowerCLI-EnableDisable-the-VM-hot-add-features/

    hope this helps you.

    Thank you and best regards,

    Shrikant Germain

  • How to remove the old plugins in the add-on Manager

    That is my question. Add-ons Manager shows all of those I want to delete as persons with disabilities. The existing responses do not work because when I get home the Manager of the page the word "delete" is not there. (see attachment)

    Plugins are part of third party software that you have installed on your computer. To uninstall the plugin, you need to remove the application that has installed the plugin in the first place.
    This is not always desired. So I'd keep just those unwanted plugins disabled. They won't hurt.
    There are ways to fix the Windows registry so that these plugins are no longer visible for Firefox and therefore will not be displayed in the Add-ons Manager. But unless you know exactly what you are doing, you should not start playing with it.

  • When you add items to a project can then remove the clips?  I'm trying to free up space on my hard drive. Thank you.

    When you add items to a project can then remove the clips?  I'm trying to free up space on my hard drive. Thank you.

    Not while you're still editing the project.  When you have completed the project and shared it and are sure that you do not want to do any editing more far, you can delete the whole project.

    If you do a significant amount of iMovie editing you really need to put your libray (ies) on a large external hard drive.  Another thing you can do is to divide your work between different libraries and move those that are not currently on a removable drive.

    Geoff.

  • I need to uninstall the toolbar "many" - used Add/Remove in Control Panel, but did not firefox.

    I have installed a freeware no net program, said to alot toolbar, but it installed in all cases. I then went to the Add/Remove programs in the contral Panel, says delete, then he said is was uninstalled, but it is still in the firefox and internet explore BOTH. I love Firefox, but want the toolbar out alot. Help, please

  • I can't uninstall Firefox. I tried my Add/Remove programs and have tried the intsruction given to manually run C:\Program Files\Mozilla Firefox\uninstall\helper.exe. and it won't work. Firefox is the only program that I am not able to uninstall u

    I am unable to uninstall Firefox. I have tried my add/remove programs and have tried the intsruction given to manually run C:\Program Files\Mozilla Firefox\uninstall\helper.exe. and it will not run. Firefox is the only program I am not able to uninstall using the normal methods
    

    This has happened

    Just once or twice

    today

    User Agent

    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SIMBAR = {357DAD02-321A-4E1D-8305-C8CE3D8CA934}; .NET CLR 1.0.3705; .NET CLR 1.1.4322;. Media Center PC 2.8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152 .NET CLR 3.5.30729)

    I ' v tried running C:\Program Files\Mozilla Firefox\uninstall\helper.exe.
    It does not work.

  • IQ504 a upgrade XP/7: remove the OP system all together to add 8 Winxows

    I've upgraded to windows 7 in 2010.  The computer does not completely all the drivers for updates, or will run it the recovery program to remove windows 7. I read the small print on the software of Windows 8 and it says that it cannot be installed on Windows Vista (even if the machine has been upgraded.

    Q. can I completely remove the operating system of the motherboard and then add Windows 8?

    Or is the problem at the level of the hardware itself, because the way in which the IQ504 was built for me October 2008?

    Great help Nuccii. Thank you

  • Generic icon in the Add/Remove Programs list

    Hello to you all, useful forum fans!

    I have a nice custom icon that I built in my specs of the executable version, but when I use an installer to install my program, the icon in the Add/Remove Programs list is the software generic one (with the box open and CD).  How can I get my custom icon to use in the list as well?  I'm using LabVIEW 8.5.1 (and wishing my company should pay for 2010! ).

    Thanks for your help,

    -Joe


Maybe you are looking for

  • iPhone 5 s straight talk activation outside the us.

    Dear friends, I bought the iphone 5s Walmart on Straight Talk. then he brought in Bangladesh without activating it. now, I can't activate it. of course the straight talk is not available in Bangladesh. so, what are my options? I tried to activate it

  • Too loudly CPU fan speed

    Two days ago, the CPU fan runs too fast and VERY strong.  I removed the fan and blew dust on the cooling fins.  When I removed the heatsink and found no dust behind it does not solve the problem. Put all back together and it works still very strong. 

  • Organize all the files on my computer

    Original title: Windows ideas & organization Why are there not an easy way to sugest an idea to improve windows? I mean that the windows team could easily make a sorting software that sorts through thousands of ideas that would come by? Also is there

  • Windows 10 will not be upgraded

    Windows 10 will not be upgraded because of Symantec Endpoint Protection. I uninstalled but it still sees a conflict. Any ideas?

  • BlackBerry smartphones - what data services is free?

    Hello, this is (if enabled) data services for free?