Can adapt to the Save dialog box in Acrobat DC slot?

I was wondering if there is already a way we can customize the new dialog box save slot of DC.

Acrobat DC Save As Dialogue.PNG

I wish I could open directly to "Choose a different folder" without going through this additional dialog box (I don't understand the appeal of it, but it's not optimal for my workflow). Or maybe, if I could customize the 'Storage' options (e.g. addition of our own database files 'posters', 'Documents', etc., or maybe just pulling records 'Favorites' from Windows Explorer)

I get the decision to have the document cloud and creative cloud as default options. It's great to share and collaborate on documents, but I'm just too many document management and too big of a database. In my situation it's just, well, less than optimal.

I am on Windows 7 running Adobe CC group.

Well and as soon as I found this topic and responded, I then found someone else's post with the answer:

File save dialog

Tags: Acrobat

Similar Questions

  • How to make or force the Save dialog box for the link pop-up in Dreamweaver

    How do or force the Save dialog box for the pop-up link in Dreamweaver, legally?

    I looked on google how to and what is the code for this but all the answers are to use php or javascript code and paste it into "Web page editor" and edit with your file name. I wonder what the 'legal' way to do that using Dreamweaver options for getting to this: when I click on my link to the image on my Web page, I created, pop-up "save under" dialog box, then the visitor of my site for can save file that my site wish to offer for download.

    It is very easy to just a link certain file (in my case is png image) and open in a new page in the browser, but I want to save as dialog window appears and then visitor on my site to save my png file or not.

    Help!

    You will need to use a script.  If your server supports PHP, this will do what you want. Change filename & path to point to your download folder.  SaveAs download.php.

    Place a link on your page parent download.php file.

    
    

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    http://ALT-Web.com/
    http://Twitter.com/ALTWEB

  • How can I remove the information dialog box/box from popping up whenever my mouse stops on an object?

    How can I remove the information dialog box/box from popping up whenever my mouse stops on an object?

    Here is the procedure to remove the Vista tips: http://www.windowsreference.com/general/how-to-enabledisable-tooltips-in-windows/.

    I hope this helps.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • How to remove the Save dialog box before you close the form?

    Hi all

    I've created a form that will open a data connection to a button click.

    I get the error on failure and the code to close my form of app.execMenuItem ("Close");

    but a save dialog box appears before I can close.

    (maybe because I did something on the opening form),

    It is able to remove it? Or simply impossible?

    Best rgds.

    Hmmm,

    What happens if you add?

    Event.Target.Dirty = false;

    app.execMenuItem ("Close");

  • Save dialog box under does not display the list of files

    Terminal Server R2 of 2012.  Dialog box "Save as" for a user does not display the list of files.  The address bar shows the way, there is a form for the file name box, and the user can save the file successfully.  But the space that would show the files in the selected directory is empty.  There is no form for the list of files box, it's just the grey box dialog box space - that is to say, it is not that it looks like an empty folder, there is simply no display form box.

    The 'Open' dialog box appears normal, showing the list of files in the selected folder.

    I had the user close the session on the Terminal Server and access it from another PC, even if I was not expecting to make a difference, and it didn't.  I have also connected on myself and has not experienced the same problem.  So it seems to be user-specific.

    What a setting, the user has selected by mistake, or a mistake any?

    Thanks for any help.

    Hello

    Post your question in the TechNet Server Forums, as your question kindly is beyond the scope of these Forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • Native of filebrowse using and the cascading Save dialog box

    In my application I need to open file and file save dialog box when a specific button is clicked. I looked at the docs of stunts, but I found that the native options. Tried the native alert dialog, change of filebrowse dialog type. It displays well on Simulator, but could not get any output file that will be used in the Qt code.

    I pass these parameters

    int * num = NULL;

    char * folder [1024];
    dialog_update (alert_dialog);

    to dialog_event_get_filebrowse_filepaths(event,file,num), but it always returns BPS_FAILURE.

    In addition, access_shared is present in the bar-descriptor

    Here is my code:

    //slot function
    void App::fileOpen(){
        //===========================
            dialog_instance_t alert_dialog = 0;
    
            bps_initialize();
    
            dialog_request_events(0);    //0 indicates that all events are requested
    
            if (dialog_create_filebrowse(&alert_dialog) != BPS_SUCCESS) {
                        fprintf(stderr, "Failed to create alert dialog.");
                        return ;
                }
                const char* extensions[] = {"*.*","*.jpg","*.jpeg","*.mp3","*.wav","*.mp4","*.txt","*.doc","*.pdf"};
                int items = 9;
                if(dialog_set_filebrowse_filter(alert_dialog, extensions,items) != BPS_SUCCESS){
                    fprintf(stderr, "Failed to set alert dialog message text.");
                            dialog_destroy(alert_dialog);
                           alert_dialog = 0;
                           return ;
                }
               if( dialog_set_filebrowse_multiselect(alert_dialog,FALSE)!=BPS_SUCCESS){
                   fprintf(stderr, "Failed to set alert dialog message text.");
                                dialog_destroy(alert_dialog);
                               alert_dialog = 0;
                               return ;
               }
    
            if (dialog_show(alert_dialog) != BPS_SUCCESS) {
                fprintf(stderr, "Failed to show alert dialog.");
                dialog_destroy(alert_dialog);
                alert_dialog = 0;
                return ;
            }
    
            int shutdown =0;
            while (!shutdown) {
                bps_event_t *event = NULL;
                bps_get_event(&event, -1);    // -1 means that the function waits
                                              // for an event before returning
    
                if (event) {
                    if (bps_event_get_domain(event) == dialog_get_domain()) {
    
                        int selectedIndex =
                            dialog_event_get_selected_index(event);
                        const char* label =
                            dialog_event_get_selected_label(event);
                        const char* context =
                            dialog_event_get_selected_context(event);
    
                        char **fileArray[]={};
                        int *numFiles = NULL;
                       //
                              if(selectedIndex == 0){
           shutdown = 1;//user press the cancel button on dialog; close the dialog
       }
       else if(selectedIndex == 1){
           if(dialog_event_get_filebrowse_filepaths(event,file,num)!=BPS_SUCCESS){
           fprintf(stderr,"File open fail");
       }
       else{
    
    //debug purposes
           fprintf(stderr,"File array: %d/n",sizeof(file)*1024);
               fprintf(stderr,"Num files: %n",num);
               //fprintf(stderr,"Files int: %d",files);
       }
    
       }
                    }
                }
            }
    
            if (alert_dialog) {
                dialog_destroy(alert_dialog);
            }
            //===========================
    }
    

    Native Subforums have no useful information on this subject. Any help is greatly appreciated

    Hello again, here's the example as promised.

    To use the native filebrowse dialog box, the native code must run in its own thread to prevent the user interface in the Cascades to block. This is achieved by encapsulating all the dialog box code in a class derived from QThread.  The class I wrote is called FileBrowseDialog

    FileBrowseDialog.hpp

    #ifndef FILEBROWSEDIALOG_HPP_
    #define FILEBROWSEDIALOG_HPP_
    
    #include 
    #include 
    #include 
    
    /*
     * The file browse dialog displays a dialog to browse and select
     * files from shared folders on the system.
     */
    class FileBrowseDialog : public QThread
    {
        Q_OBJECT
    
        /*
         * QML property to allow multiple selection
         */
        Q_PROPERTY(bool multiselect READ getMultiSelect WRITE setMultiSelect)
    
        /*
         * QML property to read the selected filenames
         */
        Q_PROPERTY(QVariant filepaths READ getFilePaths)
    
        /*
         * QML property to set or get the file filters. This is an
         * list array variant.
         */
        Q_PROPERTY(QVariant filters READ getFilters WRITE setFilters)
    public:
        /*
         * Ctor and Dtor
         */
        FileBrowseDialog(QObject* parent = 0);
        virtual ~FileBrowseDialog();
    
        /*
         * Exposed to QML to start the run loop which creates and displays the dialog.
         * The dialog is shown until a button is clicked.
         */
        Q_INVOKABLE void show();
    
    public:
        /*
         * Getter for the selected filenames QML property
         */
        QVariant getFilePaths() const;
    
        /*
         * Setter and Getter for the filters QML property
         */
        QVariant getFilters() const;
        void setFilters(QVariant const& value);
    
        /*
         * Getter and Setter for the multiselect QML property
         */
        bool getMultiSelect() const;
        void setMultiSelect(bool value);
    
    signals:
        /*
         * Signal emitted when the OK button has been clicked on the browse dialog
         * The OK button is not enabled unless a file is selected
         */
        void selectionCompleted();
    
        /*
         * Signal emitted when the cancel button has been clicked on the browse dialog
         */
        void selectionCancelled();
    
    protected:
        /*
         * Implements the run loop. Dialog stays open until a button is clicked.
         */
        virtual void run();
    
    protected:
        dialog_instance_t m_dialog;
        bool m_multiSelect;
        QVariantList m_filePaths;
        QVariantList m_filters;
    };
    
    #endif /* FILEBROWSEDIALOG_HPP_ */
    

    FileBrowseDialog.cpp

    #include "FileBrowseDialog.hpp"
    #include 
    #include 
    
    FileBrowseDialog::FileBrowseDialog(QObject* parent)
        : QThread(parent)
        , m_multiSelect(false)
    {
        m_filters.push_back(QString("*.*"));
    }
    
    FileBrowseDialog::~FileBrowseDialog()
    {
    }
    
    void FileBrowseDialog::show()
    {
        if (!isRunning())
        {
            m_filePaths.clear();
            start();
        }
    }
    
    QVariant FileBrowseDialog::getFilePaths() const
    {
        return m_filePaths;
    }
    
    bool FileBrowseDialog::getMultiSelect() const
    {
        return m_multiSelect;
    }
    
    void FileBrowseDialog::setMultiSelect(bool value)
    {
        m_multiSelect = value;
    }
    
    QVariant FileBrowseDialog::getFilters() const
    {
        return m_filters;
    }
    
    void FileBrowseDialog::setFilters(QVariant const& value)
    {
        m_filters = value.toList();
        qDebug() << "filter count: " << m_filters.count();
    }
    
    void FileBrowseDialog::run()
    {
        bps_initialize();
    
        //request all dialog events
        dialog_request_events(0);
        if (dialog_create_filebrowse(&m_dialog) != BPS_SUCCESS)
        {
            qDebug() << "Failed to create file browse dialog.";
            emit selectionCancelled();
            return;
        }
    
        //set the selection filters
        if (m_filters.count() > 0)
        {
            char** ext = (char**)new char[m_filters.count()*sizeof(char*)];
            int i = 0;
            for (QVariantList::iterator it = m_filters.begin(); it != m_filters.end(); ++it, ++i)
            {
                QString filter = it->toString();
                if (!filter.trimmed().isEmpty())
                {
                    int length = (filter.length() + 1) * sizeof(char);
                    ext[i] = new char[length];
                    strncpy(ext[i], filter.toAscii(), length);
                }
            }
            if (dialog_set_filebrowse_filter(m_dialog, (const char**)ext, m_filters.count()) != BPS_SUCCESS)
            {
                qDebug() << "unable to set file browse dialog extensions";
            }
            for (i = 0; i < m_filters.count(); i++)
            {
                delete ext[i];
            }
            delete ext;
        }
    
        if (dialog_show(m_dialog) != BPS_SUCCESS)
        {
            qDebug() << "Failed to show file browse dialog.";
            dialog_destroy(m_dialog);
            m_dialog = 0;
            emit selectionCancelled();
            return;
        }
    
        bool shutdown = false;
        while (!shutdown)
        {
            bps_event_t* event = NULL;
            bps_get_event(&event, -1);    // -1 means that the function waits
            // for an event before returning
    
            if (event)
            {
                if (bps_event_get_domain(event) == dialog_get_domain())
                {
                    //0=ok, 1=cancel
                    int selectedIndex = dialog_event_get_selected_index(event);
    
                    if (selectedIndex == 1)
                    {
                        int count;
                        char** filepaths;
                        if (BPS_SUCCESS == dialog_event_get_filebrowse_filepaths(event, &filepaths, &count))
                        {
                            for (int i = 0; i < count; i++)
                            {
                                qDebug() << "selected file: " << filepaths[i];
                                m_filePaths.push_back(QString(filepaths[i]));
                            }
                            bps_free(filepaths);
                        }
                        emit selectionCompleted();
                    }
                    else
                    {
                        emit selectionCancelled();
                    }
    
                    qDebug() << "Got file browse dialog click";
                    shutdown = true;
                }
            }
        }
    
        if (m_dialog)
        {
            dialog_destroy(m_dialog);
        }
    }
    

    This class derives from QObject (by QThread) which means that it can be used by QML when it exposes properties and signals. The FileBrowseDialog class has 3 properties

    -multiple selection: a Boolean flag indicating if single or multiple selection is allowed

    -filepaths: a read only value that returns the list of files selected

    -Filters: a read/write value is where you can specify one or more filters to file (for example, ".doc", "*.jpg") etc.

    The next part is how you call the FileBrowseDialog through the QML. To do this, we must inform the QML of the FileBrowseDialog page. This is done in the App class via the qmlregistertype code.

    App.cpp

    #include 
    #include 
    #include 
    
    #include "app.hpp"
    #include "FileBrowseDialog.hpp"
    
    using namespace bb::cascades;
    
    App::App()
    {
        qmlRegisterType("Dialog.FileBrowse", 1, 0, "FileBrowseDialog");
        QmlDocument *qml = QmlDocument::create("main.qml");
        qml->setContextProperty("cs", this);
    
        AbstractPane *root = qml->createRootNode();
        Application::setScene(root);
    }
    

    The QML is now ready to be able to use the FileBrowseDialog. The example below is a page complete qml which has a button and a label. When we click on the FileBrowseDialog button is open, and all selected files will appear in the label.

    Main.QML

    import bb.cascades 1.0
    import Dialog.FileBrowse 1.0
    
    Page {
        content: Container {
            Label { id: filebrowseDialogLabel }
            Button {
                text : "File Browse Dialog"
                onClicked: {
                    filebrowseDialog.show();
                }
            }
            attachedObjects: [
                FileBrowseDialog {
                    id: filebrowseDialog
                    multiselect : true
                    filters : ["*.doc","*.jpg","*.txt"]
                    onSelectionCompleted: {
                        if(filebrowseDialog.filepaths.length>0)
                            filebrowseDialogLabel.text = filebrowseDialog.filepaths[0];
                        else
                            filebrowseDialogLabel.text = "no file selected";
                    }
                    onSelectionCancelled: {
                        filebrowseDialogLabel.text = "file browse dialog was cancelled";
                    }
                }
            ]
        }
    }
    

    And it's pretty much just invoke the native dialog file navigation in stunts. Please note save the file would follow a similar model, but I found that this dialog box was not particularly useful because it displays only a simple dialogbox with a text file name entry.

    See you soon

    Swann

  • I can't and never been able to open a file that was previously saved on hard disk by selecting the print option to get in the print dialog box

    I can not and never been able to open a file that was previously saved on hard disk by selecting the print option to get in the print dialog box. Firefox displays gooblygook, even if the name of file is an html element, the Notepad of Windows crashes, MS Excel does not recognize the file type. MS Word also displays goobblys when the file has no file extension.

    If you use the file printing, then you will get a file that is supposed to be sent to a printer, and this file has any sort of code formatting for this printer.

    Open such a file in Firefox or a text editor can only work if you use one printer for text to print the file to, then make sure that such a printer is installed and selected.

  • Help open the levels dialog box and save the entered settings.

    Hey,.

    I'm trying to work out how to save the applied middle, whitepoint ect to a variable after the levels dialog box was called from javascript?

    I am writing a script that allows you to adjust the levels on a single image, and then I have to repeatedly apply these settings on a batch of images specified.

    Is this possible? I figured out how to open and apply the levels but not to save the entered settings.

    Any help would be appreciated!

    I use photoshop cs6 on a mac.

    Thank you

    Mark

    Sorry Paul, but I think that you're wrong. The 'adjustment' list should have descriptions for each channel that has been set by the user. These descriptors must have the key for the channel as a referencetype, b/w in a list entry points, exit points black and white as a list and as a double gamma. I think that if these aren't in the descriptor, it is because the user has not changed the default values.

    But what if all you want to do is reapply the same settings later that you don't really need to know what setting were. You simply store the descriptor that contains for later use.

    function newLevels() {
    var desc2 = new ActionDescriptor();
    var ref1 = new ActionReference();
    ref1.putClass( charIDToTypeID('AdjL') );
    desc2.putReference( charIDToTypeID('null'), ref1 );
    var desc3 = new ActionDescriptor();
    var desc4 = new ActionDescriptor();
    desc4.putEnumerated( stringIDToTypeID('presetKind'), stringIDToTypeID('presetKindType'), stringIDToTypeID('presetKindDefault') );
    desc3.putObject( charIDToTypeID('Type'), charIDToTypeID('Lvls'), desc4 );
    desc2.putObject( charIDToTypeID('Usng'), charIDToTypeID('AdjL'), desc3 );
    return executeAction( charIDToTypeID('Mk  '), desc2, DialogModes.ALL );
    };
    // store the descriptor holding the users values for later
    var newLevelsDesc = newLevels();
    // do something else like open another image
    // then when needed make a new adjustment layer using those settings
    executeAction( charIDToTypeID('Mk  '), newLevelsDesc, DialogModes.NO );
    
  • Why can I not use tab key to move around in the Bookmark dialog box add?

    It is a lot easier and faster if the tab key allows you to move in the Bookmark dialog box Add. Otherwise, it will be very annoying that every time that you add a bookmark, you have to catch a mouse.
    Or could you recommend an addon I would add bookmark without using the mouse and the bookmark is organized simply into a tree?

    Never tried this before in Firefox, but the Tab key works for me to navigate through the dialog box add a bookmark in Firefox on Ubuntu Linux 10.04 3,6.15. May be different in Win7 or you may have a problem with one of your addons.

    You have this problem when running in Firefox SafeMode?

    http://support.Mozilla.com/en-us/KB/safe+mode

    Do not choose anything at the moment, just use 'continue in safe mode.

    If this is not the case, see this:

    http://support.Mozilla.com/en-us/KB/troubleshooting+extensions+and+theme...

  • Open/Save dialog box as in Windows 7 appear not

    Hello

    I have an intermittent problem with Windows 7.  I tend to keep the programs up and running for weeks, because every day instead of shutting down the computer, I put on standby.  The problem is, after a few weeks to go in and out of sleep, the open/save as box stops in programs which were broadcast during weeks of dialogue.  Here is an example:

    I open word, excel, firefox, January 1.  I opened random documents by clicking through Explorer or just browse the web.  But I never completely close all programs.  I could open up doc1, doc2, doc3, doc1 close, open doc4, narrow doc2, etc..  All programs stay in memory.  After a few weeks, said Jan 28, if I select file-> open, the dialog box is not pop up.  I can open via the documents Explorer, but no file-> open.  Also, I can't make a file-> save as.  I can do-> file save (saves the document), but nothing that causes the dialog box.  It is reproducible in word, excel, firefox, or any other program, I leave the door open for several weeks.

    Here's the weird second problem.  Say I got word, excel, and firefox open for weeks.  If I exit excel completely, and then restart, the dialog box continues to work in excel.  But it remains broken in word and firefox.

    Everyone race in this issue?  Somehow I can fix this without having to restart the program?  The main reason, it's a problem for me is because I do not often know that this problem occurred.  Hopefully, I'll open a spreadsheet from a web page and start editing.  I try to do a save as, only to find the pop dialog box - up will not appear and I can't save the work I do.  Or I have a word document open for weeks.  I usually just hit the Save button, but this time I want to save it under a different name.  I can't do it while this problem is here and I have to close microsoft word completely to get the box to start working again.

    Thanks for your help!

    Hello

    The key is that every so often, you have to restart things, windows programs, the computer itself, in order clearly to all the memory, unload all managers, the .dll files - indeed clear the cobwebs from the computer. If you do not, you can continue to run into the problem you describe.

    For my part, even if I do not turn off my computer, I restart from time to time to get a fresh start, for me, that means being able to have all the features with drag-and-drop processes; for you, this is the Save as dialogue box.

    Nothing else to do.

    Kind regards

    BearPup

  • 27.0 Firefox fails to open the print dialog box

    I have firefox set to update automatically. All of a sudden, perhaps after the most recent update, I can't print anything. If I try to print, I just get an audio windows error and nothing more. I don't get the print dialog box.
    I tried to reset the configuration of the printer, and I tried to reinstall Firefox all together. Neither sovled the problem.
    Please advice.

    Thank you.

    new information in bug reports seem to link it to avast.

  • Why Firefox doesn't open the printer dialog box whenever it starts

    When Firefox opens the printer dialog box opens automatically - why and how can I make sure that he does this.
    This never used to happen on previous versions of firefox

    Some web pages automatically shows the print dialog box. In particular, the pages Web sites have specially formatted for printing can do.

    Restore you tabs that you have opened previously, or commissioning with your home page (s)? I suspect that one of them generates the dialog box. You can view by clicking on each of them and reload the page to see if it's on this page.

  • The audio of the main dialog box on Game of Thrones is de-energized

    The audio of the main dialog box on Game of Thrones won after ten minutes two weeks in a row. We can still hear background noise.

    try going into the settings and if surround sound is set to on

    If a set audio to surround and no surround configuration is connected then what you describe is 100% what happens

    99% of dialog box is sent to the center speaker, which, on a stereo speaker configuration is missing because 2 stereo speakers are treated as front left and before there where only background sound plays

  • Ho I unselect the "cela automatically for files like this in the future." in the download dialog box?

    I clicked on the "this automatically for files like this in the future" by mistake in the download dialog box. I want to open a pdf file in adobe when I click on the link. currently the file gets saved and I can't change it. I have read through the suggestions and go in tools > options > applications and reassigned the pdf options asking first and firefox always download just the files somewhere. I don't want this option and I need to uncheck the automatic box.

    How then?
    I really want to talk to someone on the phone.

    First of all, please update Firefox 18. Update Firefox to the latest version

    Then read Firefox Refresh - reset the parameters and modules

  • HP Officejet 6700 Premium: Don't scan and the scan dialog box will not open

    Since I upgraded my computer to Windows 10, I'm unable to use my scan on my HP Officejet 6700 Premium function.  I can't even open the scan dialog box to look at the options etc.  I tried to find 'Scanner and printer' in painting, but it does not recognize.  Any suggestions?  I already deleted the printer and re-installed.  It was working fine before on Windows 8.

    Hello

    Thank you for using the HP forum.

    You can download and install the software COMPLETE features of HP printing for your operating system:

    http://support.HP.com/us-en/drivers/selfservice/HP-OfficeJet-6700-premium-e-all-in-one-printer-series-H711/4322971/model/4323605#Z7_3054ICK0K8UDA0AQC11TA930S6

    Once you have downloaded and installed the software, FULL of features, you will be able to print and scan.

    Hope that helps.

Maybe you are looking for