disable the download of the display of the option 'Save' dialog box

In my website, I have a file I have let users

to work with, I can't download the file to open it used to for

I add this meta to the head, but it does not work

< meta name = "DownloadOptions" content = "nosave" / >


Best regards

Hello

It seems (IMHO) the case is a bit complicated. You know / have you consider that this detailed publication?

http://geekswithblogs.NET/theunstablemind/archive/2009/09/02/disabling-the-Open-button-in-Internet-Explorer.aspx

If my index is not enough for you, please watch plea of Murray:

http://forums.Adobe.com/message/3017246#3017246

Hans G.

Tags: Dreamweaver

Similar Questions

  • Completely disable the "Untrusted connection" dialog box

    I am a professional developer stuck behind a proxy at work. The behavior of this power of Attorney causes the SSL connection attempts get a certificate signed by my company, not the web site I try to connect to. I have no control over the proxy, so change this behaviour is out of the question.

    I need to use Firefox for a number of things and am generally fine adding exceptions for sites that I want to connect. However, some sites like github.com loading resources many other areas via SSL (CDN, Google Analytics, Gravatar, etc.). For these sites, I try to add exceptions in order to allow the company a signed, cert but I can only add to github.com, not any other sites, so even after adding an exception I'm brought back in the right to the page "this connection is untrusted". No matter how many times I try to grant a waiver, I never really get to github.com.

    Other browsers on my system are administered remotely and seem to be configured to automatically trust signed certs society. I need to know how to manually configure Firefox to always trust these certificates OR never shows me the unreliable connection dialog box and just maybe show red in the address bar when he does not trust the site cert.

    Apparently in OS X, there are at the level of the authorities of certification system. I don't know why it does not use Firefox, but I was able to export the CA company and import it in Firefox. Finally solved my problem.

  • 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 accidentally disabled the option monitor 2nd in the Configuration screen, how do I re enable it.

    I accidentally disabled the option monitor 2nd in the Configuration screen, how do I re enable it.

    I want to connect to my LCD tv as a monitor.

    Hello

    I suggest you follow the steps on how to enable below or commendable the second monitor and see if it works.

    Set up multiple monitors

    http://Windows.Microsoft.com/en-us/Windows-Vista/set-up-multiple-monitors

    Change settings display on multiple monitors

    http://Windows.Microsoft.com/en-us/Windows-Vista/change-display-settings-on-multiple-monitors

    Solving the multiple monitor problems

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-multiple-monitor-problems

    Multiple monitors: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/multiple-monitors-frequently-asked-questions

    Hope that the problem will be solved by the above link.

  • HP Laserjet M606x: Disable the option 'Print' in the built-in Web server

    I am testing a new HP Laserjet M606 device and to disable the option 'Print' which is displayed in the 'Information' tab in the built-in webserver (EWS). I have a firewall turned on, turned off wireless printing, FTP, AirPrint, Web Services, PPI and independent producers is also disabled. HP Jetdirect XML service is also disabled. I have crossed most of the EWS settings and configuration options in JetAdmin and did not find an option to turn this feature off.

    The device will be located in a public place and will have a reserved/static IP address (DHCP reserved). We charge for services to the end-users of printing - having this option turned on means that users can print for free if they find the IP address of the printer - not an ideal situation.

    Is it possible to disable this option permanently? The only other solution is to disable EWS entirely, if possible.

    To be a little more specific in the built-in web server click the Security tab. Now scroll down until you find the section for embedded web server settings. I was watching who had enough current firmware in the machine there is a checkbox to enable or disable the option for printing on the information page.

  • How to disable the option to find my phone, if I phone 4S dead?

    How to disable the option to find my phone, if I have Iphone 4S dead? I turned on Itunes and I wanted to restore it, but it's impossible because I find my iphone app is on. Synchronization is impossible

    If the iPhone is dead, how do you plan on catering?

    You can disable FindMyiPhone by logging iCloud.com.

    -> iCloud: remove your device to find my iPhone

  • How to disable the option for children to receive messages from my iPhone on their iPhones?

    How to disable the option for my children to receive my iPhone imesages on their iPhones?

    Do not share account iCloud with them. iCloud accounts are not meant to be shared.

  • How can I disable the screen saver when you run apps fullscreen.

    Using vista 64 bit and I cannot figure out how to disable the screensaver for the apps full screen.   I don't know how to WMP, but when you watch a video fullscreen online he goes to the standby.   Used to be able to do it with xp.

    Hello deadeyea09,
     
    Welcome and thank you for viewing on Microsoft Answers - Vista Community Forums!

    We need more information to be able to help on this issue.

    1. what applications are fullscreen you use?

    2. which site we use to play video online?

    Options to disable the screen saver need to have within this player in particular, watching movies online, if there is no option to turn it off, then we need to turn off the screen saver manually. Please follow the instructions below to turn off manually:

    1) click Start and then click Control Panel

    2) click on Customize

    3) click on screen saver

    (4) select NONE under screen saver

    5) click apply and close the window

    Please let us know if it helps.

    Thank you and best regards,
    Diana D
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to disable the option "empty trash".

    My granddaughter has autism try to delete video files and then empty trash. I want to disable 'Remove' button of files OR disable the option "empty trash". How to do

    In addition to the advice of George, you can also create a new user (standard) for your granddaughter.

    http://Windows.Microsoft.com/en-us/Windows/create-user-account#create-user-account=Windows-7

    You must follow the steps in the section: "my computer is in a workgroup.

    Thank you

  • Strange behaviour of the context menu in the pop-up window to disable the option

    Hello

    I have the table with the context menu of the pop-up window

    < f: facet name = "contextMenu" >
    < af:popup binding = "#{backingBeanScope.backing_jsf_fragments_postoffice_ContentMovementsView.p1}" id = "p1" contentDelivery = "immediate" > "
    < af:menu text = "menu 2" binding = "#{backingBeanScope.backing_jsf_fragments_postoffice_ContentMovementsView.m2}" id = "m2" > "
    < af:commandMenuItem text = "#{web_Bundle ['label.toolbar.menu.item.record.edit']}" "
    Binding = "#{backingBeanScope.backing_jsf_fragments_postoffice_ContentMovementsView.cmi3}" id = 'cmi3' "
    actionListener = "#{backingBeanScope.backing_jsf_fragments_postoffice_ContentMovementsView.showEditBookRecordPopupActionListener} '"
    Disabled = ' #{bindings. " RecordStateName.inputValue == 'ARRANGED'} "/ >"

    disabled the option works strange. When I right click on the folder with RecordStateName.inputValue = 'ARRANGED' menuItem is enabled. By selecting this menuItem enabled, nothing happens but menuItem is disabled. Disabled menuItem never going back active even I right click RecordStateName.inputValue "ARRANGED" <>and click on disabled menuItem does nothing.

    Help me how do to turn menuItem in context menu of the pop-up window.

    I use JD Studio Edition Version 11.1.1.5.0 on Weblogic 11.1.1.5

    Thanks in advance

    Hello

    You must use contentDelivery = "lazyUncached" to the context menu for re-read its content.

    Frank

  • Temporarily disable the option "maintain synchronization information".

    I'm trying to temporarily disable the "Maintain synchronization information" option in the category remote info of the Advanced view of the Site Definition dialog box. When this option is in DW CS6?

    When you click Control Panel servers, you should see all the servers that you have defined for the site.  By habit, I appoint my remote site definitions and test, so I know who is who.  You may have neglected to do.  If the names you see may be Untitled Site 1 or Site 2 Untitled.   Simply click on everything you see. Click on the pencil.  Click the Advanced tab.  Now that you see it?

    Nancy O.

  • Need to disable the Options &gt; CHM Internet Options

    I see how to disable the Options button, but I don't want to do that. I just need to turn off the Internet Options menu item. Can someone tell me how to do this?

    This is required by many of our customers. Thank you.

    Hello

    All I can say is that if it is an absolute requirement, CHM is not your thing. This option is simply a part of the CHM Viewer application that Microsoft is in control of. No way to change this to my knowledge,

    See you soon... Rick

  • Disable the button Save all the time

    Hello! I want to have a form that is with button "DISABLE" save all the time. When I put this code below into the trigger once - new - form - Instance:
    Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_FALSE ) ;  
    first of all, it's disable, but when I click the "RUN" button, the "Save" button is again enable. My question is where I must put the code above to disable the button Save all the time.

    TX in advance.

    indoracle wrote:
    Hello! I want to have a form that is with button "DISABLE" save all the time. When I put this code below into the trigger once - new - form - Instance:

    Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_FALSE ) ;  
    

    first of all, it's disable, but when I click the "RUN" button, the "Save" button is again enable. My question is where I must put the code above to disable the button Save all the time.

    TX in advance.

    Hello
    Is there another code in the form to activate this?

    Try the code at the moment-new Record Instance to the block level.

    Hope this helps.

  • Disable the Option replace in action

    Hello

    How to disable the option replaces using the Actions on the file bing.jpg?

    Screenshot.jpg

    Change the specific record for web options for re-registration of the action accordingly and by changing the behavior to replace in the secondary Panel SFW panels Options button.

    Mylenium

  • How to disable the eps, save the file as &lt; Filename &gt; backup - 01.eps?

    Hi all

    I'm not to good course how I came across a box that was checked off in the saving options, but whenever I save files eps, Illustrator will also save another backup file with-'01 "after the name of the file and before the extension".eps". In addition, every time I have save the document (as opposed to "save under") a dialog box appears asking me if I want to replace the existing file. Of course, I do.

    My question is: How can I turn this off?

    NOTE: as far as I know, this problem of mine is only limited to the .eps files, or more precisely, it doesn't happen during the recording of .ai files.

    Thank you.

    During the recording of the EPS files remember unckeck the box, lower left in the Save dialog box indicating the use of work plans.

Maybe you are looking for