I am unable to add transitions to any clip unless it is on the main timeline.  So if I want to add an image that crossfades on a different timeline, I am completely unable to do so.  Any suggestions?

I have seen Youtube videos where they just drop it on the second or third timeline and it works like a charm, if I do it, it is only applying it to the main timeline.  Any help would really be appreciated, I have spent close to 4 hours trying to find the solution to this with 0 success.

kidsdr wrote:
Transitions cannot be added to connected clips.  You have to convert the connected clips to 1 or more secondary storyline(s).  Just highlight the connected clips separately (or as a series); then go to Clip in the FCP Menu and click on Storyline.  The converted clips can be highlighted; then add transitions.  Hope this helps.
Not exactly true: the transition implies that the clips be in a storyline, but you don't need to create the storyline yourself.
If two connected clips are adjacent, you can add a transition. FCP X will *automatically* create a secondary storyline for you.
I am guessing that the problem the original poster may be because there is some interval between the two clips.
If that is not the problem: then the first thing to try is deleting preferences.

Similar Messages

  • When applying a transition between particular clips it only applies to the end of the previous clip and will neither 'Center on Edit' nor 'Start on Edit'. I'm kind new to FCE 4 so please excuse my inexperience.

    When applying a transition between particular clips it only applies to the end of the previous clip and will neither 'Center on Edit' nor 'Start on Edit'. I'm kind new to FCE 4 so please excuse my inexperience.

    This indicates that you only have handles available on one side of the edit point. If the transition ends on the edit, that means that the next shop begins on the first frame of the media file and there is no room for it to extend and create the necessary overlap.
    Click <a class="jive-link-external" href="http://www.fcpbook.com/Effects1.html">here</a> to find out how transitions work.

  • My camera roll on my iphone 4 (running iOS5) is inaccessible.  Whenever you press the camera roll it defaults to the main screen. Computers (MAC and PC don't recognize that there are any pics on the camera either.  HELP!

    I have tried to upload photos through facebook or email them, but whenever I try to access the camera roll, it goes back to the main screen.  I really have a couple photos I would like to try and retrieve. I don't want to wipe it yet and start new.  Any suggestions?

    Update: I ended up downloading Diskaid (free for 14 days) and all my photos where there. Put them all on my computer and then retored my phone as a new phone and all seems good. So far. Fingers crossed it doesn't happen again! Thanks for everyone's input!

  • How can I add an Image to a jsp from different paths???

    Hi,
    I am trying to include an image to my jsp from a directory which is not located under my jsp's directory. In other words, is it possible to put my jpeg file whereever I want in my C folder and still be able to add it into my jsp?
    Thanks,
    Alex

    That is not quite right. The image must be in a directory that is under the web server's view. JSP has nothing to do with images, the browser loads images separately after parsing the HTML results to find out what images it has to load. The images must be in a place that is servable by the web server being used.
    If you were just using Tomcat as a web server, then you would have a web application directory "myapp". The images need to go under "myapp" or in any subdirectory, except the WEB-INF directory, which is a special case.

  • WinRT - how to add an image that scales based on bounding box?

    I have an image I want want to put on my map and have it scale based on the zoom level. If this had the same API as the WPF version, I could add a MapPolygon and use an ImageBrush.
    How can this be accomplished with the Bing.Map on an Windows Store application?
    This is how I am adding the image (and a Polygon to show the bounding box):
    imageLayer.Children.Clear();
    MapLayer.SetPosition(_vm.RadarImage, new Location(_vm.Overlay.LatN, _vm.Overlay.LonW));
    imageLayer.Children.Add(_vm.RadarImage);
    shapeLayer.Shapes.Clear();
    var rect = new MapPolygon();
    rect.Locations.Add(new Location(_vm.Overlay.LatN, _vm.Overlay.LonW));
    rect.Locations.Add(new Location(_vm.Overlay.LatS, _vm.Overlay.LonW));
    rect.Locations.Add(new Location(_vm.Overlay.LatS, _vm.Overlay.LonE));
    rect.Locations.Add(new Location(_vm.Overlay.LatN, _vm.Overlay.LonE));
    rect.FillColor = Colors.Green;
    shapeLayer.Shapes.Add(rect);
    map.SetView(new LocationRect(new Location(_vm.Overlay.LatN + 0.0001, _vm.Overlay.LonW + 0.0001), new Location(_vm.Overlay.LatS - 0.0001, _vm.Overlay.LonE - 0.0001)));Here's the image scaled close to accurate.
    If you zoom out, the image stays the same size, but the Rect and Tiles scale.

    The WP8 map control doesn't have this functionality, however it is possible to calculate these values. First you will need the tile math code from here:
    http://msdn.microsoft.com/en-us/library/bb259689.aspx
    Once you have this you will then need to take the top left coordinate of the map. Since there is no Bounds property or some other nice property to get this information you will need to use the center of the map and convert it to a global pixel coordinate
    using the LatLongToPixelXY method. Once you have this you can offset the value to get the top left corner global pixel coordinate by subtracting the x by width/2 and the Y by height/2.
    Next use the LatLongToPixelXY  method on the top left and bottom right corners of your bounding box. This will give you global pixel coordinates. You will now want to convert them to local pixel coordinates by subtracting the top left map corner pixel
    coordinates from  the X and Y values you just calculated for your bounding box. This will result in the pixel coordinates you need to position your image on the canvas.
    http://rbrundritt.wordpress.com
    Finally got a chance to try this out on the phone. Not sure I'm doing it right. Is LevelOfDetail == ZoomLevel?
                    var level = map.ZoomLevel;
                    int outLat, outLon;
                    Microsoft.MapPoint.TileSystem.LatLongToPixelXY(
                        map.Center.Latitude, 
                        map.Center.Longitude, 
                        (int)level, 
                        out outLat, out outLon);
                    int tlLeft = outLat / 2;
                    int tlTop = outLon / 2;
                    int brRight = outLat * 2;
                    int brBottom = outLon * 2;
    My debug output:
    tlLeft
    67 int
    tlTop 117
    int
    brRight
    270 int
    brBottom
    468 int
    level 1.6759999990463257
    double

  • How to add button inside move clip and call it from main timeline?

    Hi,
    On the main timeline I  have a movie clip called clock_mc and playBtn
    playBtn is  placed in the center of clock_mc
    When you press playBtn clock_mc starts playing
    playBtn.addEventListener(MouseEvent.CLICK, playClock);
    function playClock(event:MouseEvent):void
        if (event.target == playBtn)
            clock_mc.play();
            playBtn.visible = false;
            trace ("play button was clicked");
    This is working fine for me.
    But I want to add replayBtn to the last frame of clock_mc and set up the function on main Timeline.
    Another words when the clock_mc rich last frame you see replayBtn.
    code example:
    replayBtn.addEventListener(MouseEvent.CLICK, playClock);
        if (event.target == replayBtn)
            clock_mc.play();
            replayBtn.visible = false;
            trace ("replay button was clicked");
    I've tryed to placed the replayBtn on the stage on the main timeline and I've set it up to replayBtn.visible = false;
    And then I add replayBtn.visible = true; to last AS frame of clock_mc but it wont work
    Even when I put the button physically to the last frame of clock_mc it will not work either.
    Please help

    I've solved the problem:-)
    I've set replayBtn.visible = false; on first frame of clock_mc
    and  replayBtn.visible = true; at the last frame
    and than as you sugested I'v add:
    clock_mc.replayBtn.addEventListener(MouseEvent.CLICK, replayClock);
    function replayClock(event:MouseEvent):void
            clock_mc.play();
            trace ("replay button was clicked");
    I couldn't see replayBtn at the firs stage because I have clockTween assosiated with clock:
    clockTween = new Tween(clock_mc, "x", Regular.easeOut, -469,438, .5, true);
    and I had replyBtn in the wrong place so when clock_mc was coming up on the stage replayBtn was on the left side of the stage :/
    Now I have to solve only one thing.
    Maybe you would have any suggestions please.
    I've set up stop(); in a first frame of clock_mc
    that when you see clock_mc sliding in it has to wait for playBtn to be clicked
    because I have two tween:
            clockTween = new Tween(clock_mc, "x", Regular.easeOut, -469,438, .5, true);
            playTween = new Tween(playBtn, "x", Regular.easeOut, -720,514, .5, true);
            playBtn.visible = true;
    so when you click on playBtn:
    function playClock(event:MouseEvent):void
        if (event.target == playBtn)
            clock_mc.play();
            playBtn.visible = false;
            trace ("play button was clicked");
    everythink is working fine except when I clik on replayBtn it play for I sec because there is stop(); on the first frame of clock_mc

  • How do you add an image to the preview that doesn't show up in the live site?

    Is it possible to add an image that would take the place of " <> " ?

    No this is how it's done. This answer was provided by Nthsecret
    1) I create an image of my widget preview (ex. with photoshop);
    2) I add an image in a server or ftp;
    3) I add the image into file .mucow in this mode:
          <pageItemPosterHTML>
                <![CDATA[
                     <div><img src="YOUR_IMAGE" style=" height: HEIGHT_IN_PX; width: WIDTH_IN_PX;"></div>
                ]]>
          </pageItemPosterHTML>
         <pageItemHTML>
                <![CDATA[
                    <div></div>
                ]]>
          </pageItemHTML>

  • Bundle Preboot Image (Add-on Image) - How to?

    Hi, I'm trying to figure out if something is possible! I would like to create an add-on image that would only copy some files and folders on some workstations already up and running Windows 7 Ent. SP1. Here's what I tried so far.
    1- I created an add-on image using ZMG Explorer
    2- I uploaded the add-on image in /var/opt/novell/zenworks/content-repo/images/addon-image
    3- I created a new preboot bundle that use my addon image I just created
    4- I then add under the tab Relationships a test computer to push my addon image on
    5- Finally, I boot my test computer in PXE and when my computer check if he has something to do nothing happen
    So I sure I like to know what I'm missing here!
    Note: I only need to push files/folders. And theses files/folders won't be use to install anything later on with ZENworks.
    Thanks in advance for the help!
    Guillaume

    Originally Posted by spond
    GuillaumeBDEB,
    looks like there is a size limit - I just tried a 15gb file and got the
    same problem. Are you able to open a SR? I will be talking to the
    developers anyways...
    Shaun Pond
    Yes I'm able to open a SR. I will do it as soon as I can. Thanks for the info.
    Guillaume

  • TS3147 I have been unable to add an HP Photosmart C4480 printer to my existing printer list using a USB connection. My current operating system is OS X  version 10.9.1. It seems that software is available, but it doesn't work. Any suggestions?

    I have been unable to add an HP Photosmart C4480 printer to my existing printer list using a USB connection. Software seems to be available and thought I had downloaded it, but doesn't work. Any suggestions?

    Try deleting the printer, restarting, and trying software update again.
    If that doesn't work, you can download the entire HP package here:
    http://support.apple.com/kb/DL907

  • Since the last software update, I am unable to add new contacts or change existing contacts - neither if I use the green Phone app nor using the brown Contacts app. Any suggestions?

    since the last software update, I am unable to add new contacts or change existing contacts - neither if I use the green Phone app nor using the brown Contacts app. Any suggestions?

    *Update*
    I thought I had found the offending 'app' namely "Songpop."
    I regularly use "Songpop" on my phone late at night via my wifi connection.
    All enteries on my phonebill are at midnight (even though I have a data allowance it was excluded from allowance). I switched 3G off on Friday, played "Songpop" at midnight and at the exact time I got a "Server Error" message.
    I posted a message on the "Songpop" support forum.At first they said this was a problem relating to my ISP.
    I have spoken to my ISP and asked if there are connection drops at the time I have been billed (ie to establish if my wifi dropped and 3G kicked in without my knowledge) and have been advised that there aren't any connection drops at that time.
    "Songpop" have now responded that "This is an issue to take up with Apple Support"  see: http://support.songpop.fm/songpop/topics/playing_songpop_on_phone_via_wifi_but_i ncurring_download_data_charges_for_3g_useage?utm_content=topic_link&utm_medium=e mail&utm_source=reply_notification
    Hopefully someone at Apple can respond ....

  • I am unable to add an appointment to my calendar on my 5c.  Any suggestions?

    I am unable to add an appointment to my calendar on my 5c.  Any suggestions?

    I have tried resetting various options, called Apple, everything appears to be correct. I am able to make appointments on my (old) MacBook and they will sync up with my phone, but I that's it.  I do not get any error message at all.
    It looks like I am creating the appointment, then when I click Add, nothing appears on my phone.  I am new to the "Community" I thought it would be easier to navigate and find answers to this issue.   Thanks you Chris.

  • Loaded Elements 10 onto my new computer but cannot use photo email.  After composing the email I get message that says unable to complete.  I used photo email many tmes on old computer.  Any suggestions?

    I loaded Elements 10 onto my new computer but cannot use photo email.  I get a message saying "unable to complete"  Any suggestions?

    Unfortunately, Starter Edition 3.2 has been discontinued for some time now; an alternative option (which is free) could be google Picasa; check that one out to see if it might work for you.
    Photoshop Elements replaced Starter Edition, and comes with a sophisticated organizer that essentially does what Starter Edition did; download the tryout and use it for 30 days for free to see if it does what you want it to.
    -Mark

  • HT1473 I got my MAC PRO installed with iOS lion and since then i'm unable to add music on my iTunes and i tried adding to library option but still it copies and at the end it stays empty, doesn't even open new songs on it. any suggestions ?

    hey,
    I've rebooted my mac before installing new ios lion, so after everything was done i copied my data back to my mac book pro, then simple clicked on adding to library option in itune and it only synced half of the track and rest simply didnt copy, i thought maybe some error occured and i tryed the same procedure again but its not adding more tracks in it. and i just notice when ever i try play a new song through my data it does not open in itune these are the same tracks and songs i been listening to since ages on different note books and pods..
    Help me i've tryed everything but nathing seems to be working. and my itune is uptodated =S

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • How can I empty anApple e-mail program mailbox.  I have thousands of message I wish to delete, but am unable to do so.  Any suggestions?

    How can I empty an Apple e-mail program mailbox.  I have thousands of message I wish to delete, but am unable to do so.  I open the e-mails on my laptop, so I don't usually need to open them on the iMac.  Whenever I use select all, and the move to trash, they always seem to reappear again.  Prospectively, I know I can change the e-mail settings in preferences, but that doesn't help get rid of what is already there.  Any suggestions?

    You mention 2 computers. Not sure how one relates to the other. Are the messages on one and not the other?
    Are they in the Inbox, or another local folder you created? If a local folder, delete the folder.
    Do you have anything used to sync messages between the 2 computers? If so, disable it.
    Select the messages and choose Delete instead of moving to the trash.
    If that doesn't work, rebuild the mailbox, quit Mail and reopen and try again.
    If all fails, delete the account from the computer. Since it is POP, when you re-add the account, there won't be any messages to download.

  • Unable to install Adobe Flash Player in iMAC with OS X10.7.2 Any suggestions?

    Unable to install Adobe Flash Player iniMAC with OS X 10.7.2 Lion. Any suggestions?

    I have administrative prviledges.
    I obtained the latest version from the Adobe website.
    When I double click on the .dmg file I receive a message that I need to close open browsers which I do.
    Then I get a message stating that Adobe will be installed when I reopen browers.
    Finally when I check the Applications folder I find a file titled: Install Adobe Flash Player.
    This same application is shown in the dock.
    When I click in the file in either the Applications folder or the dock, the complete installation process starts again.
    Any suggestions?

Maybe you are looking for