Can a batch sequence add a simple button?

Can anyone tell me if a batch sequence can be used to add a "close document" button to a group of Acrobat documents? I have 75 PDF documents that all need a button added. If I can do it using a sequence it will be a huge time saver.
Thanks.

Sure.
The following includes some smaple code for something similar: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.435.html
You just need to edit it so you only add one button, so get rid of the loop, and set the setAction code would be:
f.setAction("MouseUp", "closeDoc()");

Similar Messages

  • How can I hide the "Add Page Text" button in Lightroom 5 Book Module

    In Lightroom 5's Book Module, there is an "Add page text" button that appears when you are in either two-page or single-page view.
    More often than not, it sits right on top of my photo caption text causing that text to be unreadable.
    Is there an option to hide that button?

    If there is no specific reason that you have to use sendredirect...thne you can try request.forward.....
    RequestDispatcher rd = request.getRequestDispatcher("pathToResource");
      rd.forward(request, response);

  • Can't seem to add a clear button

    Hi,
    I'm new to java and I'm having problems creating a clear button. Basically I want to have a button once clicked that would clear some text fields and a JComboBox. Here's what I've got so far.
            JButton clear = new JButton("<html><b>CLEAR");
            clearFields.addActionListener();
            content.add(clear);This should add the button and attach it to the action listener.
            private void clearFields() {
            ProjectOfficer.setText("");
            }As you can see I'm only trying to clear one field at the moment. I've got 6 more textfields and one JComboBox to clear as well. Problem I'm getting is that on the clearFields.addActionListener(); line I get an error saying Cannot find symbol; variable clearFields.
    I'm not sure why I'm getting this error because clearFields is clearly there?
    Any help Please?

    Thanks for both replies.
    I'm very new to this which is why I've had so many problems. I've more or less been using the approach of learn as I go along. I know that isn't the best thing to do but at them moment its my only option. With your help cotton.m I've added the clear button but as you guessed it doesnt work. I've had a look through my code and with my basic knowledge I can't seem to figure out what the problem is. Here is my full code.
    import java.awt.Container;
    import java.awt.Font;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.DefaultComboBoxModel;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JTextField;
    import javax.swing.UIManager;
    import java.sql.*;
    import javax.swing.table.*;
    import javax.swing.event.*;
    * heckley.java
    * Created on 25 August 2007, 10:42
    * @author Tahir Malik
    public class heckley {
        //field variables - created here so all of our methods have access to them
        protected JFrame window;
        protected Container content;
        //these ones are for the form objects
        protected JTextField projectOfficer;
        protected JTextField projectName;
        protected JTextField projectDescription;
        protected JTextField paymentSchedule;
        protected JTextField banksInvestment;
        protected JTextField paymentsMade;
        protected JComboBox projectType;
         * Creates a new instance of heckley
        public heckley() {
            //draw the GUI
            drawGUI();
        /** Adds a standard menubar to the window*/
        private void menuBar() {
            //create a new menubar
            JMenuBar bar = new JMenuBar();
            //attach the menubar to the window
            window.setJMenuBar(bar);
            //create the file menu
            JMenu fileMenu = new JMenu("File");
            fileMenu.setMnemonic('F');
            bar.add(fileMenu);
            JMenuItem quit = new JMenuItem("Quit");
            quit.setMnemonic('Q');
            //quit.setIcon(new ImageIcon("images/quit.png"));
            quit.addActionListener(new QuitListener());
            fileMenu.add(quit);
        /** Draws the GUI **/
        private void drawGUI() {
            //set the user interface look and feel
            try {
                //if the user is using windows
                UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
            } catch (Exception ex) {
                try {
                    //if the user is usisng Mac, Unix, OS/2, Solaris or Linux
                    UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
                } catch(Exception xtc) {
                    System.err.println("Unable to determine a UI look and feel");
            //create the main JFrame
            window = new JFrame("Heckley");
            //set close operation
            window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //add the menu bar
            this.menuBar();
            //create the container
            content = window.getContentPane();
            content.setLayout(new GridLayout(9,2,1,5));
            Font f = new Font( "Courier", Font.ITALIC, 18 );
            content.add(new JLabel("   Project Officer   "));
            projectOfficer = new JTextField();
            content.add(projectOfficer);
            content.add(new JLabel("   Project Name   "));
            projectName = new JTextField();
            content.add(projectName);
            content.add(new JLabel("   Project Description   "));
            projectDescription = new JTextField();
            content.add(projectDescription);
            content.add(new JLabel("   Payment Schedule   "));
            paymentSchedule = new JTextField();
            content.add(paymentSchedule);
            content.add(new JLabel("   Banks Investment   "));
            banksInvestment = new JTextField();
            content.add(banksInvestment);
            content.add(new JLabel("   Payments Made   "));
            paymentsMade = new JTextField();
            content.add(paymentsMade);
            content.add(new JLabel("   Project Type   "));
            projectType = new JComboBox();
            String [] comboOptions = new String[] {"Leasing", "Profit Sharing", "Trade Financing" };
            projectType.setModel(new DefaultComboBoxModel(comboOptions));
            content.add(projectType);
            JButton add = new JButton("<html><b>Add");
            add.addActionListener(new AddToDatabaseListener());
            content.add(add);
            JButton remove = new JButton("<html><b>REMOVE");
            remove.addActionListener(new RemoveFromDatabaseListener());
            content.add(remove);
            JButton clear = new JButton("CLEAR");
            clear.addActionListener(this);// assuming your class implements ActionListener
            content.add(clear);
            JButton search = new JButton("<html><b>SEARCH");
            search.addActionListener(new SearchFromDatabaseListener());
            content.add(search);
            //ALL MAIN GUI GENERATION HERE//
            protected JTextField projectName;
            protected JTextArea projectDescription;
            protected JTextField paymentSchedule;
            protected JTextField banksInvestment;
            protected JTextField paymentsMade;
            protected JComboBox projectType;*/
            //pack the window
            window.pack();
            //display the window
            window.setLocation(400,400);
            window.setVisible(true);
            //window.setResizable(false);
        /** addToDatabase - Adds a set of data to the database
         * @param project_officer The officers name
         * @param project_name The projects name
         * @param project_description The projects description
         * @param payment_schedule The payment schedule
         * @param already_paid The amount already paid
         * @param banks_investment The amount the bank has invested
         * @param project_type The type of project
         * @returns zero for failiure, 1 for addition
        public static int addToDatabase(String PROJECT_OFFICER, String PROJECT_NAME, String PROJECT_DESCRIPTION, String PAYMENT_SCHEDULE, int ALREADY_PAID, int BANKS_INVESTMENT, String PROJECT_TYPE) {
            int added = 0;
            Statement s = null;
            try {
                Class.forName("org.apache.derby.jdbc.ClientDriver").newInstance();
                Connection connection = DriverManager.getConnection("jdbc:derby://localhost:1527/PROJECT;user=nbuser;password=nbuser");       
                s = connection.createStatement();
            } catch (SQLException se) {
                System.err.println("We got an exception while creating a statement:" +
                        "that probably means we're no longer connected.");
                se.printStackTrace();
                System.exit(1);
            } catch (ClassNotFoundException cnfex) {
                System.err.println("We got an exception while trying to import the Derby library. Check installation.");
                cnfex.printStackTrace();
            } catch (Exception ex) {
                System.err.println("We got an exception while trying to use the Derby library. Check installation.");
                ex.printStackTrace();
            int m = 0;
            try {
                m = s.executeUpdate("INSERT INTO \"NBUSER\".\"TABLE\" VALUES" +
                        "('"+PROJECT_OFFICER+"', '"+PROJECT_NAME+"', '"+PROJECT_DESCRIPTION+"', '"+PAYMENT_SCHEDULE+"', "+ALREADY_PAID+", "+BANKS_INVESTMENT+", '"+PROJECT_TYPE+"')");
            } catch (SQLException se) {
                System.err.println("We got an exception while executing our query:" +
                        "that probably means our SQL is invalid");
                se.printStackTrace();
            return added;
        /* Action listeners - we need 1 for every button or menu option we have */
        class AddToDatabaseListener implements ActionListener {
            public void actionPerformed(ActionEvent ent) {
                //add to database event - call the function with correct parameters
                System.out.println("This entry has been added to the database!");
                //because all of the form objects are protected, we can directly get thier contents
                String projectOfficerV = projectOfficer.getText();
                String projectNameV = projectName.getText();
                String projectDescriptionV = projectDescription.getText();
                String paymentScheduleV = paymentSchedule.getText();
                int banksInvestmentV = Integer.parseInt(banksInvestment.getText());
                int paymentsMadeV = Integer.parseInt(paymentsMade.getText());
                String projectTypeV = (String)projectType.getSelectedItem();
                //call method to add
                addToDatabase(projectOfficerV,projectNameV,projectDescriptionV,paymentScheduleV,banksInvestmentV,paymentsMadeV,projectTypeV);
       class QuitListener implements ActionListener {
            public void actionPerformed(ActionEvent ent) {
                //action for file>quit
                System.exit(0);
       public static int removeFromDatabase(String PROJECT_NAME) {
            int added = 0;
            Statement s = null;
            try {
                Class.forName("org.apache.derby.jdbc.ClientDriver").newInstance();
                Connection connection = DriverManager.getConnection("jdbc:derby://localhost:1527/PROJECT;user=nbuser;password=nbuser");       
                s = connection.createStatement();
            } catch (SQLException se) {
                System.err.println("We got an exception while creating a statement:" +
                        "that probably means we're no longer connected.");
                se.printStackTrace();
                System.exit(1);
            } catch (ClassNotFoundException cnfex) {
                System.err.println("We got an exception while trying to import the Derby library. Check installation.");
                cnfex.printStackTrace();
            } catch (Exception ex) {
                System.err.println("We got an exception while trying to use the Derby library. Check installation.");
                ex.printStackTrace();
            int m = 0;
            try {
                m = s.executeUpdate("DELETE FROM \"NBUSER\".\"TABLE\" WHERE PROJECT_NAME = '" + PROJECT_NAME + "'");
            } catch (SQLException se) {
                System.err.println("We got an exception while executing our query:" +
                        "that probably means our SQL is invalid");
                se.printStackTrace();
            return added;
            /* Action listeners - we need 1 for every button or menu option we have */
            class RemoveFromDatabaseListener implements ActionListener {
            public void actionPerformed(ActionEvent ent) {
            //remove from database event - call the function with correct parameters
            System.out.println("This entry has been removed to the database!");
            //because all of the form objects are protected, we can directly get thier contents
            String projectNameV = projectName.getText();
            //call method to add
            removeFromDatabase(projectNameV);
            public static int searchFromDatabase(String PROJECT_NAME) {
            int added = 0;
            Statement s = null;
           // Connection con = DriverManager.getConnection("jdbc:derby://localhost:1527/PROJECT;user=nbuser;password=nbuser");
            try {
                Class.forName("org.apache.derby.jdbc.ClientDriver").newInstance();
                Connection connection = DriverManager.getConnection("jdbc:derby://localhost:1527/PROJECT;user=nbuser;password=nbuser");       
                s = connection.createStatement();
            } catch (SQLException se) {
                System.err.println("We got an exception while creating a statement:" +
                        "that probably means we're no longer connected.");
               se.printStackTrace();
                System.exit(1);
            } catch (ClassNotFoundException cnfex) {
                System.err.println("We got an exception while trying to import the Derby library. Check installation.");
                cnfex.printStackTrace();
           } catch (Exception ex) {
                System.err.println("We got an exception while trying to use the Derby library. Check installation.");
                ex.printStackTrace();
            int m = 0;
            try {
                s.executeQuery("SELECT * FROM \"NBUSER\".\"TABLE\" WHERE PROJECT_NAME LIKE '" + PROJECT_NAME + "'");
          //      Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
          //                              ResultSet.CONCUR_READ_ONLY);
           //     ResultSet srs = stmt.executeQuery("SELECT * FROM \"NBUSER\".\"TABLE\"");
            } catch (SQLException se) {
                System.err.println("We got an exception while executing our query:" +
                        "that probably means our SQL is invalid");
                se.printStackTrace();
            return added;
            /* Action listeners - we need 1 for every button or menu option we have */
            class SearchFromDatabaseListener implements ActionListener {
            public void actionPerformed(ActionEvent ent) {
            //remove from database event - call the function with correct parameters
            System.out.println("SEARCHING THE DATABASE!");
            //because all of the form objects are protected, we can directly get thier contents
            String projectNameV = projectName.getText();
            //call method to add
            searchFromDatabase(projectNameV);
            public void actionPerformed(ActionEvent evt){
            if(evt.getActionCommand().equals("CLEAR")){
            projectOfficer.setText("");
       public static void main(String [] args) {
            //create a new instance of the object
          heckley h1 = new heckley();
    }I'm getting this error on the following line.
    AddActionListener (java.awt.event.ActionListener) in javax.swing.AbstractButton cannot be applied to (heckley)
            clear.addActionListener(this);// assuming your class implements ActionListenerThanks for your help. I know I need to improve my java and I'm working towards that and have managed to fix most of my problems but for some reason I can't get this to work!

  • Can't get Simple button to Load Movie Clip

    Hi I've looked around for the answer to my question on this
    forum
    but havent found it so here it goes. I am working on this
    company's
    Flash site that was built by an outside studio. I am using
    CS3.
    The url to the site is
    http://www.bubbakeg.com.
    (this link will take you to the main page click the shadow
    graphic
    on the left under Bubba and this will take you to the site I
    am speaking
    of. The site is basically 5 different pages or movie clip.
    What I am
    trying to do is basically change the "Spring Break" middle
    graphic
    (which is a Movie Clip) on the HOME page and add a simple
    button
    that will direct the user to a new page. When I replaced the
    graphic
    with a new Movie clip there was no problem but I have added
    a
    button to load a new page (movie clip) and nothing happens.
    This
    button is in the movie clip of the new graphic which is
    called up
    when the page loads. If i take this button and just put it
    on the
    Main Stage in Scene 1 by itself it works and loads the page
    (movie clip). It does not however when it is embeded in the
    Movie
    Clip. The Flash site is basically 5 different Movie Clips
    loaded into
    an "Empty Clip". This empty clip has a timeline with each of
    the
    clips labeled and with their respective sized placeholders.
    And
    when you click on either the links on the Nav bar or the
    graphic
    for each page it loads that movie clip on the main page. It
    seems
    like the button only wants to work on the main timeline. I
    have
    even replaced the code for the "Contact" button with the code
    for the new button and it worked (opening new page). Here is
    the
    code for the new button that does not work:
    on (release) {
    _root.contentHolder.myHeight = 307;
    _root.contentHolder.newLoc = 9;
    heightAnimation();
    I know the location and height from the above code are
    referring to the placement and sizing of each movie clip
    in the "Empty Clip". As i said before this heightAnimation
    and the resizing of the new clip works fine when the
    button resides in Scene 1 on the Main Timeline but not
    within the new movie clip (graphic Ive created.)
    I will upload the main chunk of the code that resides
    in Scene 1 on the first frame of the "Actions" layer.
    If anyone has any ideas I would appreciate it very much!
    Please let me know if I can provide anymore info.
    Thanks!
    Greg

    change:
    function newLayerBT_CLICK(MouseEvent):void{
    to:
    function newLayerBT_CLICK(e:MouseEvent):void{

  • How to add a custom button in WD screen to call a workflow in siebel?

    Hi All,
    We have a requirement to have a custom button at the summary screen(after the rule execution) "Create Opportunity", on clicking on it a new opportunity record should be created in Siebel. As we know the "Save" link calls "PolicyAutomationSaveSession" inbound web service method and saves the information in session table and we can modify the PreSession and PostSession workflows. But we are not sure how it calls the service method and where is the mapping defined.
    Can you please help me on how to add a custom button and how to invoke a workflow in siebel side to implement this requirement?
    Also is there any document which can help me to add a custom button in screen and to add the code behind the button?
    Thanks in advance!!
    Regards,
    Subhradeep

    Subhradeep,
    Closing a Web Determinations window is essentially the same as closing any HTML window. It involves javascript, which you would have to add to the Web Determinations templates.
    Essentially the javascript command to close a window is {{window.close}} or {{top.close}}
    For timing, you might be able to use the setTimeout function of Javascript (see: http://www.w3schools.com/jsref/met_win_settimeout.asp)
    At the risk of exposing exactly how bad my javascript skills are, I have attached a super-simple html fragment, a page that closes itself after 3 seconds. It may help you get started in the right direction. In general closing a window is a fairly dubious activity and is often not permitted by certain browsers. This html page at least works in Internet Explorer.
    <html>
         <head>
         <script language="JavaScript">
              setTimeout(closeMe, 3000);
              function closeMe() {
                   alert("This window will close");
                   top.close();
         </script>
         </head>
         <body><B>This window will close in three seconds</B></body>
    </html>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Batch sequence memory leak?

    I wrote a JavaScript batch sequence and ran it in Acrobat 9 Pro on a folder of PDFs. Acrobats memory use steadily increased until it hit 1.1 GB. Then an Acrobat dialog said no files were processed, the memory use dropped back to normal and the CPU usage dropped to zero. So it looks like the problem includes a memory leak. As a test, I replaced my batch sequence with a simple, one-line test:
    var r = test;
    It has the same behavior. Any ideas?

    thanks for your reply.
    i have gone through those APIs you have mentioned and understood that we can run any custom command or existing global command using those APIs.
    my requirement is to launch the sequence file created. is there any way to directly launch the sequence file or else do i need to process the sequence file to know the command and parameters?
    if i need to process the sequence file, it will be always "Recognize text using OCR" and parameters may differ. for this, what is the command i need to execute?
    i am new to this environment, please dont mistake me.
    thanks in advance.
    regards

  • Can you create toolbar icons to launch batch sequence?

    As per subject is it possible to create a toolbar icon in Acrobat 8 to launch a specific batch sequence?
    Thanks
    Steve

    Thanks,
    It seems that each time I delve into Acrobat javascript I can do part of the job in a batch sequence and the other part in folder level java but not the lot in either one!
    The stumbling block was setting initial page opening options via a folder java script so all the actions would be triggered by a toolbar button (update doc info, set security options and initial view of the PDF currently open in Acrobat).
    Thanks anyway at least I know I did not miss how to add the buttons in the Adobe guides.
    Steve

  • Add menu item for Batch Sequence?

    Hello,
    I've created a folder level script that will execute when Acrobat starts. The script adds a menu item, that when clicked, will call another function.
    I'm wondering if I can create a batch sequence and add a menu item for that as well? I basically just want to avoid going through the whole Advanced -> Doucment Processing -> Batch processing... -> and then find the batch sequence and click Run.
    I've seen plenty of examples for adding menu items that call folder level scripts, but nothing on batch sequences. Has anyone ever done this?
    Many thanks in advance!

    You can't create a menu item to a specific batch sequence. The closest you
    can get is to open the batch sequences window, using the execMenuItem()
    method and "BatchEdit" as the name of the command (I'm not sure it's still
    the same in Acrobat X).

  • How can I create a form with a button that adds a new page of fields to fill out?

    Hi,
    I have a one-page form created in Acrobat Pro 9 that contains five fields for a user to complete. I'd like to give the user the option of adding a page with the same five fields to fill out. The user finishes those fields, presses an "Add a Page" button, and then gets another page to fill out, and so on. When finished, their PDF form might be 10 pages long, at which point the user can save it as a single PDF file. Is this possible to do in Acrobat Pro 9 or 10, and if so, how?
    Thanks,
    Andrew

    When I created a new template like you told me, I wasn't given the option to rename the fields. See screenshot below. I'm just given the option to add a new template. Changing it refers to changing the template to a different page.
    If you can show me how to have the fields renamed automatically or use the rename parameter, I think that should fix it.
    Under Tools>JavaScript>Document JavaScripts, I've added a Script named "PackagingArtwork".
    // Here is the code
    function PackagingArtwork()
    {this.createTemplate({cName: "PackagingArtwork", nPage: 5});
    // Here the code that spawns the template
    var PackagingArtworkArray = this.templates;
              var PackagingArtwork = PackagingArtworkArray[0];
              PackagingArtwork.spawn(this.numPages, false, false);
    This is what the JS debugger said.
    Acrobat EScript Built-in Functions Version 10.0
    Acrobat SOAP 10.0
    var t1 = createTemplate("t1", 0);
    var oXO = t1.spawn({nPage: numPages, bOverlay: false});
    while (numPages < 50) {
        t1.spawn({nPage: numPages,  bOverlay: false, oXObject: oXO});
    undefined
    [object CosObj=<<Stream>>]
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:AcroForm:Duplicate Packaging Artwork:Annot1:MouseUp:Action1
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:AcroForm:Duplicate Packaging Artwork:Annot1:MouseUp:Action1
    TypeError: PackagingArtworkArray is null
    2:AcroForm:Duplicate Packaging Artwork:Annot1:MouseUp:Action1
    TypeError: PackagingArtworkArray is null
    2:AcroForm:Duplicate Packaging Artwork:Annot1:MouseUp:Action1

  • How can I add a simple URL to Streamwork?

    Hi,
    I want to add a simple URL to a StreamWork activity. I do not care whether this is in a text or a collection etc. All I would like to see is that the URL is displayed as such (i.e. blue, underlined) and a user can navigate to the URL with a simple cklick. Even in WORD you can do this and the URL is converted to an active link automatically, but I didn't find a way to do this in Streamwork.
    So far, I add the URL into a text and then the user has to edit the text, mark the URL and then copy/paste it into a browser. In a lot of cases, the URL was deleted by accident or changed etc.
    Thanks
    Oliver
    Edited by: Oliver Nuernberg on Jan 28, 2011 10:03 AM

    Maybe there is a misunderstanding here -- Rob is probably thinking of the Status Updates.
    However, when you edit a Text item you will find a Hyperlink option in the tool bar at the top of the Item. So this is possible, Oliver, but you may not have seen this option.
    Thanks,
    Pete

  • Batch Sequences can't convert 10.000 pdf-files at one time

    I have Acrobat Professional 7.0 and I am running on Windows XP.
    To convert from PDF to EPS I am using Advanced - Batch processing - Batch Sequences.
    Every week I have around 5.000 PDF-files which have to convert to EPS without any problems.
    Sometimes I have more than 10.000 PDF-files. After converting to EPS I thought Acrobat Pro was finishing to convert all the PDF, but if I look at the number of EPS, it seems Acrobat Pro didn't convert them all and it didn't give any error message.
    This always happened when I have more than 10.000 PDF-files.I think Batch sequences cannot convert above 10.000 files at one time.
    Is this a known issue? Is there any solution?

    File > Export >  Export Multiple Files will work as well.
    You can choose your conversion settings in Edit > Preferences > General > Convert from PDF.

  • Can I add a simple PDF to the forms site?

    I am looking to add a simple pdf - with no form content to my website and use my forms account to do so.  Is that possible?  I tried importing a pdf, but it needs editable content.  Thank you for any help.

    Hello Nancy,
    1. You can embed the form in your website as a widget.
    Go to "Distribute" Tab -> then look out for script under "Embed Form".
    2. You can also save your Formscentral form as a PDF form and then host the PDF separately and give its link in your website.
    Regards,
    Anoop

  • "Add New Tab" button does not exist in the Window -Customize Toolbar, and not on my Navigator toolbar. Where can I find one to put on my Navigator toolbar, please?

    I see "Add New Window" but..."Add New Tab" button does not exist in the Window -Customize Toolbar any longer, and not on my Navigator toolbar. Where can I find one to put on my Navigator toolbar, please?
    Thanks

    It's the "+" on the Tab bar. You can move it to the Navigation Toolbar if you prefer. When you start Customize, the + moves to the far right end of the Tab bar. You can drag it where you want (see attached image).
    Any luck?

  • How can I add a review button on my podcast

    How can I add a review button on my podcast, so I can see it on my iphone or itouch?

    You must create a custom signature.
    Find a guide here

  • Can't add pin it button or amazon button and can't exit customization

    I cannot add the pin it button or the amazon button through customization. I also have a problem with the whole customization process. I cannot exit. I have a little screen thing on customization that when I tried to open was in Japanese and really afraid of what it could have done to my computer. Here is the screen shot of it on customization.

    You can try to click the Restore Defaults button in the Customize palette.
    You can check for problems with preferences.
    Delete a possible user.js file and numbered prefs-##.js files and rename (or delete) the prefs.js file to reset all prefs to the default value including prefs set via user.js and prefs that are no longer supported in the current Firefox release.
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Resetting_preferences

Maybe you are looking for