How do i change colors in specific items.

Hi,
im new to final cut pro and im playing with a project. can anyone tell me how to select just one color like the color of a red shirt for example and change it blue and have all the other colors of the clip remain the same?
thanks in advance,
caleb kingston

can anyone tell me how to select just one color like the color of a red shirt for example and change it blue and have all the other colors of the clip remain the same?
What you're looking to do involves many of the same steps as the Pleasantville effect.
Before you get all confused, though, follow that process until step 9. In your case, instead of dialing down the saturation, turn the Hue wheel (the wheel in the upper right corner) to alter your object's color.
It will take a bit of tweaking, but you should be able to get thru it just fine.

Similar Messages

  • 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.

  • How do I change the way the item are listed in stacks

    How do I change the way the item are listed in stacks?
    Thanks
    Joel Simkhai

    Hello Joel,
    You have some choices available by clicking and holding on the stack for a second, and there are five sorting orders to choose from.
    I picked up a tip to create an empty folder and place it in the stack, give it a fancy icon and name it 0. Then by choosing the sort order as name, that fancy icon is always at the front.

  • In photoshop cs6 when i make a  canvas print photo matte how do i change colors if i chose one i dont like the one i chose???

    In photoshop cs6 when i make a  canvas print photo matte how do i change colors if i chose one i don't like the one i chose???

    Go to Select > Color Range to sample the unwanted color(s) in your image.
    Go to Image > Adjustments > Replace Color.  Adjust sliders for Hue/Saturation/Lightness.
    Nancy O.

  • HT4847 my backup file is too big?  how can i change some of the items that are being backed up to decrease size?

    my backup file is too big?  how can i change some of the items that are being backed up to decrease size?

    In iPhoto, Select All the Photos you want to move... Then goto  > File > Export >
    Choose the settings as seen here
    Click Export and select your External Drive
    Best to create a Folder to put them in... and away you go...

  • How do you change color of text in a sapscript?

    Hi All,
    How do you change color of text in a sapscript?
    Thanks in advance,
    sathish

    Hi,
    It is is not possible in script.
      just check out this weblog
    they have already discussed about color in sapscript.
    Re: SAPSCRIPTS IN COLOR
    Regards
    Kiran

  • How do you change color of screen in dreamweaver?

    Hello how do you change color of screen in dreamweaver website?

    Do you mean the background-color of the actual site, or are you talking about the color of the DW interface?
    In DWCC, you can go to Modify > Page Properties to change things like the background-color, text color and more for the actual web page.
    You can also change it in the CSS Designer panel by creating a body selector in the css, then make the change in the CSS Designer's properties sub window.

  • How do I change color in a selection, not globally?

    Hi guys,
    My question is how do I change color in a selection and not globally? My company uses Freehand currently and there is an option to find and replace color in a selection instead of the entire document. I need to figure out how to do this in Illustrator as we will be switching over shortly.
    Thanks,
    Ron

    Edit > Edit Colors > Recolor Artwork.

  • How do you change color of an event in a calendar in ical

    how do I change the color of an EVENTt in ical

    boivinr wrote:
    PLEASE APPLE ADD COLOR TAGGING TO EVENTS!!!
    Um, color tagging events has always been a feature of iCal. Go into iCal. In the upper left-hand corner it says "Calendars." Go under "File" and create a new Calendar--iCal will give it a color, but you can change that. If you do this in iCloud, you simply pick "edit" and click on the color, and you've a huge range of choices as to what color you want it to be.
    So, now you've got calendars--the family events calendar (named "Family") the "Days Off" calendar and the "Appointments" calendar...each with their own color. You can see them all when you click on "calendars" there on the left-hand side. And, in your case, can create calendars for each person at your work to know when they'll be on or off work. "John's calendar" and "Susan's calendar."
    You create an event, and among the choices you have (date, time, alert, notes) is one that says: "Calendar." It will show the default calendar with it's color, but offer you up and down arrows to pick a different calendar (you can change the default calendar, by the way, under preferences). You use those arrows and pick "John" calendar and the "event" of John being on-shift from 10pm-10am on December 12th appears on the calendar in orange. Create an event and give it the "Susan Off" calendar and her time off will appear in green. Give several events the "appointment" calendar and they'll all be blue (or whatever colors you've picked for these things).
    Yes?
    Now whether you can sync your iCal to Google and match up the colors is a whole other story. But you can--and have for as long as I can remember---color code your iCal events. 

  • Simply question: how can I change color of validation message ?

    After validation user has got for example text: "Wrong data" in black color. How can I change this color on red ?

    You can enclose your validation error message within a span tag as follows
    <span style="color:red;">error message</span>Varad

  • How can I change color on bookmark bar and tabs?

    I find the bookmark bar and tabs very hard to read.  Small black print on a grey background make no sense.
    How can I change the color of this background, add color to the tabs (similar to Firefox)?
    Am running Mountain Lion 10.8.2

    I find the bookmark bar and tabs very hard to read.  Small black print on a grey background make no sense.
    How can I change the color of this background, add color to the tabs (similar to Firefox)?
    Am running Mountain Lion 10.8.2

  • How Do I change color randomly of a MovieClip in a Timer event?

    I have created a MovieClip named "Target" and called it from actionscript. Inside this movie clip I have created an 'action' layer and written the code in it:
    import fl.motion.Animator;
    import fl.motion.MotionEvent;
    var this_xml:XML = <Motion duration="30" xmlns="fl.motion.*" xmlns:geom="flash.geom.*" xmlns:filters="flash.filters.*">
        <source>
            <Source frameRate="12" x="202" y="169.15" scaleX="1" scaleY="1" rotation="0" elementType="movie clip" symbolName="Target">
                <dimensions>
                    <geom:Rectangle left="-32.05" top="-30.85" width="64.05" height="61.7"/>
                </dimensions>
                <transformationPoint>
                    <geom:Point x="0.5003903200624512" y="0.5"/>
                </transformationPoint>
            </Source>
        </source>
        <Keyframe index="0" tweenSnap="true" tweenSync="true">
            <tweens>
                <SimpleEase ease="0"/>
            </tweens>
        </Keyframe>
        <Keyframe index="29" scaleX="2.096" scaleY="2.096"/>
    </Motion>;
    var this_animator:Animator = new Animator(this_xml, this);
    this_animator.play();
    this_animator.addEventListener(MotionEvent.MOTION_END, removeTarget);
    function removeTarget(event:MotionEvent):void
        this.parent.removeChild(this);
    In the main timeline I also have created another 'action' layer and written the code like this:
    var timer:Timer;
    var targetCount:uint;
    var container:MovieClip;
    function initGame():void
        container = new MovieClip();
        addChild(container);
        targetCount = 10;
        timer = new Timer(1000, targetCount);
        timer.addEventListener(TimerEvent.TIMER, generateTarget);
        timer.start();
    function generateTarget(event:TimerEvent):void
        var target:MovieClip = new Target();
         target.x = Math.random() * stage.stageWidth;
        target.y = Math.random() * stage.stageHeight;
        container.addChild(target);
    initGame();
    Now I can get 10 animating circles in different places of the stage after every second. And every circles will leave the stage after completing the animation. Though I have given 'pink' color in that circle, that's why its generating with 'pink' color always. How do I change the color of each circle while it will generate?
    Regards
    Dipesh Pal.

    I have tried in this way......
    function generateTarget(event:TimerEvent):void
        var target:MovieClip = new Target();
        var colorT:ColorTransform = new ColorTransform();
        colorT.redOffset = Math.round(Math.random() * 510) - 255;
        colorT.greenOffset = Math.round(Math.random() * 510) - 255;
        target.transform.colorTransform = colorT;
        target.x = Math.random() * stage.stageWidth;
        target.y = Math.random() * stage.stageHeight;
        container.addChild(target);
    but its not working......
    infact i have used function 'circleColor' which holds this random color transform.... and call that function from 'generateTarget' function also....but it doesnt work too...
    then how do I change the color of every circle which is randomly generating in the stage....?

  • How do I change colors in mail program?

    I am using tiger os with mail 2.1.3. I would like to know how to change the color of my read and unread messages? How do I change the highlight color? I would like to put them back to default colors.

    Go to Mail>Preferences>Fonts & Colors.
    Further help instructions if you click the +purple circle w/the black "?" in the middle+ located at the bottom right corner of window.
    !http://i50.tinypic.com/izvwo1.gif!

  • How do I change colors in apps?

    How do I change the colors of my apps?  I had all my apps in different colors and now they are all white. Notes, calendar, everything.
    I cannot work at night, either with white all the time.

    Go to Mail>Preferences>Fonts & Colors.
    Further help instructions if you click the +purple circle w/the black "?" in the middle+ located at the bottom right corner of window.
    !http://i50.tinypic.com/izvwo1.gif!

  • How do I change color on visited sites without causing websites to not view properly?

    I go to Content/Colors, change color of visited sites, uncheck "allow pages to choose own colors instead of my selections above".
    The visited sites change colors, but the websites that I go to do not view properly. They do not have names or headings or shopping carts or search boxes and are very hard to maneuver through.

    You can use code in userContent.css or use the Stylish extension to override the page colors.
    I use code like this:
    <pre><nowiki>a:visited {color:#e08!important;background-color:#eee}
    a:visited * {color:#e08!important;outline:1px dotted red!important;outline-offset:-1px}
    a:visited img {background-color:transparent}
    </nowiki></pre>
    *Stylish: https://addons.mozilla.org/firefox/addon/stylish/
    *http://userstyles.org/help/stylish_firefox
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration

Maybe you are looking for