How to changed the download  options?

When I tried to download from internet or files they send me it automatically opens with itunes. How can I change this?

I'll assume for a moment that you're using Safari to download.
Click on the word Safari in the menu bar at upper left of the screen.
In the dropdown menu, select Preferences (or press the Command key with the , key)
In Preferences, select the General tab (the first one at the left), uncheck the box marked '*Open "safe" files after downloading*'
That prevents downloaded files from automatically opening the assigned Apple application program.

Similar Messages

  • How to get the download option in Firefox 3.6.13. Earlier it was showing in the Navigation Bar

    How to get the download option in Firefox 3.6.13. Earlier it was showing in the Navigation Bar just beside where we see the URL.

    You can find the connection settings in Tools > Options > Advanced : Network : Connection
    See "Firefox connection settings":
    *[[Firefox cannot load websites but other programs can]]

  • How you change the download frequency for a single Podcast?

    I have iTunes 11.1.5 for Mac, and I can't find how to change the down load frequence , aka "check for new episodes" setting for individual podcasts. I've tried using the settings menu in the "My Podcasts" and the "List" podcast view. When I do this, I see these setting:
    Keep
    Download
    Sort Order
    Play Order
    If I click on the "Defaults..." button, the top setting is "check for new episodes"
    I have no problem with being able to change the  default download frequency setting, but I am at wit's end with locating where I can change that setting for individual podcasts.

    Bump.

  • CS4- JS : How to change the DTD Option - Reg.

    Dear All,
    I'm struggle to not getting the answer for change the DTD options though Script.
    Here I can Load the DTD using script and Validate then Its showing so many Errors, It means the root element is wrong [DOCTYPE] so the way I can change as per the XML Root Element.
    Root Element : Chapter
    Load DTD -> DOCTYPE name is  : text
    //================ Start Coding =================================//
    app.doScript(File("D:/program files/Adobe InDesign CS4/Scripts/XML Rules/glue code.jsx"));
    var myDoc = app.documents.item(0);
    var Store = new  Array();
    var count=0;
    myDTDPath = "C:\\Program Files\\Adobe\\Adobe InDesign CS4\\Executables\\Parser\\Macmil.dtd";
    myDoc.importDtd(File(myDTDPath));
    main();
    function main()
      if (app.documents.length != 0)
        var myDocument = app.documents.item(0);
        //This rule set contains a single rule.
        var DTDTitle  = new Array (new DTDRootTitle);
       with(myDocument)
         var elements = xmlElements;
         __processRuleSet(elements.item(0), DTDTitle);
      else
        alert("No open document");
      //Adds a return character at the end of every XML element.
        function DTDRootTitle()
          this.name = "DTDValidation";
          //XPath will match on every XML element in the XML structure.
          this.xpath = "//chapter";
          // Define the apply function.
           this.apply = function(elm, myRuleProcessor)
                with(elm)
                   Store[count] = elm.validate();
                   count+=1;
              return true;// Succeeded
            } //End of apply function
       for(var k=0; k<Store.length; k++)
            var test = Store[k];
             for(var m=0; m<test.length; m++)
              if(test[m].isValid == true)
              $.writeln(test[m].element.markupTag.name);
              $.writeln(test[m].errorMessage);
    //========================== End of the coding ==========================//
    Question : 1
    Manually I can load the DTD & change the DTD Options as per the Root Element of the XML.
    After Validate using Root Element Itself, Its working fine. Zero Errors.
    Mean while I can Load DTD though Script but I can't change the DTD Options, through Script.
    So Please any one can give me the solution for change the DTD Options using script.
    Please any one can give the solution, Really I can appriciate for this...
    Hope I'm waiting the result for this query....
    Thanks & Regards
    T.R.Hairhara Sudhan

    hello  T.R.Hairhara Sudhan
    i don't know whether this is write answer or not .
    do one thing from active doc get reference of Dtd and from dtd set rootTag = "root tag"
    e.g
    var dtd =  app.activeDocument.dtds[0];
    dtd.rootTag = xmlElement.markupTag;
    here xmlElement is value for "Validate from" in DTD option
    Regards
    tahir1987.

  • How to change the select-options fields length to long

    Dear friends:
       I had develop a program for sent email,and it have a field for fill mail address as below:
       data: lmail like adr6-smtp_addr.
       select-options: mailadd for lmail no intervals.
       my customer complain that the field is too short,but I can not change it to longer,the select-options component limit the visible length , how can i do for this problem!

    Dear All:
      I had realized this function.
      I defined a parameter and a pushbutton to replace the select-option componet,
    the code share as below.
    data: lmail like adr6-smtp_addr.
    SELECTION-SCREEN BEGIN OF LINE.
    parameters: mailCopy like lmail.
    selection-screen:pushbutton 64(5) pubu user-command mailButt.
    SELECTION-SCREEN END OF LINE.
    select-options: mailadd for lmail NO INTERVALS no-display.
    at selection-screen output.
      CLEAR l_count.
      DESCRIBE TABLE mailadd LINES l_count.
      IF l_count > 1.
        write ICON_DISPLAY_MORE as icon to pubu.
      ELSE.
        write ICON_ENTER_MORE  as icon to pubu.
      ENDIF.
    at selection-screen.
      CLEAR l_count.
      DESCRIBE TABLE mailadd LINES l_count.
      IF NOT mailCopy IS INITIAL AND mailadd[] IS INITIAL.
        MailAdd-low = mailCopy.
        Append mailadd.
      ENDIF.
      IF l_count = 1 and mailCopy IS INITIAL.
        refresh mailadd.
        clear mailadd.
      endif.
      if sy-ucomm = 'MAILBUTT'.
        perform show_box.
      endif.
    *       FORM show_box                                                 *
    FORM show_box.
      TYPE-POOLS aqadh .
      DATA: tab_and_field TYPE  rstabfield.
      tab_and_field-tablename = 'ADR6'.
      tab_and_field-fieldname = 'SMTP_ADDR'.
      CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG'
           EXPORTING
                TEXT           = 'SET E-Mail To '
                tab_and_field  = tab_and_field
           TABLES
                range          = MAILADD
           EXCEPTIONS
                no_range_tab   = 1
                cancelled      = 2
                internal_error = 3
                OTHERS         = 4.
      IF NOT MAILADD[] IS INITIAL.
        READ TABLE MAILADD INDEX 1.
        MAILCopy = MAILADD-LOW.
      ELSE.
        CLEAR MAILCopy.
      ENDIF.
    ENDFORM.

  • How to change the select options selection text dynamically in webdynpro abap ?

    I am using standard interface WDR_SELECT_OPTIONS.... i want to change the Selection text dynamically in my select options.I.E. if the select option is for VBELN field than i want to change its description SALES ORDER Number through Code to some other text.
    If anyone can please help me in this.

    Hi,
    You can achieve your requirement as below
    Get the range table of your selection field as below
              data lt_range_table type ref to data.
              wd_this->m_handler->GET_RANGE_TABLE_OF_SEL_FIELD(
                        exporting
                        i_id = 'VBELN'
                        receiving
                        rt_range_table = lt_range_table ).
    Update the selection field with new description - 'Your New Text'
              wd_this->m_handler->UPD_SELECTION_FIELD(
                        exporting
                             I_ID = 'VBELN'
                             I_DESCRIPTION = 'Your New text'
                             I_IS_AUTO_DESCRIPTION = abap_false
                             IT_RESULT = lt_range_table ).
    You can also pass the other parameters as per your requirement
    Hope this helps you.
    Regards,
    Rama

  • How to change the "Download" word indicated for a File browse item ?

    Hi,
    I have a File Browse item. It displays "Download". And works fine too ! i want to change the Message "Download" by "Télécharger". Where can I find this ?
    Thank you for your kind help !
    Christian

    Hello Christian,
    If you are referring to the DOWNLOAD on an interactive report that is set to download a blob (for example), you can change the word Download to be anything you wish in the Download Format Mask. The very last entry is the Download Message.
    DOWNLOAD:TABLE_NAME:BLOB_CONTENTS_COLUMN:PRIMARY_KEY_1:PRIMARY__KEY_2:MIME_Type_COlumn:FILENAME_COLUMN:LAST_UPDATE_DATE:CHARACTER_SET:CONTENT_DISPOISITION:DOWNLOAD_LINK_TEXT
    For example:
    DOWNLOAD:TABLE_Of_CONTENTS:TOC_PAGES:BOOK_ID:::PDF_FILENAME:MOD_DATE::ATTACHMENT:Click Here To Download This Book
    The message "Click Here To Download This Book" will appear for each link.
    Good luck,
    Don.
    You can reward this reply by marking it as either Helpful or Correct :)

  • How to change the download destination for all users in a same machine?

    Hi !
    Can anybody help me?
    This is the scenario:
    My application is going to be deployed in PCs with high rotation and politics inside the company those machines can't persist user information outside a session. This means that an user always is a new user in a PC, and when he logs off, his information (.../documents and settings/UserName/) is deleted by a central machine.
    The problem is that my users always have to download the application by JWS, because JWS saves (or caches) the application inside user folders.
    I know that it's possible to change download destination by a logged user, not like a global configuration.
    My question is:
    It is possible to configure the JWS properties (or something) to ensure that there will be only one .jar per machine not per user in the machine?
    -Diego
    Edited by: Diego_Trejos on Feb 16, 2009 1:06 PM

    You can set up a system cache for sharing jars: See here: http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/enterprise_config.03.06.html

  • I cannot find the Options button on my FireFox (Windows8). I want to change the download options.

    I use Windows8. I cannot change options or settings for FireFox.

    when I'm in the windows8 version of firefox nightly I do not see plugins options or firefox options...there isn't an orange button on windows8 version. Am I just not seeing it ?

  • How to deselect the default option in dropdown list in Adobe Pro XI?

    I know how to change the default option in properties, but I don't want there to be a default at all. When the user opens the form, I want the fields to be blank.

    Screenshot 1: form when opened with Reader as the user will open it.
    Screenshot 2: the "Physical Needed" option where I cannot seem to deselect the default
    Screenshot 3: the "Hearing Test Needed" option where there is no default - this is what I want!!!
    When I first made the file, I made several drop-down lists as you can see here and when the form is first opened, they are blank. Then later, when I had to make some changes to the options, the program selects a default, like the "Physical Needed: field: (I set it to None, since I couldn't make it blank.) I like the form to be blank when opened so the person filling it out can easily see which options still need a selection. I don't want those 2 defaults of "None". I've tried copying a existing field, but as soon as I make changes to the selection options in Properties, a default option is default is set and I cannot seem to un-highlight all the options in the Item List:.

  • How to change the order of download options as per our convience in obiee

    hi frineds,
    How can i change the order of the download options in obiee dashboard ?
    like if you press download option you see
    download to excel
    download to excel 2000
    download data
    download webpage(mhtml)
    how to change this order.????????

    The download options are setup in OracleBI\web\msgdb\messages\viewscontrolmessages.xml
    - Search for the tag *<WebMessage name="kmsgEVCDownloadLinks">* that contains the download links within the hyperlink tag
    - Each hyperlink tag is a download option
    - Reorder as you require
    - The actual text that gets displayed as a link can also be customized by editing the entry for a message such as kmsgEVCLinkDownloadExcel in the OracleBI\web\msgdb\l_en\messages\viewmessages.xml [the customization is locale specific]
    - Restart the presentation server

  • How to select the download location? its automatically downloading to users folder in c drive. i wanna change it..plz help me out......

    how to select the download location? its automatically downloading to users folder in c drive.. i wanna change to my desktop...plz help me out...

    Tools -> Options -> Save files to -> Click browse button and browse for folder where you want to save the file.

  • How do I block the download option on photos in my iWeb site?

    I am an artist and have posted lots of photos of my art in my iWeb site.  I am dismayed to see a download link show up when I click on the photos in my live site!  How do I block the download option on my photos?

    see this recent thread:
    https://discussions.apple.com/message/15262697

  • How to change the message in CUCM 7.1(2) " Your Current Options"

    Hi,
    Can any one help me how to change the system message in CUCM 7.1(2) " Your Current Options" to another text.
    Thanks...

    As far as I know you can't change that on CUCM.
    On CME you can.
    Bye,
    Jan
    Sent from Cisco Technical Support iPad App

  • How do I change the printer options on an ipad air?

    i am changing service provider. Currently they overlap. My ipad is happy to find the current old provider but cannot find the new provider even when i switch to that network. I cannot find any options for changing printer options. how can I change the printer option to access the new provider? i have 4 weeks to get the answer. Thanks

    If you mean that the iPad is tied to another user's iCloud account, you have to ask them to erase the device for you. You can't do it on your own. The device requires their Apple ID and password in order to turn off Find My iPad and to delete the iCloud account.
    IF you just want to sign into another Apple ID (not recommended either) go to Settings>iTunes and App store>Apple ID and sign out of that ID and sign into your ID,

Maybe you are looking for

  • Sqlplus: Error while loading shared libraries: libsqlplus.so:

    Hi The Error is as follows: sqlplus: Error while loading shared libraries: libsqlplus.so: cannot open shared object file: no such file or directory Installed R12 with RUP2. User Oracle already exists. I tried to create a user appsdev as follows: #add

  • I'm having problems registering my CS5...

    My friend recently updated to Adobe Creative Suite 6 and decided to give me his old CS5 discs and serial code. When I tried to run them on my computer they installed but none of the issued serial codes would work. When I went online it said that it w

  • Portlet backing file and include

    If I have a backing file, is there way to include another page in the handlePostback() method or preRender() method? Don't want to change the whole page, just the contents of the portlet...

  • *.Indd file made in CS3 will not open in CS6, ideas?

    There are many files made in CS# but this one happens to not pen up in CS6. The file has some embedded jpg files file size is @ 300mb

  • Imported images becomes too bright

    When I'm importing RAW images in my Aperture 2.1.4, my images becomes very brighter, something like 2 F Stop. I'm wondering why, and what to do to resolve the problem.... Thx !