Transitions - setting start/end points for a Title

Hello,
just started using iMovie & I have 2 clips that I want to super a title over through the edit. Clip one fades to black, while clip 2 fades up from black. I would like to have a title appear as clip 1 is starting its fade, continue while clip 2 is fading up to full picture.
When I attempt this, the title starts where I place the play head at the end of clip 1, but clip 2 does not start until the title ends. The title ends up completely over black (NOT selected)... Is the program capable of this effect?
thanks
Josh
PB G4   Mac OS X (10.4.7)  

Hi Matt,
Glad to hear its a supported function. I have a hard cut between clip 1 & 2. The clips have fades out/in built in already & there is audio as well. I am trying to place the title over the fade out of clip 1 through the fade up in clip 2.
And you say "Over black" is not checked when you add
your title?
YES! over black is unchecked.
I did NOT use Edit>Split Video Clip at Playhead. however, after deleting the no-working effect... I see the clip was split.
Josh

Similar Messages

  • Custom text component with different start and end points for each line

    I'm trying to create a custom component extending textArea in which each individual line in the textArea would have different start and end points.  For example, the start/end points for line 1 might be 20 pixels in the front and 35 pixels at the end but start/end points for line 2 might be 25 pixels in front and 20 pixels at the end, etc.  These boundary values would be passed in.  The width of the entire textArea component would be a fixed size.  The result would be something like this:
         Jack and Jill
              ran up the hill
      to fetch a pail of water
    depending on the boundary values of each individual line of course.  The custom component would take a string and render it in the text component with the appropriate individual line start and end points.  I'm trying to do this by adding the text component to the display with the passed in string and then adding in spaces in the beginning of each line and adding a "/n" at the end of the line wherever appropriate based on the start and end values for that line.
    Just wondering if I'm on the right track and if anyone has any advice on this.

    > Applying the marker places the same icon on all lines of the graph and I need a different one for each
    What do you have selected when you assign the marker? It
    shouldn't apply to all the markers on the whole graph unless you have all the existing markers selected when you apply the new one.
    Assigning marker designs is exactly analogous to assigning bar graph designs.
    If you have a single marker selected when you assign the new design, it will apply to only that graph data point.
    If you use the group select tool (or option-click with the direct select tool) to reclick on an already-selected marker until all the markers for the same line are selected, and then assign a design, the new design will apply only to the selected line. (You can extend the graph by adding more rows, and the new data points will inherit the marker for the line they are on.)
    The thread linked to below demonstrates in more detail how the marker designs are scaled:
    http://www.adobeforums.com/cgi-bin/webx/.3bc10970/0

  • Start-End points not working when sent to Encore

    Hello all, I tried to send a project to Encore but I got an error and Encore closed, I did it again and it worked but the start-end points didn't work, I got the whole project. I have since gone back to a former project which I had previously outputted small segments for YouTube and no matter where you set the Start-End points you get the whole project. Is Encore now corrupt or have I changed something ?

    I don't quite know what you mean, I opened a project that I left set to output a small portion for You Tube. I clicked dynamic link send to Encore, when Encore opens the whole timeline is there,or am I getting confused ? do you always get the whole timeline start to finish when you send to Encore or are you supposed to get just the part between the start-end points ?

  • Playing Quicktime with Multiple Start End Points

    Hello
    I posted a message a few days which I received help on
    regarding starting and ending a Quicktime movie from various points
    in the movie. Now I have a new problem which I cannot fix at all..
    Here is the problem:
    I have a Quicktime movie on stage and 10 various buttons that
    contain a generic script which allows input of start and end points
    for each button to trigger the movie. Initially just doing this
    with one button is successful.
    However, multiple buttons all with the same generic code make
    the movie freeze up completely. My guess is that they are all
    fighting each other for control. Maybe I need something in the code
    which allows the button that is being used to play the movie to
    keep control.
    Here is the code I use for each button, the movie is on frame
    15.
    property pQT,pStart,pEnd,pFrame, pVolume
    on beginSprite me
    sprite(me.spriteNum).color=rgb (255,255,255)
    cursor 0
    if integer(pQT).ilk=#integer then pQT=integer(pQT)
    end
    on mouseUp me
    sound(3).volume=sprite(15).volume
    sprite(15).volume=pVolume
    sprite(pQT).movieTime=pStart
    sprite(pQT).movieRate=1
    cursor 0
    end
    on mouseEnter me
    sprite(me.spriteNum).color=rgb (173,24,41)
    sprite(me.spriteNum).cursor=280
    end
    on mouseLeave me
    sprite(me.spriteNum).color=rgb(255,255,255)
    sprite(me.spriteNum).cursor=0
    end
    on mouseDown me
    sprite(me.spriteNum).cursor=290
    end
    on enterFrame me
    if sprite(pQT).movieTime>=pEnd then
    sprite(pQT).movieRate=0
    end if
    end
    on getPropertyDescriptionList me
    if not the currentSpriteNum then exit
    vPDList=[:]
    setaProp vPDList, #pQT, [#comment: "Which QT sprite",
    #format: #integer, #default: 0]
    setaProp vPDList, #pStart, [#comment: "Range start",
    #format: #integer, #default: 0]
    setaProp vPDList, #pEnd, [#comment: "Range end", #format:
    #integer, #default: 0]
    setaProp vPDList, #pVolume, [#comment: "Volume", #format:
    #integer, #default: 0]
    return vPDList
    end getPropertyDescriptionList
    Any help is much appreciated. (not a lingo expert)
    Andy

    Many thanks Mike
    Works fantastically.
    I just thought I would post the finished code - well, tweaked
    ever so slightly from Mike's orginal for anybody wanting a nice
    little behaviour for controlling a Quicktime movie.
    (watch out for page breaks etc - should be 68 lines)
    property pQT,pStart,pEnd,pFrame,
    pVolume,pMyControl,pReturnMarker
    on beginSprite me
    sprite(me.spriteNum).color=rgb (255,255,255)
    cursor 0
    if integer(pQT).ilk=#integer then pQT=integer(pQT)
    pMyControl=0
    end
    on mouseUp me
    sound(3).volume=sprite(pQT).volume
    sprite(pQT).volume=pVolume
    sprite(pQT).movieTime=pStart
    sprite(pQT).movieRate=1
    pMyControl=1
    cursor 0
    end
    on mouseEnter me
    sprite(me.spriteNum).color=rgb (173,24,41)
    sprite(me.spriteNum).cursor=280
    end
    on mouseLeave me
    sprite(me.spriteNum).color=rgb(255,255,255)
    sprite(me.spriteNum).cursor=0
    end
    on mouseDown me
    sprite(me.spriteNum).cursor=290
    end
    on enterFrame me
    if pMyControl then
    if sprite(pQT).movieTime>=pEnd then
    sprite(pQT).movieRate=0
    pMyControl=0
    go pReturnMarker
    end if
    end if
    end
    on getPropertyDescriptionList me
    if not the currentSpriteNum then exit
    vPDList=[:]
    setaProp vPDList, #pQT, [#comment:"Which QT sprite",
    #format:#string, #default:0]
    setaProp vPDList, #pStart, [#comment:"Range start",
    #format:#integer, #default:0]
    setaProp vPDList, #pEnd, [#comment:"Range end",
    #format:#integer, #default:0]
    setaProp vPDList, #pVolume, [#comment:"Volume",
    #format:#volume, #default:0]
    setaProp vPDList, #pReturnMarker, [#comment:"Return to
    Marker", #format:#marker, #default:0]
    return vPDList
    end getPropertyDescriptionList

  • Refresh Callable Object if changes are made to VC Start/End points

    Looking for some guidance on how to refresh a callable object once I have already brought it into my application.
    I have a VC application that I can use as a callable object during my GP process.  During design time, I can select it and see the start and end points.   I then can map those values and use them in the GP.
    If I go back and change the VC application (make a change to the start or end point ... like a new variable or name change) how do I get my GP to recognize that there is a new version of the VC application?   Currently I have had to delete the CO and rebuild it...Id rather the tool tell me the version has changed and that I need to remap/group my values.
    Note that if I change anything between the start or end point in the VC application there is no problem, since all the GP cares about are those start/end points and how they relate to the rest of the process.

    Hello Mike,
    It´s a pitty but there is no way to "update" VC based callable objects in GP, (in webdynpro callable objects there is an "update" button that allows to do that) , but with Visual Composer Callable Objects the only way is to create a new one.
    Regards,
    Marco.

  • How to set a change pointer for a perticular table?

    Hi,
    Please let me know how to set a change pointer for a perticular table.

    what do you mean by 'change pointer'? normally this idiom is used for sending ÍDOCs from one system/client/org-unit to another ...
    do you generally want to record changes to a specific table? then set parameter rec/client using RZ10 for your instance profiles and restart the instances in order for the parameter to take effect.
    set the table to 'record all changes' using SE11.
    you might re-consider if the table has a lot of  data and is accessed very often for performance-resons.
    change protocols can be evaluated using tx, SCU3.

  • FCP Audio Clips in Soundtrack Pro - Marking the Start & End Points

    When I double click on an audio clip that I've sent from FCP into Soundtrack Pro I seem to open up the entire media file.
    How do I lock off or at least mark the clip start & end?
    I don't see any markers that tell me which part of the clip is actually used in the imported FCP sequence.
    I only want to make (non-destructive) changes to the clip.
    I don't want to alter the original media file.
    And I just want to work on the part that's used in the FCP sequence.
    It makes sense that there's a way to show the start & end points of the clip but I'm just not seeing it.

    I am a bit of a newb here, so pardon if my explanation is a little unpolished, but I have been working on some of my projects like you are and this is what i figured out. I select my sequence in FCP and send to stp as a multitrack project. The whole audio timeline shows up just as it looks in fcp, and the video track shows as one large clip that is made up of all my cuts put together. Now, my audio tracks are all on one line, and i can see all the clips with their cuts on the sequence. I click the first one and open it up to work on in the waveform editor. At that point i see the entire audio clip, including the part before and after my cut that i am using in my sequence, but i also see, up near the playhead, gray markers that show the actual part of the clip i am using in my edit. It is easest to hit shift-z to look at the entire clip on screen, and then find the grey markers. Also, if you play audio before the in marker, you will hear it but you will see that the video is not playing anything, then once you enter into the in-out section the video will play along, and when you pass the out marker the video freezes as the audio keeps playing. Hope this helps.

  • Set video start end points- trim

    I brought a short .mov into my keynote and want to trim the start/stop points but the ability to do so is crude in keynote unless I'm missing something... All I can see is to move the start/stop points with the mouse in the inspector... but very crude movement if I want to catch a certain endpoint. Is there a better way? i.e. keyboard control of endpoints or such?

    Hi Robert,
    I don't think there is. I'd suggest taking the clip into iMovie (or Quicktime) and cropping it more finely that way.

  • Is It Possible To Snap The Start/End Point Of Gradient Tool To Edges Of An Object?

    When I am modifying a gradient on an object, I would like to snap the starting point and the ending point of the gradient to the edges of the object I am working on. Is there a way to do this? I tried just using Smart Guides, as well as the grid and regular guides with no luck. Any ideas?

    Krisler,
    Select your Inline graphic. Then click on the center of the graphic and drag the mouse's pointer into the text. When you get your pointer into the text you will see the insertion cursor (vertical bar) just at the tip of the mouse arrow. When you let go of the mouse button the insertion point for the graphic will be where the insertion bar was at that time. The key point is to concentrate on the position of your arrow tip as you attempt to reposition the insertion point.
    Jerry

  • End point for Effects

    Is there a way to get the exact X and Y coordinates for an objects's location at the end of an effect? Also, is it possible to somehow see the animation happening in the main timeline without having to preview it? With the way the effects seem to work, it's very difficult to place things on screen when you don't know their exact end location point.

    Nope. No math needed. If you want to know exactly where the shape is going to end up (again ±1 pixel since you can't snap the motion path end points) and what it's going to look like in terms of spacing around other objects then using a same sized smart shape with a crosshair image works pretty well. I personally like this method because you can also see the starting point or any in-between points if you'd like. You can also change the smart shape to whichever shape you'd like and the crosshairs will still aim at the center.
    As for rotating objects I've never done it either but that doesn't mean someone else might not have a reason to. But here's a couple screenshots showing an animation of an arrow flying in hitting a surface and bouncing back off. Since you can use the actual shape to visually see where the object will begin and end you do not need math. Aewu, this is just a very crude example I just made up when I got in this morning but hopefully you can see a few more possibilities.

  • Start/End dates for cProjects

    Hi,
    While creating a Project in PS, if the Start/ End date of the project is a weekend or holiday, the start of the cProject shifts to a working day u2013 is there a config to set this to take the actual date (working or holiday). Waiting for your reply @ earliest.
    Thanks & Regards,
    Gaurav

    Hi Gaurav,
    this shifting of the dates is likely a "feature" of the scheduling process. As soon as a calendar has been maintained for the objects the weekends are taken into account and the dates determined for the object being subject of scheduling and it is enforced that the dates are working days.
    To answer your question, if you maintained a calendar without weekends and public holidays - or no calendar at all - this shift won't occur.
    Hoping this helps...
    Best regards,
    Thomas

  • Problem setting project end point (can't access the end point marker)

    I can't seem to set my project end point because the slider control that adjusts the spacing of the measures is obstructing my pointer from being able to click on the end point marker. Any hints as to how I can move the coation of this slider control so that I can access the end point marker with my pointer?

    6ftmama wrote:
    FYI - the end point marker now turns into a bracket when you hover over it.
    THe End-of-Project Marker doesn't change at all. What you see is a change of the Mouse Pointer.
    This is called a "Click Zone" where the Mouse Pointer changes to different shapes when moving over or click on an object or an area in the window.
    Here the Mouse Pointer changes to "Trim Tool" or "Resize Tool".
    Pointer Tool:
    Resize Tool:
    It is the same Tool wne you move the Mouse Pointer of the right edge of a Region to resize its length.
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • How to make custom start end shapes for stroke (arrowheads)...

    hello...
    Indesign cs4 have nice start end stroke shapes like arrowheads, circles, squares...circles is clear, without fill. I need fill in it.
    How to make custom shapes or edit existings start/end shapes to functioning like original provided with indesign?
    Maybe illustrator cs4 have this?

    There's no way to edit line endings in ID. You would have to make a compound path from a line with no ending and a second path or shape for the end.

  • Setting start/finish markers for transcoding for BR disc image

    CS4 4.2.1
    Sorry this is a very basic question. When exporting a sequence using Export>Media you can set the start and finish points in the timeline in the Export Settings box, but when using Encore you can't, and it transcodes everything from time zero to the end of the last clip, and no setting of Work Area or Sequence Markers will change that. Why?

    I think your original question is what Bill and Ann got to in the end.  I have a strong preference for not trimming timelines in Encore.  It has proven too fussy.  You appear to be using dynamic link, or the work area bars would fix your export from PR.  And when Encore takes a sequence from PR, it brings the whole thing and transcodes the whole thing for Encore.
    Bill's "another workaround" method is what I think is the best way.  You appear to ask only about 1 export, but can use Bill's method for multiples.
    In PR, nest your full sequence in a new sequence.  In the new sequence, trim to just what you want in your movie.  Dyanmic link that to Encore.
    There is a timeline in Encore.  You have your asset (the exported movie or dynamic linked PR sequence), but you must make this a timeline, which is what Encore actually uses in the project.  when you double click the timeline in the project panel, it will open a timeline window.

  • Setting up access points for public access

    Okay, here's the situation. I have a PowerMac G4/1.25GHz dual processor running Server X 10.3.9 with four Mac clients (a small law office). Up until recently, everyone had also been running (client) 10.3.9, but I started upgrading some of them to 10.4 (currently 10.4.5). When I did this, they started running into problems with Word sometimes giving a "network or file permission error" when attempting to save documents to the server. After weeks of posting questions to Word support and trying everything in the book that I could think of, I found Apple recently posted what appears to be the answer to this (article 302979, "Microsoft Office applications fail to save to a server volume." The problem? I have all four users logging into the same account on the server, and when one of them logs out, it zaps everything in a Microsoft-created temp folder on the server, including temp files created by open documents created by other clients. Sheesh.
    I had everyone set to use the same account because they have no need of document security -- everyone should be able to get into everyone else's files on the server, period. So, because of this snafu, I've created separate accounts for each of the users. My problem now is that, if user "X" creates a file or folder on the server, user "Y" cannot modify it because it is created as read-only. Strangely, if someone modifies an existing file, it doesn't change the user rights at all -- not sure why.
    I'll admit to being a bit of a novice with Server X but am familiar with parent/child folder permissions -- I think I've got everything set right, but I must obviously be missing something. Here's what I've got setup, and what I've tried. If anyone can point out how I've got this setup improperly, I really need to get this fixed... thanks.
    I have a single sharepoint ("workfiles"). I used the "public" folder as an example, and set the owner to "root" and the group to "staff". Further, I set the owner, group and everyone privileges to "read & write". I've also tried setting the group to "admin". All the individual user accounts I've set are also setup as admin users. I've tried setting each users's primary group as "staff (20)" or "admin (80)". I've copied all these privileges to all enclosed items, which does reset everything to public access, but as soon as someone creates a new folder or file, that folder/file becomes private to that user (it shows up with the creator's username as "owner" (r&w), group as "admin (read-only), and others as "read-only" as well.
    PS: If upgrading the server to Server X 10.4 would help, I'm sure I can arrange that.

    In our law firm, the server (10.4.4), we have set access to read/write access so staff can open client files/folders, edit then and close, etc. That seems to be working okay. Before the tech worked on permissions, if someone created a letter another staff member could open it, but it was read-only.
    The problem we are having is that if a file that is clicked on stationery pad and we want to edit it, it will not allow us to. For example, if we need to edit our letterhead that normally comes up as an untitled document, if I unclick the stationery pad box, it unclicks, but it still comes up as an untitled document. I even tried to unclick a stationery pad on a document that I created before the server upgrade and it wouldn't let me.
    If I create a brand new document and put it on stationery pad, it comes up untitled as it should. If another user on another desktop wants to make changes, they unclick the stationery pad box, but when they open it, it comes up untitled and in checking get info, the stationery pad is selected.
    The tech set it up as follows:
    Share Points and All tabs:
    General tab: box to share this item and its contents is clicked
    Access tab: owner, group and everyone have read/write privileges
    If select dial at bottom to propagate permissions, all boxes are checked, except for access control list, which is shaded.
    I cannot drag/add anything to the control list and the pencil and the minus sign is shaded
    Protocol tab: Both boxes, share item using AFP and Allow AFP guest users are clicked. But for better security in reading the article, this should be unchecked.
    Also under the protocol tab: the inherit permission from parent radio dial is clicked, not the use standard POSIX behavior.
    What are we missing?
    Thanks, Cheryl

Maybe you are looking for

  • MySQL - In a Query, Using a Variable as a Table Name

    Hello, The code I have attached works. However, I would like to replace the table name "tractors" with the variable "$result". How do I do this? (It doesn't work if I just type "$result" where "tractors" is.) Thanks, John

  • Command Link Issue

    Hi, I am using Jdevloper 11g. I am facing issue with the following code. In brief - I am taking Value from session and want to display those values as Command link on jspx, in af:forEach. When I bind that Command Link with Managed Bean that time it d

  • Odi Jobs not getting triggered through Scheduler Agent

    Hi Guru's, i have Scheduled jobs in odi using Scheduler agent but jobs doesn't get triggered even though my scheduler agent is up and running and i have updated scheduled plan also. Please help me in resolving the issue. Regards Vinod

  • How do I remove chapter titles showing in a movie

    While watching a rented movie the chapter titles continuously appear.  Anyone know how to get these to go away?

  • Sim failure iPhone 5

    Hi Everyday I get a SIM Failure message on my iPhone 5, I turn off phone and it is okay again for a few hours but isn't dealing with the root cause, any ideas would be appreciated Thanks John