How delete a cut point in fcpx if it was done earlier in project?

Hi,
I'm learning FCPX, but I can't find out how to simply eliminate/delete a cut/an edit point that I made earlier.
I know how to delete a cut point when it is simply my previous edit, but when I'm many edits down the line and want to go back and eliminate an earlier cut, how to do it?
In Final Cut 7, it was an easy right click to a submenu.  Thanks, Duncan

Jim, Tom and Ian, Thanks for your replies. I think I miscommunicated what I'm after. In Final Cut Pro 7, one could go back to an earlier cut mark that had been inserted, but no actual cut between clips had been made.
Then one could just right click to get a list which had the option to "Join Through Edits", and eliminate that cut mark as if it never existed. This was helpful to me, as I often used it to mark potential edits as I went along. I started marking potential cuts that way in FCP X, but then couldn't find a way to erase them.
I apologize for not being clear. Jim, I will have to try your suggestion.You're right that functionally you can get to the same end. I just liked the quick ability that was there in FCP 7.
Thank you all.
Duncan

Similar Messages

  • HT201250 Hi, I had updated folder on my hard drive wich was wrongly replaced with a folder from my external drive. I m not using time machine. How can i recover that updated folder? (it was done on 3-5-12)

    Hi, I had updated folder on my hard drive wich was wrongly replaced with a folder from my external drive. I m not using time machine. How can i recover that updated folder? (it was done on 3-5-12)

    If the folder was replaced, it was written over.
    Nothing short of forensic data recovery (probably involving taking the drive apart to scan the discs seperately) is going to recover anything (if indeed even that will).

  • Win32 - how delete some Region points?

    i have 1 Region:
    HRGN hRgn = CreateRectRgn(0,0,wBmpWidth,wBmpHeight);
    heres how i remove some points:
    if (pixelcolor==backcolor)
    SetWindowText(ActivatedForm,"match");
    // remove transparent color from region
    hTmpRgn = CreateRectRgn(x,y,x+1,y+1);
    CombineRgn(hRgn, hRgn, hTmpRgn, RGN_XOR);
    DeleteObject(hTmpRgn);
    i belive that the CombineRgn() isn't right, because the points aren't removed :(
    what can advice me?

    finally it's working:
    BYTE* Get24BitPixels(HBITMAP pBitmap, WORD *pwWidth, WORD *pwHeight)
    // a bitmap object just to get bitmap width and height
    BITMAP bmpBmp;
    // pointer to original bitmap info
    LPBITMAPINFO pbmiInfo;
    // bitmap info will hold the new 24bit bitmap info
    BITMAPINFO bmiInfo;
    // width and height of the bitmap
    WORD wBmpWidth, wBmpHeight;
    // get some info from the bitmap
    GetObject(pBitmap, sizeof(bmpBmp),&bmpBmp);
    pbmiInfo = (LPBITMAPINFO)&bmpBmp;
    // get width and height
    wBmpWidth = (WORD)pbmiInfo->bmiHeader.biWidth;
    wBmpWidth -= (wBmpWidth%4); // width is 4 byte boundary aligned.
    wBmpHeight = (WORD)pbmiInfo->bmiHeader.biHeight;
    // copy to caller width and height parms
    *pwWidth = wBmpWidth;
    *pwHeight = wBmpHeight;
    // allocate width * height * 24bits pixels
    BYTE *pPixels = new BYTE[wBmpWidth*wBmpHeight*3];
    if (!pPixels) return NULL;
    // get user desktop device context to get pixels from
    HDC hDC = GetWindowDC(NULL);
    // fill desired structure
    bmiInfo.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
    bmiInfo.bmiHeader.biWidth = wBmpWidth;
    bmiInfo.bmiHeader.biHeight = -wBmpHeight;
    bmiInfo.bmiHeader.biPlanes = 1;
    bmiInfo.bmiHeader.biBitCount = 24;
    bmiInfo.bmiHeader.biCompression = BI_RGB;
    bmiInfo.bmiHeader.biSizeImage = wBmpWidth*wBmpHeight*3;
    bmiInfo.bmiHeader.biXPelsPerMeter = 0;
    bmiInfo.bmiHeader.biYPelsPerMeter = 0;
    bmiInfo.bmiHeader.biClrUsed = 0;
    bmiInfo.bmiHeader.biClrImportant = 0;
    // get pixels from the original bitmap converted to 24bits
    int iRes = GetDIBits(hDC,pBitmap,0,wBmpHeight,(LPVOID)pPixels,&bmiInfo,DIB_RGB_COLORS);
    // release the device context
    ReleaseDC(NULL,hDC);
    // if failed, cancel the operation.
    if (!iRes)
    delete pPixels;
    return NULL;
    // return the pixel array
    return pPixels;
    HRGN ScanRegion(HBITMAP pBitmap,COLORREF clrTransparent )
    BYTE jTranspR = GetRValue(clrTransparent), jTranspG=GetGValue(clrTransparent), jTranspB=GetBValue(clrTransparent);
    // bitmap width and height
    WORD wBmpWidth,wBmpHeight;
    // the final region and a temporary region
    HRGN hRgn, hTmpRgn;
    // 24bit pixels from the bitmap
    BYTE *pPixels = Get24BitPixels(pBitmap, &wBmpWidth, &wBmpHeight);
    if (!pPixels) return NULL;
    // create our working region
    hRgn = CreateRectRgn(0,0,wBmpWidth,wBmpHeight);
    if (!hRgn) { delete pPixels; return NULL; }
    // scan the bitmap
    DWORD p=0;
    for (WORD y=0; y<wBmpHeight; y++)
    for (WORD x=0; x<wBmpWidth; x++)
    BYTE jRed = pPixels[p+2];
    BYTE jGreen = pPixels[p+1];
    BYTE jBlue = pPixels[p+0];
    if ((jRed == jTranspR && jGreen == jTranspG && jBlue == jTranspB))
    // remove transparent color from region
    hTmpRgn = CreateRectRgn(x,y,x+1,y+1);
    CombineRgn(hRgn, hRgn, hTmpRgn, RGN_XOR);
    DeleteObject(hTmpRgn);
    // next pixel
    p+=3;
    // release pixels
    delete pPixels;
    // return the region
    return hRgn;
    if(inst->blnTransparent==true)
    TransparentBlt(test.hdc,0,0,imglabel.width(),imglabel.height(),imglabel,0,0, imglabel.width(),imglabel.height(), inst->clrBackColor);
    inst->LabelRegion=ScanRegion(imglabel, inst->clrBackColor);
    SetWindowRgn(inst->hwnd,inst->LabelRegion,TRUE);
    else
    SetWindowRgn(inst->hwnd,NULL,TRUE);
    BitBlt(test.hdc,0,0,imglabel.width(),imglabel.height(),imglabel,0,0,SRCCOPY);
    inst is the subclass pointer;
    imglabel is the image class object.
    maybe you can't see the diference... sorry. but works fine now.
    thanks for all

  • I upgraded to the mew iMovie (purple star) vers 10.6 from the old I movie (yellow star) in the old one when i was done with my project i could finalize it and share it to idvd to burn a dvd, i don't see how to do that in the new iMovie.  is there a w

    i upgraded from the old imoive(yellow star) to the new iMovie(purple star) , in the old iMovie when i was done i was able to share my project to idvd, i don't see how to do this on the new iMovie. Does anyone know how to burn a dvd with your project from the new iMovie(purple star)?  if can't be done can i export my project to the old iMovie and burn to idvd like i used to?

    i did what you said and saved the file to my desktop, but how do i get it in idvd now, when i open idvd and point to the file on the desktop either by open existing project or trying to open a new project the file is greyed out and i can't select it

  • How to I find out if rman backup that was done is Rman Cold backup or Rman

    Hi,please help me I have backup set ,that is backupset that have rman data backup and autobackup that have control file,I want to restore this backup but I don't know how the backup was done .please advice me how to check if this was Rman cold backup or rman hot backup.I have pfile that is extracted from database before backup was taken.

    Hi Thanks for the update,I checked the v$backup_set on the other database ,but it does not tell me whether ithe backup was Rman cold backup in which database was mounted or Rman hot backup ,now I have to do the restore but I don't know what type of backup do I have please assist.
    Edited by: user1022397 on 2010/11/11 4:40 AM

  • HT4539 how to watch a movie on apple tv that was downloaded earlier

    I downloaded a movie, paid for it, clicked "watch later" as opposed to right now.When I went to watch it, it told me to go to settings>downloads. There was no such link that I could find on my apple TV

    yopeeeeeeeeeeeee i just find it gays its so easy i had the same problem since 3 days and i just reset the internet router and everthing is working right now i try everything nothing work with me but when i reset the router everthing is perfect now hope it will work with all of you

  • Nokia X2, how delete the applications as facebook ...

    How delete the applications as facebook and flicker? I don´t need this. It was in phone by default. How can I uninstall or delete it? I cannot find nothing about it in phone menu and nothing if I click right button on application(it works for application which I install...). I don´t see it in phone memory from PC too...

    Good afternoon.
    My mobil is Noxia x2 -05
    i have been rongly downloading the following application "nokiaXpress",and now is create a conflict on my mobil.
    i cant even acess the internet,whatcan ido?Please i need a help.
    Machava

  • How do I reveal the cut points when editing Adobe Connect recording?

    Since the roll-out of AC 9.1, when I edit the timeline of a recording I see the timeline of the position of my cursor ON TOP OF the timeline point of the cut points, therefore I can't see where I'm about to cut a recoring. How to see the cut points when editing the timeline?
    Thanks,
    --Kevin

    Hi Kevin,
    There is a know bug for the black marker overlapping the time-line with a black marker.
    But we have a trick to help you do your editing effectively. Follow the steps mentioned below and you will be able to edit your recording with precision:
    1. Pause the recording from where you want to start your editing.
    2. Double Click on the LEFT marker. It will take both the markers to that point on the recording timeline.
    3. Play the recording and pause the recording again at the point till where you want to edit the recording.
    4. Double Click on the RIGHT marker. It will take the right marker to the end point of your to-be-recording.
    5. Cut and Save.
    Do let us know if this helps!
    Thanks
    Sameer Puri

  • How to delete wifi access point on E7 - mails won'...

    I have E7 with symbian anna. A while ago I had to restart my home wifi (due to storm) and during that process a new wifi access point (wlan(01) was created on my phone. After that - as far as I have now understood - my phone stopped syncronising gmails altogether. Also in my provider's network (outside wifi, elisa). In order for my phone to sync emails, i need to reboot it (or just turn it off and on, no need to get the three vibrations when turning off).
    Question 1) How do I delete this unncecssary wifi access point on E7? I was able to do it easily on my N900 but not on this E7.
    Question 2) Is it likely that the reason my phone stopped syncin gmails is related to this wifi issue? Pressing send & receive won't help, either, nothing happens. I have had this E7 for 1.5 months now, Symbian Anna I've had for 10 days and this problem started 5 days ago. Before that the mails flew in very nicely.

    To remove access poit, go to settings>connectivity>settings>Destination>Internet>long hold access point and select delete.
    For Gmail, don't use it, but if you remove/delete mailbox and then set it up again it should work fine, also heard that during set up if you reject terms and conditions and set up manually it works better ?
    http://asimag.wordpress.com/2007/06/22/how-to-configure-gmail-account-on-your-n95n73/
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • How delete access point in n8

    i want to delete some access point internet connection

    yeh i deleted all acces points an dstill there are some  but where? why it keeps telling me its in use when is not?
     where is it?  this nokia sis bloody  complicated   horrible !!!
    that  on top is there but where i find those o2mms payandgo and o2 pay ad go  why its not deleted??
    Attachments:
    DSC01433.JPG ‏83 KB

  • How can i cut the audio from 1 file and put it on another?

    I have these2 files of the same movie, 1 is amazing quality but theres no audio. the other is crummy quality but has perfect audio. How can I cut the audio from the good audio version and paste it onto the good video file?
    btw i have quicktime pro is that changes anything

    Open the movie and press "Command J". This will bring up the properties window. Click on the Audio Track or Video Track and the "Extract/Delete" buttons will light up. Click "Delete" and it'll delete the currently selected track, click "Extract" and it will extract the selected track into a new movie. Just use Delete on the correct track and you're halfway there.
    Then, select the movie that is just an Audio Track now, do "Command A" then "Command C" to copy the audio track. Go to the movie that's just a video track, move the insertion point to the beginning of the video then do "Option Command V" to add the Audio Track to the Video Track side by side.

  • How to remove links pointing to the same page?

    I have PDF documents with Links which point to sections referenced (e.g. link of text "Section 2.2" points to the actual page number of "Section 2.2"), but as the links are created from cross-references during rendition from Word to PDF, there are cases that the destination page number and source page number of the links are the same (e.g. links of text "Section 2.2" on page 9 are created with the destination of page 9 which is the actual page number of "Section 2.2"), I want to remove all these links, but I don't know how to get the destination page, I check the API reference and find that "PDLinkAnnotGetAction" may work , but I don't know how to use it, could you check me codes below and advise ? Your help is really appreciated!
    PDPage page;
    ASInt32 i,i2;
    AVDoc avDoc = AVAppGetActiveDoc();
    PDDoc pdDoc = AVDocGetPDDoc (avDoc);
    int pageNum = PDDocGetNumPages(pdDoc);
    for (i = pageNum - 1; i >= 0; i--)
    page = PDDocAcquirePage(pdDoc, i);
    int annotNum = PDPageGetNumAnnots(page);
    for (i2 = annotNum - 1; i2 >= 0; i2--)
      if...
      PDPageRemoveAnnot(i, i2);
    My Product Information:
    Acrobat Pro 8.1.6, Windows

    Start by reading the PDF standard (ISO 32000-1) to understand Actions vs. Destinations.
    Then for each annot, you'll want to see which it has (and in the case of an Action, if it has more than one).  Then you need to parse the action or dest to see what it is and where it goes.  If you don't like it, then you'll delete it.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Tue, 25 Oct 2011 09:25:32 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: How to remove links pointing to the same page?
    How to remove links pointing to the same page?
    created by OALD<http://forums.adobe.com/people/OALD> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/3989576#3989576

  • How can I cut a page out of Preview document?

    I scanned in three pages, but only want pages 1 & 3. How can I cut page 2 out?

    In Preview you can open the toolbar with shift command | (pipe)
    or Preview>View>show tool bar
    here you can show the thumbnails.  Highlite your page and delete.

  • How can I cut a picture to a desired pixel size quickly?

    How can I cut a picture to a desired pixel size quickly? e.g. 600x600 pixel? I know the "cut" tool, but how can I cut it quickly to that exact size without having to cut and cut, is there a tool for cutting to a specific pixel size?
    THANKs

    Your "cheap" version of Photoshop is not Photoshop proper at all, nor was it just cheap.  It was actually a freebie, given away for free with some scanners and certain cameras.  It is as old as the hills, totally obsolete and unsupported.
    We don't normally deal with that here in the Photoshop forum and I doubt many users here will be familiar with Photoshop 5.0 L.E.
    Personally, I only have a faint recollection of having received bundled with my first scanner, and cannot honestly at this point tell you what it supported and what it did not.
    Sorry.

  • Deleting specific data points from a scatter graph

    I cannot seem to figure out how to delete single points in a scatter plot to get rid of the outliers. Someone help me!

    I have never used Numbers.
    Can't you just delete the data on the source?
    The PhD research scientist in me makes me ask you if you are justified in deleting any data points? Even apparent outliers may represent a true data sample. Likewise, how do you know one of the "good" points isn't an aberrant sample that really belongs at an extreme? I would take care of outliers by reanalyzing the sample many times until I averaged it into submission. The only outliers I would outright delete were ones where I could truly question the quality of the analysis based on other data, or it it was truly impossible (e.g., a negative number of apples growing on a tree).
    One thing I would do would be make a scatter plot with one set of data and generate my line through it, then generate a second plot on the same page with the outlier data but not plot a line through it. The line would show the relationship I thought really applied but I was also up front about data I had rejected and still presented it for all to see.
    Message was edited by: Limnos

