Changing titles/names

Hi,
is there anyway I can manually change the name of the song/artiste on my ipod?

Can't you rename them using iTunes?

Similar Messages

  • How do I change the name I have called my MacBook Air so I can add 11" and 13" into the title of whose computer this is for more clarity when I set up Time Machine and save to it with both computers?  Both are named with "my name and MacBook Air"

    I'm still learning the whole Mac thing but these are great machines!  I purchased a MacBook Air 13" and then thought I should also get a MacBook Air 11" for travel.  When I set it up at the Apple store I told the assistant the exact same name for each machine, i.e., "my name and MacBook Air."  What I want to do is go back in and rename both of them adding the 11" and 13" designation to the name so that when I set up Time Machine or whatever else I know exactly which machine is what.  I'm sure it is very simple but I cannot seem to figure it out.  Help please. Thanks.

    Go to System Preferences - Sharing and change the computer name there. You can also, optionally, change the name of your hard drive to further clarify the origin of your backups. Click once on the "Macintosh HD" on your desktop, then click its name to allow you to edit it.
    Matt

  • Globally changing a title/name

    We have recently changed the name of our annual fund and it
    is littered throughout our website. Is there a way to globally
    change it or will I have to go into every page and make the
    edit?

    LHPosey wrote:
    > We have recently changed the name of our annual fund and
    it is littered throughout our website. Is there a way to globally
    change it or will I have to go into every page and make the edit?
    Find and Replace (on the Edit menu) has an option to search
    the entire
    site and replace text or code. Make a backup of the site
    before you
    begin, because changes are not undoable in files that are not
    open at
    the time.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Changing client title name

    Hi, I weant to change the name of client associated with client number which comes when we login. How do we do that ?
    Thanks.
    Regards,
    Rajesh.

    Hi Rajesh,
    What exactly are you trying to do?
    The way I read your question, you are talking about the screen where you provide client, user id and password to log on, right?
    If this is correct, I don't know what you mean by client name; are you referring to the client number and try to change the default client that is pre-populated?
    In this case this has to be done through RZ11 by changing the profile parameters. Check <a href="https://forums.sdn.sap.com/click.jspa?searchID=1387482&messageID=2836136">this</a>.
    Otherwise I don't see any client name on the login screen.
    Thanks,
    Guenther

  • How can I change the name of item in TableViewController iOS

    How can I change the name of item in TableViewController? I want to be able to change the title of an item if I added one. Code:
    //  ViewController.m
    //  Movie List
    //  Created by Damian on 20/02/15.
    //  Copyright (c) 2015 Tika Software. All rights reserved.
    #import "ViewController.h"
    @interface ViewController ()
    These outlets to the buttons use a `strong` reference instead of `weak` because we want
    to keep the buttons around even if they're not inside a view.
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *editButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *cancelButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *deleteButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *addButton;
    // A simple array of strings for the data model.
    @property (nonatomic, strong) NSMutableArray *dataArray;
    @end
    #pragma mark -
    @implementation ViewController
    - (void)viewDidLoad
        [super viewDidLoad];
         This option is also selected in the storyboard. Usually it is better to configure a table view in a xib/storyboard, but we're redundantly configuring this in code to demonstrate how to do that.
        self.tableView.allowsMultipleSelectionDuringEditing = YES;
        // populate the data array with some example objects
        self.dataArray = [NSMutableArray new];
        NSString *itemFormatString = NSLocalizedString(@"Movie %d", @"Format string for item");
        for (unsigned int itemNumber = 1; itemNumber <= 0; itemNumber++)
            NSString *itemName = [NSString stringWithFormat:itemFormatString, itemNumber];
            [self.dataArray addObject:itemName];
        // make our view consistent
        [self updateButtonsToMatchTableState];
    #pragma mark - UITableViewDelegate
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
        return self.dataArray.count;
    - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
        // Update the delete button's title based on how many items are selected.
        [self updateDeleteButtonTitle];
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
        // Update the delete button's title based on how many items are selected.
        [self updateButtonsToMatchTableState];
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        // Configure a cell to show the corresponding string from the array.
        static NSString *kCellID = @"cellID";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellID];
        cell.textLabel.text = [self.dataArray objectAtIndex:indexPath.row];
        return cell;
    #pragma mark - Action methods
    - (IBAction)editAction:(id)sender
        [self.tableView setEditing:YES animated:YES];
        [self updateButtonsToMatchTableState];
    - (IBAction)cancelAction:(id)sender
        [self.tableView setEditing:NO animated:YES];
        [self updateButtonsToMatchTableState];
    - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
        // The user tapped one of the OK/Cancel buttons.
        if (buttonIndex == 0)
            // Delete what the user selected.
            NSArray *selectedRows = [self.tableView indexPathsForSelectedRows];
            BOOL deleteSpecificRows = selectedRows.count > 0;
            if (deleteSpecificRows)
                // Build an NSIndexSet of all the objects to delete, so they can all be removed at once.
                NSMutableIndexSet *indicesOfItemsToDelete = [NSMutableIndexSet new];
                for (NSIndexPath *selectionIndex in selectedRows)
                    [indicesOfItemsToDelete addIndex:selectionIndex.row];
                // Delete the objects from our data model.
                [self.dataArray removeObjectsAtIndexes:indicesOfItemsToDelete];
                // Tell the tableView that we deleted the objects
                [self.tableView deleteRowsAtIndexPaths:selectedRows withRowAnimation:UITableViewRowAnimationAutomatic];
            else
                // Delete everything, delete the objects from our data model.
                [self.dataArray removeAllObjects];
                // Tell the tableView that we deleted the objects.
                // Because we are deleting all the rows, just reload the current table section
                [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationAutomatic];
            // Exit editing mode after the deletion.
            [self.tableView setEditing:NO animated:YES];
            [self updateButtonsToMatchTableState];
    - (IBAction)deleteAction:(id)sender
        // Open a dialog with just an OK button.
        NSString *actionTitle;
        if (([[self.tableView indexPathsForSelectedRows] count] == 1)) {
            actionTitle = NSLocalizedString(@"Are you sure you want to remove this movie?", @"");
        else
            actionTitle = NSLocalizedString(@"Are you sure you want to remove these movies?", @"");
        NSString *cancelTitle = NSLocalizedString(@"Cancel", @"Cancel title for item removal action");
        NSString *okTitle = NSLocalizedString(@"OK", @"OK title for item removal action");
        UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:actionTitle
                                                                 delegate:self
                                                        cancelButtonTitle:cancelTitle
                                                   destructiveButtonTitle:okTitle
                                                        otherButtonTitles:nil];
        actionSheet.actionSheetStyle = UIActionSheetStyleDefault;
        // Show from our table view (pops up in the middle of the table).
        [actionSheet showInView:self.view];
    - (IBAction)addAction:(id)sender
        [self.dataArray addObject:@"New Movie"];
        // Tell the tableView about the item that was added.
        NSIndexPath *indexPathOfNewItem = [NSIndexPath indexPathForRowself.dataArray.count - 1) inSection:0];
        [self.tableView insertRowsAtIndexPaths:@[indexPathOfNewItem]
                              withRowAnimation:UITableViewRowAnimationAutomatic];
        // Tell the tableView we have finished adding or removing items.
        [self.tableView endUpdates];
        // Scroll the tableView so the new item is visible
        [self.tableView scrollToRowAtIndexPath:indexPathOfNewItem
                              atScrollPosition:UITableViewScrollPositionBottom
                                      animated:YES];
        // Update the buttons if we need to.
        [self updateButtonsToMatchTableState];
    #pragma mark - Updating button state
    - (void)updateButtonsToMatchTableState
        if (self.tableView.editing)
            // Show the option to cancel the edit.
            self.navigationItem.rightBarButtonItem = self.cancelButton;
            [self updateDeleteButtonTitle];
            // Show the delete button.
            self.navigationItem.leftBarButtonItem = self.deleteButton;
        else
            // Not in editing mode.
            self.navigationItem.leftBarButtonItem = self.addButton;
            // Show the edit button, but disable the edit button if there's nothing to edit.
            if (self.dataArray.count > 0)
                self.editButton.enabled = YES;
            else
                self.editButton.enabled = NO;
            self.navigationItem.rightBarButtonItem = self.editButton;
    - (void)updateDeleteButtonTitle
        // Update the delete button's title, based on how many items are selected
        NSArray *selectedRows = [self.tableView indexPathsForSelectedRows];
        BOOL allItemsAreSelected = selectedRows.count == self.dataArray.count;
        BOOL noItemsAreSelected = selectedRows.count == 0;
        if (allItemsAreSelected || noItemsAreSelected)
            self.deleteButton.title = NSLocalizedString(@"Delete All", @"");
        else
            NSString *titleFormatString =
            NSLocalizedString(@"Delete (%d)", @"Title for delete button with placeholder for number");
            self.deleteButton.title = [NSString stringWithFormat:titleFormatString, selectedRows.count];
    @end

    Hey JB001,
    Sounds like you have more going on than just a simple issue with Home Sharing and more dealing with Wi-Fi syncing. Start with the article below and see if that may resolve it.
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi syncing
    http://support.apple.com/kb/TS4062
    If it does not work out, then may I suggest contacting Apple for further assistance to walk you through it or just take that time that you were talking about to sort it out.
    Contact Apple Support
    https://getsupport.apple.com/GetproductgroupList.action
    Regards,
    -Norm G.

  • I found the solution to a Mavericks bug on the Mail program. How can I share it? Several of my mail boxes stopped functioning properly when I updated to Mavericks. After long hours, I discovered that if I change the name of the mailbox, the content works.

    I found the solution to a Mavericks bug on the Mail program. How can I share it? Several of my mail boxes stopped functioning properly when I updated to Mavericks. The title of the mails stored in the mailbox appear, but the content was unavailable.
    After 4 long hours at the phone with the Apple staff unable to help me, I discovered that if I change the name of the mailbox, the contents of the mails stored there become available.
    Please, make this solution available to other people!

    You have found the the way to share it.   Include your problem and its solution in a forum post in the Mavericks forums.   Then mark you own post with a green solved star.
    Note.  You won't get any points for that; points are only awarded where you mark someone else's post as either helpful or solved.

  • How to change title for podcast on iweb

    I am getting the error that my podcast has already been submited to itunes but it hasn't. I sent itunes support an email and they said to change the title of the RSS. Can anyone tell me how to do that in iweb for the podcast?

    Bonjour
    Message was edited by: Koeklin
    Change the name of your podcast in iweb sidebar

  • How do I change the name property of a file in a document library?

    I am trying to come up with an Event Receiver that will change the name property of an file when it is uploaded. For instance when a file is uploaded into a document Library, currently the Title is being generated (which is fine)...I want to be able to
    change the "Name" property from whatever it is, to match exactly what is in the "Title" property. Are there any sample codes/blogs out there that I can take a look at? Has anyone  had any experience doing this? It seems like something
    that should be straight forward, to change the "Name" property to match what is in the "Tilte" property.

    Hi,     
    You can try the code below which use the SPFile.MoveTo() function to change the name of the file.
    EventFiringEnabled = false;
    SPFile f = properties.ListItem.File;
    string spfileExt = new FileInfo(f.Name).Extension;
    f.MoveTo(properties.ListItem.ParentList.RootFolder.Url +
    "/" + properties.ListItem["Title"]+ "_new" + spfileExt);
    f.Update();
    EventFiringEnabled = true;
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/5cafb8e4-bb85-4147-9bda-4ab42a4d4817/sharepoint-2013-event-receiver-to-rename-files-not-working?forum=sharepointdevelopment
    A link about rename uploaded file using Event Receiver for your reference:
    http://paulgalvinsoldblog.wordpress.com/2008/01/25/quick-easy-rename-uploaded-file-using-sharepoint-object-model-via-an-event-receiver/
    Best regards
    Patrick Liang
    TechNet Community Support

  • Change the name of window in SAP B1 8.8

    Dear All,
    I want to change the name of the A/R Down Payment request window to some other name. I have tried to do the same from frontend from document numbering but the problem is since there are no separate series for Down Payment request & invoice when I change the name there only the down payment invoice name changes while down payment request remains the same. Please guide if there is any table in SAP where all the window names might be saved and where I can go and edit the  name without any repercussions.

    Hi,
    Gordon is right you will get more replies if it's flagged as a question as people can earn points.
    But I'm feeling generous :P
    I don't know a way to do it like you mentioned, but you can just use the UI. There's loads of ways to do it but you could catch the form load event on before action = true, and do
    If (oForm.Title == "A/R Down Payment request")
               oForm.Title = "My new title";
    If you haven't worked with UI there's loads of examples and info to cover the bits I glossed over.
    Good luck

  • How do I change the name of my podcast in iTunes?

    My podcast is listed by my name (John Bell) in iTunes instead of its title (Bell's in the Batfry) which confuses a lot of folks looking for it.
    Is there a way somebody can explain to me... in "idiot english"... how I can get iTunes to change the name?
      Windows XP  

    I've looked at your code and the title of the code in your .xml file (and when its viewed in a web browser) has the title line down as your name not your podcast name.
    An error in the entry I'm afraid, not iTunes. As Mitchell says you can open the .xml file and edit the text - however, every time you create a new episode you may find the programme you're using will overwrite the code.
    As your name appears twice in your podcast (as the author and as the podcast name), only thing i could suggest is looking at the details youve entered to see if you had to put your name in twice in your programme - if you had to put it in twice try changing one of the fields, publish it and then open the xml file in a browser window - if the top line shows the amended name you know thats the one!
    Hope that all makes sense - it does in my head!!!! :o)
    Allen

  • How do i change the name of my songs on itunes?

    How do i change song names on itunes? it says " 1 Select the information you want to change.  2 Type the new information. 3 Press enter.   this does nothing.

    Hi Nethudir,
    Thanks for visiting Apple Support Communities.
    When editing the song information, make sure you are viewing the song's Info window:
    To view and edit a song or video's info in iTunes:
    Click once on the track title to select it
    From the File menu, choose Get Info
    Click the Info tab
    You will see a screen like the one below:
    From:
    Fixing Incorrect Song or Album Listings in iTunes
    http://support.apple.com/kb/TA24677
    Best Regards,
    Jeremy

  • How do you change the name of a PDF in the iPad app?

    How do you change the name of a PDF in the iPad app?

    In the file browser view, navigate to Help > Handbook > Copy, edit, delete, manage.
    Please take a look at a section titled "Renaming files".
    Hopefully, the Help > Handbook and What's New are informative for you to get started on Reader for iOS.  If not, let us know what's missing.

  • How Do You Change The Name Of A Folder?

    I have a very simple, almost ashamed to ask, question. How do you change the name of a folder? As always, thanks in advance.
    800 mz Flat Screen iMac   Mac OS X (10.4.4)  

    Howard,
    Click (select ) the folder, hit the return key and start typing...
    Before you start typing, you can go to the beginning, or the end of the title without deleting the title by using the back/forward arrow keys.
    ;~)

  • RoboHelp changes file name to lowercase

    I am using RH X5.0.2 (running on Win XP SP2) to import HTML files as topics. The primary layout is Microsoft HTML Help.
    The original HTML file names are mixed case, but when the files are imported into RoboHelp, the file names are changed to all lowercase. For example, GL_Audit.htm is changed to gl_audit.htm. This is an issue because the topic title reflects the file name, and I need the topic title to retain the mixed case of the original files.
    After I import the file, I have to manually change the topic title. However, RoboHelp does not like it when the title has an underscore. If I change gl_audit to GL_Audit and click OK, the change is not saved. But if I change gl_audit to GLAudit and click Apply, and then change it to GL_Audit, the change is saved.
    I am using an existing project that was created by someone else a long time ago. Here are the steps that I am following:
    1. Right-click the destination folder, and then click Import.
    2. At the Import File screen, select the desired file, for example, GL_Audit.htm, and click Open. The file is imported as a topic.
    3. Right-click the topic, and click Properties. Note that the Topic Tile is gl_audit, and the file name is gl_audit.htm.
    4. In the Topic Title field, type GL_Audit, and click OK. Note that the Topic title is still gl_audit, and not GL_Audit.
    5. Open the Topic Properties screen again.
    6. In the Topic Title field, type GLAudit, and click Apply.
    7. In the Topic Title field, enter an underscore between the L and the A so that the topic title is GL_Audit.
    8. Click OK. Not that the topic title is saved as it was typed -- in mixed case.
    If I can get RH to import the files without changing the original case, it will not matter that it takes two steps to change the topic title name.
    Any suggestions would be greatly appreciated.
    Ashley

    Hi again
    Ashley, how are these HTML pages being created? I ask because I performed a small test. While the import process did indeed convert the file name to all lower case, it ignored the Topic Title. However, if I didn't have a Topic Title defined, it did create one that was all lower case.
    I'm thinking that whatever tool that was used to create the topics you are importing didn't properly configure a proper Title Tag.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Change the name of an image file in Photos app

    Just wondering how you change the name of an image file in the new 2015 Photos app?

    The only way to change the filename of an image is to export the image with a new filename:  When exporting you can select the title a s a new filename.
    Then reimport the renamed file to Photos and delete the original version.

