Remove Text

I'm brand new to Premiere, literally only working with it for 5 hours, and I have a little experience with photoshop 6.0, so you'll have explain things to me like I'm a baby... :p
What I need to do is to remove some text from an existing video.
http://www.youtube.com/watch?v=Sik81_c7M7o&feature=related
It's not that exact video, but close enough. I need to get rid of the "Star Trek" text and all the stars of the show.
I have no idea where to start. Any input would be appreciated.
Thanks,
Wes

Wes, forget trying to remove the text from over the top of the starfield vision, that's just a long road to nowhere. all you'll really need to do is CUT the bits that have the credits on them.
I'm not sure of your goal really, but if you're wanting to replace the credits with other names (say for a novelty video or whatever) I'd make/get my own starfield (a windows screensaver springs to mind) and put your new credits over the top.
I don't know where you're showing this, but do keep in mind that sequence is (like the rest of the show) subject to copyright.
MP

Similar Messages

  • How do I add and remove text in a text field with a checkbox?

    How do I add and/or remove text in a text field with a checkbox?
    this is my script in the text box......
    event.value="Hello, this is my narrative. \r\n\nFamily: \r\n\n" + this get.Field("FirstName").value + " " + this.getField("LastName").value + was born on"=this.getField("DOB.value + "\r\n\n + this.getField("drpField").value + "\r\n\n" + this getField("Father").value
    The text box looks like this...
    Hello, this is my narrative.
    FAMILY:
    John Smith was born on 08/02/2000
    Boby Lou
    Jack Smith
    I need to add/or remove the father field (Jack Smith) & r/n/n with a check box.
    Does anyone know how to do this?

    There are multiple errors in your code...
    Use this code instead (adjust the name of the check-box):
    var msg = "Hello, this is my narrative. \r\n\nFamily: \r\n\n" + this get.Field("FirstName").value + " " + this.getField("LastName").value + was born on" + this.getField("DOB.value) + "\r\n\n" + this.getField("drpField").value;
    if (this.getField("FatherCheckBox").value!="Off")
         msg += "\r\n\n" + this getField("Father").value;
    event.value = msg;

  • Dynamically create and remove TEXT items in forms

    Hi Guys,
    Is there a way to dynamically create and remove TEXT items in form. For example I have the EMP and DEPT table and when
    I select the EMP table name from the LOV, rows of the EMP table with column name and data should get displayed on the screen and likewise a similar action for DEPT table and
    so on. I have about 90 tables from where data could be required to view and edit. They all have varying number of columns.
    Any suggestions ?
    Thanks
    KMD
    null

    Use OLE concept of developer and map Excel as an object
    Nadeem
    null

  • Remove text field from Array via for loop

    Hi,
    i have a problem to remove text fields added via for loop.
    That im doing is, via for loop im dynamically creating menu with 10 buttons.
    Each button contain, dynamically created, background (shape) and text field.
    And everything is fine.
    But when im try to remove text fields then i got this error:
    - Im using button to remove text fields - lang_btn.addEventListener(MouseEvent.CLICK, clickHandler);
    ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
              at flash.display::DisplayObjectContainer/removeChild()
              at Loading_Img_fla::MainTimeline/xmlLoaded()
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at flash.net::URLLoader/onComplete()
    In the script bellow marked with red is what should remove text fields from an Array, instead giving me error.
    Here is my script
    // Create for loop
    for (var i:int = 0; i < 10; i++)
              for each (xml in listItems)
                        if (i == xml.attribute("Id"))
                                  // Add MovieClip to stage to hold the data
                                  addChild(lmHolder);
                                  lmHolder.x = 0;
                                  lmHolder.y = 0;
                                  // Create new MovieClip to hold buttons
                                  lmButtonsMCArray[i] = new MovieClip();
                                  lmButtonsMCArray[i].buttonMode = true;
                                  lmButtonsMCArray[i].mouseChildren = false;
                                  lmButtonsMCArray[i].x = 20;
                                  lmButtonsMCArray[i].y = 20 + btCount * buttonSpace;
                                  // Add each button MovieClip to lmHolder MovieClip
                                  lmHolder.addChild(lmButtonsMCArray[i]);
                                  // Create Background to buttons
                                  lmButtonsArray[i] = new Shape();
                                  lmButtonsArray[i].graphics.beginFill(lmBgColor0, 1);
                                  lmButtonsArray[i].graphics.drawRect(0, 0, 230, 85);
                                  lmButtonsArray[i].x = 0;
                                  lmButtonsArray[i].y = 0;
                                  // <<-- Add Background shape to the buttons MovieClips
                                  lmButtonsMCArray[i].addChild(lmButtonsArray[i]);
                                  // Create a new array to preserve data from XML List
                                  lmNameArrayEG = new Array();
                                  lmNameArrayUS = new Array();
                                  // Create local variable to hold
                                  var lmTxtFieldContentUS:String;
                                  var lmTxtFieldContentEG:String;
                                  var lmTxtContent:String;
                                  // If clicked button is EG then make array with Arabic text
                                  // If clicked button is US then make array with English text
                                  if (footer.lang_btn.langState == "EG")
                                            for each (var leftMenuName:XML in egLanguageList)
                                                      lmNameArrayEG.push(leftMenuName);
                                            lmTxtFieldContentEG = lmNameArrayEG[i];
                                            lmTxtContent = lmTxtFieldContentEG;
                                  else
                                            for each (var leftMenuNameUS:XML in usLanguageList)
                                                      lmNameArrayUS.push(leftMenuNameUS);
                                            lmTxtFieldContentUS = lmNameArrayUS[i];
                                            lmTxtContent = lmTxtFieldContentUS;
                                  // Setup new text field each time script is executed
                                  lmTxtFieldsArray[i] = new TextField();
                                  lmTxtFieldsArray[i].width = 110;
                                  lmTxtFieldsArray[i].border = false;
                                  lmTxtFieldsArray[i].wordWrap = true;
                                  lmTxtFieldsArray[i].multiline = true;
                                  lmTxtFieldsArray[i].selectable = false;
                                  lmTxtFieldsArray[i].embedFonts = true;
                                  lmTxtFieldsArray[i].antiAliasType = AntiAliasType.ADVANCED;
                                  lmTxtFieldsArray[i].autoSize = TextFieldAutoSize.CENTER;
                                  lmTxtFieldsArray[i].text = lmTxtContent.toUpperCase();
                                  lmTxtFieldsArray[i].x = 10;
                                  lmTxtFieldsArray[i].name = "lmTxtFieldName" + i;
                                  // <<-- Add Text fields to the Movie Clip
                                  lmButtonsMCArray[i].addChild(lmTxtFieldsArray[i]);
                                  // If clicked button is EG then set Arabic text format, and make array with Arabic text fields
                                  // If clicked button is US then set English text format, and make array with Egnlish text fields
                                  if (footer.lang_btn.langState == "EG")
                                            lmTxtFieldsArray[i].setTextFormat(txtFormat_lm_eg);
                                            // Make array from text fields;
                                            pushEgTFintoArray.push(lmTxtFieldsArray[i]);
                                  else
                                            lmTxtFieldsArray[i].setTextFormat(txtFormat_lm_us);
                                            // Make array from text fields;
                                            pushUsTFintoArray.push(lmTxtFieldsArray[i]);
                                  // If clicked button is EG then loop thrue the for loop and remove English text fields from array
                                  // If clicked button is EG then loop thrue the for loop and remove Arabic text fields from array
                                  if (footer.lang_btn.langState == "EG")
                                            for (var rNr_us:Number = 0; rNr_us < pushUsTFintoArray.length; rNr_us++)
                                                      //remove the text field array from the display
                                       removeChild(pushUsTFintoArray[rNr_us]);
                                            //clear the array
                                            pushUsTFintoArray = [];
                                  else
                                            for (var rNr_eg:Number = 0; rNr_eg < pushEgTFintoArray.length; rNr_eg++)
                                                      //remove the text field array from the display
                                       removeChild(pushEgTFintoArray[rNr_eg]);
                                            //clear the array
                                            pushEgTFintoArray = [];
              btCount++;

    it looks like those tf's are children of  lmButtonsMCArray[i], not the current scope.  use:
    if (footer.lang_btn.langState == "EG")
                                            for (var rNr_us:Number = 0; rNr_us < pushUsTFintoArray.length; rNr_us++)
                                                      //remove the text field array from the display
                                        lmButtonsMCArray[rNr_us].removeChild(pushUsTFintoArray[rNr_us]);
                                            //clear the array
                                            pushUsTFintoArray = [];
                                  else
                                            for (var rNr_eg:Number = 0; rNr_eg < pushEgTFintoArray.length; rNr_eg++)
                                                      //remove the text field array from the display
                                        lmButtonsMCArray[rNr_eg].removeChild(pushEgTFintoArray[rNr_eg]);
                                            //clear the array
                                            pushEgTFintoArray = [];

  • Help with removing text from background

    Hi,
    I'm pretty new to this, but I'm trying to figure out how to remove text from a background.  My problem is that when I use tools to grab the text, it only selects part of it because the pixels of the text are actually different colors as it blends in with the backgorund.  Does anyone have a quick idea how to do this?
    Thanks
    <link removed>

    Don't you like to see people's websites/projects/works in forums?  Seems to me that you get to know people and what they are into when they post their work.  Anyways in the spirit of you helping me, here is the picture.
    I'm trying to remove the letters from the background.  Everything about the letters including the shadows.
    Thanks

  • How to remove text from photo only one layer?

    How do I remove text from this photo? plz & ty
    o I remove text from a photo?

    Contact the person who took the photo and ask for a clean copy.
    If you don't know the photographer, chances are good that your use of the photo would be a violation of copyright.

  • How to remove text from .swf animation?

    how to remove text from .swf animation? Can no find this text
    in fla file. Flash 8.

    exactly what 'text' are you referring to? text that you typed
    on the Stage using the 'textTool'? simply select the text with the
    'arrowTool' and hit delete.
    If you are referring to a textField that you want to
    eliminate after a certain amount of time, within your animation
    sequence. first copy the text, create a new layer, paste the text
    in place, then where you want to have the text 'disappear' insert a
    'blank keyframe' at that point in the text layer.
    OR place the textfield within a MC and remove it with code.
    OR if the text is dynamic and you wish to use the position at a
    later time, pass a value of null or and empty string to the field
    at the point you wish. And there are other ways still. :) hope one
    of these works for you.

  • [svn] 4694: Don't remove text lines from the container if it isn' t the container the lines were added to.

    Revision: 4694
    Author: [email protected]
    Date: 2009-01-27 14:35:21 -0800 (Tue, 27 Jan 2009)
    Log Message:
    Don't remove text lines from the container if it isn't the container the lines were added to. When there is a state change the displayObject can be switched out from under the TextGraphic and TextBox.
    QE Notes: need to add tests - will attach my test program to bug
    Doc Notes:
    Bugs: SDK-18923
    Reviewers: Gordon
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18923
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/graphicsClasses/TextBlockCompose r.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/graphicsClasses/TextFlowComposer .as

    Yup, you guys pointed me in the right direction.
    I changed my adjustmentListener to the following:
    JScrollBar scrollBar = (JScrollBar) e.getSource();
    int endLoc = document.getLength();
    try {
        Rectangle end = outputArea.modelToView(endLoc);
        if (end != null) {
            int n = scrollBar.getValue() + scrollBar.getVisibleAmount();
            boolean locked = (end.y >= n && n <= (end.y + end.height));
    } catch (BadLocationException ex) {
    }By comparing scrollbar position with the visible rectangle of the end of the document, I can now easily tell if the user has moved the tracker back or not.
    To go to the next step of automatically pausing scrolling whenever the user is moving the slider back, I also had to disable the automatic scrolling performed by DefaultCaret. Because there was no way to tell if the user was scrolling or if the output was adjusting from the adjustmentListener, I also had to flag whenever I was autoscrolling.
    The end result is a JTextPane that can be appended to at all, and locked by the user by using the slider. If new data arrives, the window is not scrolled, and any text selection the user has is not cleared. Perfect!

  • How do I remove text highlight box in the Notes panel in Presenter 8?

    How do I remove text highlight box in the Notes panel in Presenter 8?  It moves at a different speed than the voice and is distracting.  Better not to have it at all.

    Hi,
    To disable higlighting text in notes pane is not possible in presenter 8.
    However it is possible to disable in presenter 9. 
    Thanks
    Sunil
    Adobe Presenter Engg Team

  • Removing text in RH that is conditionalized using attributes in FM

    I use TCS 1 (FM8 (structured) + RH7).
    Does anyone know how to remove text in RH that was conditionalized in FM using attributes?
    The filter works perfect in FM - text is removed, but it is still present when the FM files are imported into RH.

    Hi there
    Sorry for the delay in replying. I've been trying to make this work and it just doesn't want to!
    So here is a thought. You are able to make the border surrounding and highlighting the image show and hide on the mouse click. I'm doing that using a Positioned Text Box. My thought here is that you could use these to layer in images that also have the descriptive text as part of the image or maybe even inside the Positioned Text Box. I'm thinking that would work.
    Please note that the DHTML Hide/Show functionality is far from being remotely close to "cross browser". It works in IE, but not in Firefox. At least on my own PC here.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Help! Trying to remove text from an already saved image

    I accidently saved an image with my watermark & now the image is locked & also saved as a jpeg image.  I can't remove the text without stamping it out or just starting over.  Does anyone know how to remove text from an image that has already been saved?

    You could have saved it before closing the image. As long as the image is open in Editor, we can always go back to the original position and get back the original file.
    In case you have closed, check if you have saved it as a version set. If your file name contains "edited-1" something, you have the file preserved.
    Otherwise, if you have replaced the file without having any copy of it anywhere else, you cannot revert the changes.

  • Remove text "This is the instruction text that applies to the entire page.

    Hi,
    How to remove text "This is the instruction text that applies to the entire page." under header, this text is defaulted and display under header (above search panel)
    Please help..

    Click on Personalize Page
    In personalization structure Choose complete view and identify the item you would like to hide and click on personalize for that item
    set the rendered property to false
    regards
    Ravi

  • DocumentListener #removeUpdate -- Retrieving the removed text

    Hi,
    I have a DocumentListener registered on a Document. I not only want to know when text is removed, but I want to know what text was removed. It appears to me that the document structure is updated before the listeners are notified (even though sticky positions aren't ...?), meaning the offset/length methods will not work for my needs.
    Is this correct? If so, how would one retrieve the removed text?
    I don't want to override #insertString(int, String, AttributeSet) nor #remove(int, int) because these apparently aren't called when UndoableEvents from the document are undone/redone. It's been my experience that only DocumentListener methods are called universally (that is, for undo/redo and normal user operations).
    Passing the line associated with the offset into DocumentEvent#getChange(Element) gives null. Aside, even if it did return something, what concrete implementation of Element represents a character in the document? Or, what is the lowest level of the hierarchy -- line or character?
    Thanks in advance,
    Brien

    Thanks for the references.
    As for casting the event to a CompoundEdit, it is definitely doable, but how would I use the CompundEdit? It's unfortunate that many classes in the java.swing.text package aren't designed to be flexible for different uses. It seems the two members that would be useful, #lastEdit and #edits, are protected.
    Even if I could get the UndoableEdit, like GapContent.RemoveUndo, how would I get to the internal String representing the removed text?
    I could really use the details on this.
    I see two options if I want to pursue this further --
    1. Use reflection to access the protected fields (super bad).
    2. To get what I want, I could, in the removeUpdate method, temporarily undo the event, check the document, then redo the event. This seems very sloppy, wasteful, and the implementation would have to be very careful with the infinite mutual recursion.
    As it stands, I likely won't pursue it. It's not very critical, but it's very disappointing.

  • Need help removing text that is covering the document - Adobe Acrobat Standard X

    I am trying to remove "preview only" that is splashed across our document diagonally.  I can remove this on my computer which has Adobe Acrobat XI standard with content editing --> edit text and images  (a cursor pops up and i can just use the delete button), but not on another computer with Adobe Acrobat X standard.  The only thing we could do was add a red line over the "preview only" and delete that red line. 
    I did try to do my research, but all of the search ideas I was using didn't prove fruitful.
    Any help or ideas you could provider, I would certainly appreciate.
    Thank you in advance.

    Hey courtney evans,
    Please let me know how have you sent the PDF file on other computer.
    Also, are you viewing the file in a browser or downloading it and then opening in Acrobat.
    Is the document scanned?
    Please specify and let me know.
    Regards,
    Anubha

  • How can I remove text from an image

    I was trying to use the magic wand and then inverting but it is not removing the text.
    I tried the clone stamp but it's on a tile background so very hard to make it look good. I just want to redo the text because it was written by someone that does not speak English/American.
    Thanks in advance for your help

    Basically, the Vanishing Point filter allows you to identify the perspective in part of an image, then clone from other parts that are at a different distance; it takes care of the scaling.  It's pretty slick, though I've always thought it would be better integrated directly into Photoshop rather than being in a plug-in type format.
    The other day I used it on a photo of a series of statues of archers.  The one on the end was missing part of her bow...
    -Noel

  • How to remove text

    I have added a piece of text to a movie I am making. How do I remove it?

    99
    I am strictly an Elements Windows user, but I think that we can meet on common ground between Windows and Mac on this.
    From your description, it sounds like all the work was done in the Quick workspace. The screenshots to follow reflect that. If not the case, then more details, and I will adjust the details accordingly.
    After you have created your text "circle" file, be sure to close the Titler.
    The right click the text "circle" file in the Filmstrip spot, and select Delete and Close Gap.
    Please let us know if that worked for you.
    Also, speaking of circles in the Titler
    ATR Premiere Elements Troubleshooting: PE11: Titler Shapes For Highlighting
    ATR

Maybe you are looking for

  • Script to Delete more than 1 user from the database

    Hi All, I have a list of users in a file and i want to write a script to delete all these users from my database. I have tried deleting users using: drop user user1,user2,user3..... but it doesn't seem to work. Can anyone suggest how do i read the us

  • Why does my I Pad air go back to apps page

    When I am using the safari portion or sometimes typing an email, all of a sudden it goes back to the apps page,right out of the blue..I am not hitting anything on the sides, it just does this and it is happening more frequently.. Help!

  • 1099 Report doesn't include Down Payments

    Hi, While running 1099 report we figured out that it is not including down payments made to the vendor.  Can anybody please tell me if there is a configuration required for this?  We are on v4.7. Thanks.

  • RME 4.3.1 not showing devices in the device select menu

    Windows Server 2008 Standard LMS 3.2 with RME 4.3.1 When I try to select devices to check/compare device configurations in the RME Archive Mgmt menu (RME -> Archive Mgmt -> Compare Configs) no device shows up for me to select. I know the configuratio

  • Firefox completely unresponsive - cannot Quit, use Safe Mode, Reinstall OR Uninstall

    I installed Firefox less than a month ago. Two days ago it suddenly quit while browsing. This didn't seem like a problem, really - I thought I'd just restart it - but it REMAINS open. The icon shows in my dock (on Mac) and the menu bar appears when I