Maybe you are looking for

  • Can I run these two display resolutions simultaneously?

    My early 2009 Mac Mini (MB463LL/A) is currently driving a 24" Dell display through the Mini DVI port at a resolution of 1920 X 1200. I plan to extend the desktop with a 20" display running at its optimal resolution of 1600 X 1200. I'm a little confus

  • Old computer to new...

    If I back up my ipod music and reformat my ipod from pc to mac, can I import my playlist or do I have to start all over? What about the music purchased from itunes? I am sure I can find all this in some manual, I just have not gotten around to it yet

  • Enabling (native) write support for NTFS

    I used NTFS-3G for writing on NTFS before, but because of this (https://discussions.apple.com/thread/4187322) i had to uninstall it. A while ago i heard something about OSX having native write support for NTFS. Is that even true? And if so, can i (an

  • CS6 Pattern Maker - Swatch backgrounds

    It may be the way I'm using this feature and I've just missed it - it appears to me that you can't have a solid background to your swatch because the way it stacks/overlaps elements means that you will end up cropping some elements on some sides. Try

  • CC membership Upgrade - or is it a downgrade?

    We've upgraded from single app premier month by month subscription to 1yr CC suite, therefore cancelled our auto renewal on our original subscription for we do not need to pay for two products. We have now received an email stating that our CC storag