Maybe you are looking for

  • Passing request value into a query

    Hi, I was wondering whether it was possible to pass a request value into a report query in apex 3.2. I have a button with a submit value of "ALL" which when pressed i need to open up all the contents of a query as opposed to on those that have been c

  • To get the system time in milliseconds

    i want to get the system time in milliseconds eventhough the MLS(milliseconds) is given in the select statement as follows, sql>select to_char(sysdate,'MON:DD:YYYY.HH:HH:MI:SS:MLS') "NOW" from dual; does not seem to work. it throws the error that ORA

  • Third Party Infinitiy 2 Compatible Modem

    Hi, I have received my HH5 and have spent a merry time disabling everything in preparation for my install, to discover that you have to have DHCP enabled to set the DMZ to the static IP of my networks router. I have to say the interface is so dumb do

  • Peering with AS larger than 65535

    Hi, Have an oldish 7200-G2 in the lab that I need to setup with test peering with an AS larger than 65535 - It does not accept asdot notation (i.e. throws an error when I enter the converted AS - It doesnt like the "."). Is there any work-around to t

  • My mac was updated a while ago from snow leopard to OS X and I want to move a project from IMovie over to IDVD to burn it. Can this not be done any longer?

    I'm trying to move a movie I created in I Movie over to I DVD to burn it and all the tutorials say I should be able to, but my mac with OS X does not give me that option. Is there a work around or do I have to trash the whole project and start over i