Can I make the timeline move around the playhead in FCP

I'd like not to have to chase the playhead around in FCP.  Is there a way to make it remain static in the timeline and have the clips move past it?

No. Use feedback to add a feature request.

Similar Messages

  • How can I make unfinished tasks move to the next day in Reminders (as they did prior to Yosemite)?

    With Yosemite's updates, Reminders doesn't wrap unfinished tasks to the next day. Previously, if I didn't check off a task on one day, it wrapped to the next day. Now, they just stay on the original day, causing me to not see that I haven't finished something! If I look at them in Scheduled view, unfinished tasks list under today (this is the view like that of iPad and iPhone Reminders). When looking at tasks in the one-day-at-a-time view, unfinished tasks from previous days disappear. How do I make them appear without having to change all the dates each day? This is an "update" that creates a problem rather than fixes one.

    See: http://windows.microsoft.com/en-US/windows-vista/Taskbar-recommended-links

  • How can i make my header move with the page so it always shows

    I reseached the muse guides online but i could not find the answer. Maybe I missed it, butim tired of looking for it.

    maybe try pinning it?

  • I need to play a song on a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through the whole presentation ? Thanks.

    I need to play a song in a row in a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through out the presentation ?
    Thanks.

    Drag the file into the audio window in the Document inspector...

  • Can you make a new category in the movie library?

    Can you make a new category in the movies library?  I put my home movies  into the "Home Videos" category.  I put movies into the "Movies" category.  I would like to make a new one.  "Work Videos" .  Is this possible?

    You Cannot make a new Movie Media Kind, they are set by apple to be Movie and Home Video. However under Genre you could create a new Genre and call it whatever you want by typing in the Genre Box in the Get Info , Info page. This will then be available for future selections.
    I am sure there are other ways to achieve what you want with different naming convention - it is up to you but you cannot add another Media Kind like Home Video

  • Can i move around the apps to my liking?

    Can I move around the apps to my liking?

    Yes you can. press and hold on any app you want, and it should start shaking/jiggling etc... you can then freely move any app around to your liking
    Good luck!

  • When i burn videos to a dvd-r disc it works on my macbook but not on a windows/pc or my dvd player. How can i make it work on all the above and not just a mac product?

    when i burn videos to a dvd-r disc it works on my macbook but not on a windows/pc or my dvd player. How can i make it work on all the above and not just a mac product?

    Unfortunately, the recording & movie industry does not respect the rights of the people who make them money, and thus you can only use the paid-for content in ways they see fit. Even if I lived in a bunker where no one else could possibly see the movie I paid for, therefor I'm not 'sharing it illegally', I would still not be allowed in a blue moon to copy that movie to DVD for TV viewing. Someone will tell you to get an AppleTV. How about Apple give us one for free? Until this changes, people wanting to use their content in multiple locations will continue to download music & movies via torrents, legally or illegally.

  • Have just upgraded to Lion.  In all applications a box now appears that encloses topics, etc on the screen.  It is a problem as it also randomly moves around the screen.  Have no idea what the purpose is and want to get rid of it. Scroll does not work.

    Just upgraded to Lion. Scroll does not respond. Have tried altering preferences. Will not fix. In all applications, including this page, a box appears and seems to randomly move around the screen, resting wherever I begin to work. How can I turn this off and get scroll to work normally?

    Have a look at System Preferences, Accessibility, VoiceOver.
    (Command - F5).
    charlie

  • TS4293 How can I make iMovie to show me the AVCHD files importet by iPhoto?

    My iMovie 11 shows the videos from my iPhone importet by iPhoto, but not all the videos importet the same way from my camera. It works fine with the videos recorded in MP4 but not at all with the AVCHD. How can I make iMovie to show me the AVCHD files? iPhoto imports and shows the AVCHD fine. Also I could import the AVCHD files with iMovie but then they would be twice on my computer and use a  lot of space.
    thanks for your help

    Right now, iMovie won't edit AVCHD wrapped files. You have a few options:
    1. Import the videos with iMovie. Afterwards, you may add the imported movies to iPhoto if you want.
    2. Import the videos with another app. (Too numerous to mention.)
    3. Convert the videos with a third-party tool.
    4. Wait for a future version of iMovie that adds this capability.

  • I need hand tool to move around the page in small PC screen like in adobe pdf reader

    ''locking as a duplicate - continue here - https://support.mozilla.com/en-US/questions/814830''
    In Adobe® Reader® is the tool for opening and using Adobe PDFs that are created in Adobe Acrobat®. I have very useful tool to move on the page on the screen it's called "Hand tool" .
    The tool can allow you to move around the big page by the mouse.
    the tool god for zoom in and walk around the page in small screen.
    I look also on adds on and I did not find one .
    thanks
    Daniel

    I think the [https://addons.mozilla.org/af/firefox/addon/grab-and-drag/ Grab and Drag] extension is much closer to what's being requested.

  • How to make 2 balls move at the same time

    I am working on an app in xcode and I need to make 2 balls move at the same time. When I try to use the same code for both of the balls, the 2 CGPoints interfere. Here is my code in the .m file.
    @synthesize ball, ball2;
    -(void) onTimer {
            ball.center = CGPointMake(ball.center.x+pos.x,ball.center.y+pos.y);
            if(ball.center.x > 295 || ball.center.x < 10)
                pos.x = -pos.x;
            if(ball.center.y > 435 || ball.center.y < 35)
                pos.y = -pos.y;
    - (void) onTimer2 {
    ball2.center = CGPointMake(ball2.center.x+pos.x,ball2.center.y+pos.y);
    if(ball2.center.x > 295 || ball2.center.x < 10)
    pos.x = -pos.x;
    if(ball2.center.y > 435 || ball2.center.y < 35)
    pos.y = -pos.y;
    [self collision];
    - (void)viewDidLoad
              [[NSTimer scheduledTimerWithTimeInterval:0.04 target:self selector:@selector(onTimer) userInfo:nil repeats:YES] retain];
        [[NSTimer scheduledTimerWithTimeInterval:0.04 target:self selector:@selector(onTimer2) userInfo:nil repeats:YES] retain];
        [super viewDidLoad];
        // Do any additional setup after loading the view from its nib.
    Here is my .h file
    @interface game : UIViewController {
        IBOutlet UIImageView *ball;
        IBOutlet UIImageView *ball2;
    @property(nonatomic,retain) IBOutlet UIImageView *ball;
    @property(nonatomic,retain) IBOutlet UIImageView *ball2;

    What do you mean by the 2 CGPoints interfere?
    You're changing the location of the balls by pos.x and pos.y, where is the code for those? what is it doing?
    Why have two timers?  One timer would work , just have the code move both balls.
    The refresh rate for the screen is 60hz. (60 time a second) You'll get better animation if you stick as close to this value as you can.

  • PS CS5 Extended on Windows -  When trying to use the clone stamp and/or healing brush as soon as I move the cursor over the image I get an exact copy of the existing layer that moves around the window with the movement of the clone stamp/healing brush.  W

    PS CS5 Extended on Windows
    When trying to use the clone stamp and/or healing brush as soon as I move the cursor from the toolbar over to the image I get an exact copy of the existing layer that moves around the window with the movement of the clone stamp/healing brush.  This just started tonight.  What's causing this weird behaviour?

    What are the settings in Window > Clone Source?

  • How can I watch a Disney movie from the Disney website I have purchased movie cd and I can go to the website on by gateway computer but can't get it to play on my iPad it wants me to download flash but apple doesn't support flash or I can down loadQuickTi

    How can I watch a Disney movie from the Disney website I have purchased movie cd and I can go to the website on by gateway computer but can't get it to play on my iPad it wants me to download flash but apple doesn't support flash or I can down loadQuickTime but don't know how. Says to email website did that but takes me back to same place to email help

    Contact iTunes Customer Support, but honestly, there are no returns for iTunes purchases.

  • Is there a way to view earlier messages in a thread without going through each day? Also, can you make a photo album from the same text thread without going back to the beginning?

    Is there a way to view earlier messages in a thread without going through each day? Also, can you make a photo album from the same text thread without going back to the beginning?

    Turn Settings > General > Accessibility > Zoom to ON.

  • How can you make your persona show on the top and bottom? Also can you make it bigger at the top to show more of the picture?

    How can you make your persona show on the top and bottom?
    Also can you make it bigger at the top to show more of the picture?

    Add extra empty toolbars if you want to see more of the persona.<br />
    You can create extra toolbars to get extra space via View > Toolbars > Customize<br />
    You have to put something on a toolbar (drag a Space item onto it) before closing the Customize window because empty toolbars are automatically removed.<br />
    See http://kb.mozillazine.org/Toolbar_customization

Maybe you are looking for

  • Questions on Analyzer Upgrade and Moving Analyzer Reports from Development to Production

    Hi,We run Analyzer 5.0.3. We are planning to go to Analyzer 7.2. Did any body go thru this upgrade? If so, what is your opinion and tips that may help. Also, we never had Analyzer development environment. We are planning on having Analyzer developmen

  • JAVA 1.6.0_22 UPDATE CREATED NEW ERRORS IN DISK UTILITY.CORRECTED POST

    THIS IS A CORRECTED VERSION OF MY ORIGINAL POST AS IT MIGHT HAVE HAVE BEEN UNCLEAR. Permissions Verify and Repair Messages after Updating Java SE 6 to 1.6.0_22 Posted: Oct 21, 2010 3:49 PM THIS IS A CORRECTED VERSION OF A POST THAT I ALREADY MADE. AS

  • Business Objects on Unix

    Hello, We are running BO XI3.2 on Windows at the moment. I would like to get some feedback on some of your experiences, issues in running a BOE instance on Unix. Are there any stability issues on Unix. Every application (SAP and non-SAP) we have runs

  • How to edit Printer Connections in GPO created through Print Management's "Deploy with Group Policy"

    Hi there, I have used the right-click "Deploy with Group Policy" in Print Management on Windows Server 2012 to deploy a printer connection to a GPO.    When you look at the GPO Settings, the Printer Connection is visible under User Configuration -> P

  • Optimization of sql query..

    i need an alternate to this query I made an vacation calendar application with a home page showing an SQL calendar with the date field being Vacation_start_date + level-1 and the column link with First_name using this query: select unique vacation_st