Cannot edit source after selecting View | Source (Cntl-U)

After installing Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13, I cannot edit source text when I select "View" | "Source" (Cntl-U).
I can see the source, but I can't modify it. I believe I used to be able to do this on my prior Firefox release (can't remember exactly what the release number was, but it wasn't more than a couple years old.)

The built in option is a source viewer, not an editor. You can change this to use an external application.
You can do this by changing 2 hidden preferences.
# Type '''about:config''' into the location bar and press enter
# Accept the warning message that appears, you will be taken to a list of preferences
# In the filter box type view_source
# Double-click on '''view_source.editor.external''' to change its value to true
# Double-click on '''view_source.editor.path''' and set it to the path of the external editor that you want to use.
As an example, I use Notepad++ to as the source editor ([http://notepad-plus-plus.org/]), so I have set view_source.editor.path to C:\Program Files\Notepad++\notepad++.exe
You can use the Dafizilla ViewSourceWith add-on to select an external editor to view the source- https://addons.mozilla.org/firefox/addon/dafizilla-viewsourcewith/

Similar Messages

  • I cannot introduce birthdays after select the option from Preferences

    After I selected "Birthdays" from Preferences I do not find the way to write a different name/birtday in different days. If I write down the name in "description" will stay always the same. I am not allow to modify each one as I do with the other options like fun, home, etc.

    That's because the Birthdays calendar is being filled from the Address Book: that's where you need to add/edit the data.

  • Cannot edit contacts after download to iOS5

    The 'edit' button for contacts disappeared after upgraded to iOS5.  Any help please??

    If you added a gmail, yahoo, etc. account go into settings>mail, contacts and make sure you're not syncing through yahoo for example.. Turn that off, if that still doesn't work delete the yahoo account and simply set up the account again..will add the + & edit functions again..

  • Cannot edit properties after overwriting file in a document library

    I am (programmatically) overwriting a file in a document library after which none of the metadata fields can be edited either programmatically or manually:
    Edit Properties -> change something -> Save
    There is no error, just none of the metadata fields will actually update. To overwrite the file, I am using copy.asmx webservice. I get the same result when overwriting via REST, or just doing a plain http PUT. I also tried list.asmx webservice to update metadata.
    As long as I don't overwrite a file, everything works great.
    This is Sharepoint 2010. Versioning is off, checkout is not required. "Overwriting" means there is an existing file, previously uploaded manually or with copyservice and the new file has the same name.
    Has anybody seen this behavior? (or managed to get a sharepoint document library file into a similar state).
    Thanks, RL

    Hi,
    According to your post, my understanding is that after uploading file using the Copy.asmx web service, you could not edit the properties.
    I had used the following code to upload the file, after that to edit the properties, it worked without any issue.
    static void Main(string[] args)
    Copy copy = new Copy();
    copy.Credentials = new System.Net.NetworkCredential("UserName","Password","Domain");
    copy.Url = "http://sp/_vti_bin/copy.asmx";
    string filePath = @"C:\Test\Edite2.txt";
    string[] destURL = { @"http://sp/LIbA/Edite2.txt" };
    FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read);
    byte[] contents = new byte [fs.Length];
    fs.Read(contents,0,Convert.ToInt32(fs.Length));
    fs.Close();
    FieldInformation fileFieldInfo = new FieldInformation();
    fileFieldInfo.DisplayName = "Edite2";
    fileFieldInfo.Value = "Edite2";
    fileFieldInfo.InternalName = "Edite2";
    fileFieldInfo.Type = sp.FieldType.Text;
    FieldInformation[] fileFieldInfoArray = { fileFieldInfo };
    CopyResult copyResult1 = new CopyResult();
    CopyResult copyResult2 = new CopyResult();
    CopyResult[] copyResultArray = { copyResult1,copyResult2};
    uint resultCopy = copy.CopyIntoItems(filePath,destURL,fileFieldInfoArray,contents,out copyResultArray);
    Console.WriteLine("Upload Successful...");
    Console.ReadKey();
    You can check with the above code, then check whether it works.
    Did the issue occur in other libraries?
    You can create new library to check whether it works, maybe the library had been corrupted.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Page not displaying - cannot edit - ok in live view

    I have jsut upgraded to Dreamweaver CS 5.5 -  Windows 7 - My site used to  work fine in Dreamweaver CS4 - I have a template with editable regions and lots of divs -  wehn I ope the page in CS 5.5 - it shows the backgroudn  [which  repeats ] but none of the editable text
    teh page can be found at www.fcrsafield.com/list.hmtl
    The page displays correclty in live view - I've tried turning off"style renderign" and that allowed me to see my content and to edit it - but as soon as I saved teh file  - it all disappears again - but it is there in live view .
    Any help is apreciated as I have more than 100 pages built on this template.

    I'm surprised the page shows up at all in any browsers.  You've got some very whacky CSS rules.  I cleaned up the obvious stuff and removed what didn't seem to belong.
    @import url("../p7pm/p7pmh11.css");
    body {
    font-family: Geneva, Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: left;
    background: url(../images/patternDetailsMax401.jpg) fixed;
    #pagecontainer {
    width: 1000px;
    margin:0 auto;
    overflow:hidden; /**to contain floats**/
    #top {
    background-color: #cdc9a5;
    border: thick outset #b1a999;
    #middle {
    background-color: #b1a999;
    width: 1000px;
    margin:0 auto;
    #navbar {
    text-align: center;
    padding-top: 1%;
    margin-top: 10px;
    #content {
    clear:both;
    background-color: #FFFFFF;
    margin:25px 0 0 0;
    padding-right: 2%;
    padding-left: 2%;
    border: thick outset b1a999;
    #footer {
    background-color: #Cdc9a5;
    margin-right: 4%;
    margin-left: 4%;
    border: thick outset #b1a999;
    margin-bottom: 6%;
    /**use meaningful names, no idea what this is for**/
    .style16 {color: #FF0033}
    .style17 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 4em;
    font-weight: bold;
    font-style: italic;
    color: #000000;
    text-align: center;
    margin-bottom: 10px;
    .style18 {font-size: 10px}
    A must read:
    How to Develop with CSS?
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Finally, I highly recommend using one external CSS file in your Template.dwt.  It's much easier to manage and creates less code on your HTML pages.
    http://alt-web.com/DEMOS/DW-Link-Stylesheet.shtml
    Good luck.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Cannot edit templates after upgrade to version 4.1.0.00.32

    Hi,
    I recently upgraded APEX from version 3.2 to version 4.1.0.00.32.
    The upgrade ran successfully; however, now when we try to edit a template by going to 'Shared Components' --> 'Templates' and click 'Apply Changes', we get the following error:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    I've been searching on Metalink but haven't been able to find anything that matches this issue.
    Has anybody else come across this or know of a fix/patch to apply?
    The only workaround right now is to directly modify WWV_FLOW_TEMPLATES, but I'd like to avoid having to do that.
    Thanks much,
    Nora

    If you copy/paste your template code into a text editor, how many characters does it take up? I've run into a known limitation with APEX fields only accepting 32K worth of characters even if the underlying table column supports more. I've run into it trying to create massive PL/SQL procedure-based output regions and I end up having to compile each section as a procedure instead.

  • How can I edit an html file in Firefox using View Source?

    I have created an html webpage and saved it to my pc. I can't edit the html file in firefox when I right click on the page and select "View Source". I can view the code but I can't edit it. I can do this in IE9.
    I thought I was able to do this before in Firefox.
    Did my settings change somewhere that I can no longer do this?
    Do I have to have something checked in the Web Developer extensions for it to work?
    I'm using Firefox 24.0
    Thank you for any help with this. :)

    The View Source window in Firefox cannot be used to change computer codes. Nor can the Web Developer tools.
    Sorry for any inconvenience.
    I suggest using Programmer's Notepad.

  • How to hide system related info (J2EE Engine, JVM, OS) from View Source

    Hi Experts,
    We are developing an external facing webdynpro application for our customers. When i  right click on webdynpro application in browser and select View Source , it is showing all system specific information such as  DC names including model DC , JVM , System OS information (below is  exact details).
    I believe this  will give enough information for Hackers to know about system with out much efforts. Is there any we can avoid showing this information part of browser view source.
    Your comments are  highly appreciate.
    This page was created by SAP NetWeaver. All rights reserved.
    Web Dynpro client:
    HTML Client
    Web Dynpro client capabilities:
    User agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MDDR; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2), client type: msie6, client type profile: ie6, ActiveX: enabled, Cookies: enabled, Frames: enabled, Java applets: enabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Accessibility mode: false
    Web Dynpro runtime:
    Vendor: SAP, build ID: 7.0013.20080513102531.0000 (release=NW04S_13_REL, buildtime=2008-05-15:05:17:09[UTC], changelist=41322, host=pwdfm114), build date: Wed May 28 15:51:08 EDT 2008
    Web Dynpro code generators of DC companyname.us/projUI:
    SapDictionaryGenerationCore: 7.0014.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:49:06[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro: 7.0014.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:51:55[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore: 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:37:23[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-10:16:06:13[UTC], changelist=466194, host=pwdfm101)
    SapWebDynproGenerationCTemplates: 7.0014.20071029095230.0000 (release=645_VAL_REL, buildtime=2007-11-10:16:06:13[UTC], changelist=466194, host=pwdfm101)
    SapGenerationFrameworkCore: 7.0014.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:36:46[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:55:29[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary: 7.0014.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:46:17[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon: 7.0014.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:37:28[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCore: 7.0014.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-11-10:15:55:37[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates: (unknown)
    Web Dynpro code generators of DC sap.com/tcwddispwda: No information available!
    Web Dynpro code generators of DC companyname.us/projECCModel:
    SapDictionaryGenerationCore: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:42[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro: 7.0013.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:00:50[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:23[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapWebDynproGenerationCTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapGenerationFrameworkCore: 7.0013.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:44:42[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:26[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary: 7.0013.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:54:53[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:30[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCore: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:37[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:50[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    Web Dynpro code generators of DC sap.com/tcwdcorecomp: No information available!
    Web Dynpro code generators of DC companyname.us/projModel:
    SapDictionaryGenerationCore: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:42[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro: 7.0013.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:00:50[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:23[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapWebDynproGenerationCTemplates: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapGenerationFrameworkCore: 7.0013.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:44:42[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:26[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary: 7.0013.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:54:53[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon: 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:30[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCore: 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:37[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates: 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:50[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    J2EE Engine:
    7.00   patchlevel 34391.450
    Java VM:
    Java HotSpot(TM) 64-Bit Server VM, version: 1.4.2_13-b06, vendor: Sun Microsystems Inc.
    Operating system:
    Windows 2003, version: 5.2, architecture: amd64
    Edited by: Aravinda Boyapati on Nov 23, 2009 11:54 PM

    Hi Armin,
    I have the same behavior here. Prod is showing all this info. I assume this is some variable that we need to setup in Prod J2EE. Could you please tell me what is it?
    Also, would that change the stack trace? - Currently, we have WDP dumps in Prod, something that I would get rid off (and have just a 500 error page defined).
    Thanks,
    Daniel

  • View Source not showing up in context menu?

    Yes I did choose to allow view source during the release
    build. I also uploaded the source folder to the server. I can
    manually go to the view source folder and it is working fine, only
    thing is, the option is not in the context menu of the application.
    I suppose I can add it there myself but I thought that was
    automatic?
    Thanks!

    quote:
    Originally posted by:
    levancho
    if you are using FB3 you can you feature called : "Export
    Project" and it does everything for you, including view Source
    Feature,
    just select your project and then click on Project -->
    Export Project
    and in dialog select "View Source" and then finish.
    That is exactly what I did, I go to Export Release Build, I
    select View Source, I choose which files to show, I name what
    directory I want it to be in. I click Finish, Then I upload
    everything from the release-bin to my server. I can manually go to
    the view source URL and that works, but the option does not appear
    when I right click the .swf. But as a work around I can add the
    option to the context menu myself and use navigateToURL to send the
    user there.

  • I recently upgraded to FireFox 8.0. Now I can no longer see the option to view source code. Where has this gone?

    Nothing more to add, cannot find view source.

    "Ctrl+U" or in the View Menu
    If you want to see the keyboard shortcuts in Windows 7 menus, the removal was Microsoft's doing, and can be restored see item #9 in
    * http://dmcritchie.mvps.org/windows-7/win7.htm#steps
    If you made source be Notepad for you local files, you can still see the formatted source by bookmarking the following chrome shortcut. I give a keyword shortcut of "source:"
    * javascript:location="view-source:"+location
    Keyboard shortcuts
    * Keyboard shortcuts | How to | Firefox Help<br>https://support.mozilla.com/kb/Keyboard%20shortcuts
    * Firefox and other Browser Keyboard Shortcuts (Comparison Table)<br>http://dmcritchie.mvps.org/firefox/keyboard.htm
    Keyword shortcuts:
    * Firefox Keyword Shortcuts<br>http://dmcritchie.mvps.org/firefox/kws.htm
    You can make '''Firefox 8.0''' look like Firefox 3.6.*, see numbered '''items 1-10''' in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 thru 8.0, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface
    <p>There is a lot more beyond those first 10 steps listed, if you want to make Firefox more functional.</p>
    <p><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small></p>

  • Drill down to a report with a select view

    I have a report with a select view on a column... In this column I have coded a navigation to another report that has some details and also has a select view on the same column.
    a) The only way to make this work is in the construction, using the view edit screen, the select view, select the option, save it... and then in the criteria, code the navigation.
    This had to be done to every option.
    b) Since the target report has also a select, whenever you navigate from the original report, the detail report is displayed "as it were", in respect to the select column... The target report is filtered by this column (I am using "is prompted") It would be nice if besides the filtering the select could show the select that comes from the original report... It is not working like this... The user has to select again (column selector) to see it like the original one...
    Sorry, it is a bit confusing...but I´d appreciate any help.
    Txs.Antonio

    I dont think about drill down, but try with navigation using common columns. in this way we can have both side navigations summary-> detail and detail->summary.

  • After upgrade from TFS 2010 users cannot view source control

    I recently did a in place of upgrade of TFS 2010 to TFS 2013.   All of my users permissions stayed in tact. The users (contributors) cannot view any of the source control in either in VS 2010 or 2013.  Since I am the administrator I
    see everything and have no issue.   Is there something that did not get brought over in the upgrade?

    Hi Rrenn49, 
    Thanks for your post.
    You upgraded to TFS 2013 Update 4?  There’s no any issue or warning during upgrade process? 
    What’s the detailed message they received when the contributors try to view source control files?
    Please manually check the contributors group’s permissions on your TFS Source Control.
    If you add a new user into your contributors group, this new user can access TFS Source Control correctly?
    If you have any further research of this issue, please share your experience here.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • JDI: Cannot EDIT a java source file in a loaded, inactive DC

    I have finished JDI Scenario 2+.  I have since built a new workspace and imported my Development Configuration.  I would now like to edit the java code and do a re-deployment.
    Problem: I cannot Edit the file; it is read-only.  I was able to edit the file from a different workspace yesterday, at which time when I typed in the editor I was prompted to create and activity and I did.  I did NOT mark it for exclusive check-out.
    Since then I have done a REVERT on that activity,but I still cannot edit this file in my second new wrokspace.  In the context menus, in the DTR sub-menu, the EDIT selections are always grayed-out.
    So, can someone advise how I can get the EDIT selections to be not grayed-out so that I can edit this file in the Java editor?
    Thanks,
    Mike R.

    Hi Mike,
    You are right, and the instructions are wrong: the "Create Project" must be done from the "Inactive DCs" view (for the sources to be editable).
    The "Active DCs" view will give you sources from the "active" workspace (containing all "activated" sources), which is read-only. For DCs you work on (and modify), you should sync sources from the "Inactive DCs" view, and for DCs you depend on you should sync archives/sources from the "Active DCs" view.
    I have requested for a correction of this error in our documentation.
    Regards,
    Manohar
    PS: There is now a dedicated SDN forum for JDI (under WebAS) - so you can post your questions there in future.

  • Ipod content is grayed out and I cannot select as source or play on mini

    Hi - this just happened and I need to know how to fix. I cannot seem to play any of the music on my ipod mini. I see the songs but the ipod skips right over them. The exception is one song that I downloaded for free. When I log into itunes, I see the ipod and the songs, but they are all grayed out and I cannot select any of them or play from my ipod source. This just happened this week and I wonder if I have somehow removed thelink to the purchased music? I connect the ipod to my other computer and it erased my content (I am new at this) so I reconnected to the orginal and restored my playlist, but nothing will play now. All itunes and ipod are up to date. Can any one help?
    Ipod Mini   Windows XP  

    Grey text when you look at the content and lock symbol at the bottom of the screen simply shows that your iPod is set to "automatically update songs and playlists". When you connected your iPod to the second computer you will have been presented with a dialogue box saying you were linked to another computer and asking if you wanted to link to this one. I would guess that you clicked "Yes" instead of "No" which is why your iPod was erased. If you want to access your iPod directly, play it through your iTunes, connect it to a second computer etc. you just need to change the update method to "Manually manage songs and Playlists" in the iPod preferences. Managing Your Songs Manually One thing to remember about manually updating though is that the iPod also has to be manually ejected before the "Do Not Disconnect" message will go away. Safely disconnect iPod
    Also, If you usually change your iPod Options by selecting 'View iPod' from the 'Edit' menu in Windows, you may on occasion find it is also greyed out, however if you right click the iPod icon in iTunes you can select 'iPod Options' and change to manual update from there.
    For info: iPod 101
    The iPod offers three ways to transfer music from your computer. You can select one of the following update modes from the iPod Preferences menu in iTunes (Edit=>Preferences=>'iPod' tab):
    1) Automatically update all songs and playlists. This is the default mode, in which your entire music library, including playlists, is automatically synced to your iPod. If the music library on your computer exceeds the iPod storage capacity, you are prompted to select a different update method.
    2) Automatically update selected playlists only. With this option, iTunes automatically copies the playlists you have selected to the iPod when you connect it to the computer.
    3) Manually manage songs and playlists. You can also choose to transfer music to the iPod manually. This allows you to drag and drop individual songs and playlists from iTunes to the iPod.

  • Using sharepoint designer 2013 - connected to sharepoint online - but getting " data source file cannot be saved" after making a new linked datasource

    using sharepoint designer 2013 - connected to sharepoint online - but getting " data source file cannot be saved" after making a new linked datasource

    Hi,
    Based on your description, I have done a test and I can’t reproduce your issue.
    I have used SharePoint Designer 2013 to open a SharePoint Online site and there are no issues.
    I’d like to clarify whether you encounter any issues when accessing SharePoint Online sites. If there are no issues during the accessing procedure, SharePoint Online service should be working fine at your side. The issue may be caused by specific SharePoint
    Designer client or network. I suggest you refer to the following steps to troubleshoot the issue.
    1. Use SharePoint Designer to open another site and check whether it is successful.
    2. When you are prompted to enter Office 365 account and password, try other users’ accounts and select the remembering the credential.
    3. Perform the connection procedure under another environment and verify whether the issue is resolved.
    If the issue persists, can you provide related screenshots for further troubleshooting?
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

Maybe you are looking for

  • What memory modules work in a TS-140?

    I want to add memory to my TS-140.  The product specs say that the server will take ECC UDIMM modules.  I am considering Hynix HMT31GR7CFR4C-PB T8 AE modules which are pc3-12800 ddr3-1600 SDRAM ECC, Registered, and Buffered.   Will these work? I alre

  • I have an iPod touch that will not turn on.

    Hello forums! I have an iPod touch that will not turn on. I have tried everything I can to turn it back on, but I just cant find the right thing. I dont know if it is in need of a new digitizer, or the battery is dead, but I would really appreciate s

  • Securing mysql initial accounts

    Hi                                                                                                                                            MySQL by default in the install process create 2 users: root and anonymous, each one connecting through 'loc

  • Jv: Connector for AS/400 Urgent Pls!!!

              Can anyone please tell me whether the J2ee CA resource adapter available for AS/400?           

  • Unusual Apache error_log entries

    My Apache error_log (and my wife's) are full of these: [Mon Feb 04 13:19:31 2013] [error] [client 127.0.0.1] File does not exist: /Library/WebServer/Documents/crls [Mon Feb 04 13:19:31 2013] [error] [client 127.0.0.1] File does not exist: /Library/We