Clips cut off top?

When I drag my clips into the project area, it cut off some of the sides, particularly the top of people's heads.
Is there a way to make it so it won't do this?
Thanks,
Phil

Are the people horizontal in your clips? Only joking. Anyway, did you set the project properties correctly for your footage e.g. widescreen? File >project properties>aspect ratio.
If you think you did, go to preferences and under the browser tab do you have a tick next to "clips in events browser use project crop setting" ? Untick and try that.
Are you using stabilization?

Similar Messages

  • Printing pdf files made from Filemaker docs on HP 7410 cuts off top margin

    Just bought a MacBook Pro and jumped from Tiger to Snow Leopard.
    Also bought FileMaker 10 replacing the FileMaker 8.5 I used up till the MacBook Pro purchase and system upgrade.
    Still using the same HP 7410, but during installation, I think I remember upgrading the printer driver. At any rate, this HP Printer is now much more responsive. It was previously very slow.
    When I now save documents printed as pdf's from filemaker (as I used to) and then try to print them on the HP 7410, they open fine in Preview showing the whole page with no text cut off. But when I press Print in preview and I get the HP driver preview of what will print as part of the print dialogue box, it shows the top margin of the page cut off (down to at least 1/2 ") and actually prints that way. Before the switch to Snow Leopard and the MacBook Pro, a top margin of 1/4 " worked fine and printed in pdf docs.
    (top margins of 1/4" on Word & Excel documents I tested still seem to print fine)
    I use the borderless printing work-around, but that seems inelegant. It also takes much, much............much longer to print when it's in that mode (even fast draft).
    Why is this happening?
    Is there a setting I am missing?
    Can this be fixed?
    Steve

    What print driver are you using?
    I set my printer to use the open source Gutenprint driver in place of the one supplied with my printer to resolve an issue I was having - see my post http://discussions.apple.com/thread.jspa?threadID=1626340&tstart=0
    The Gutenprint home page is http://gutenprint.sourceforge.net/index.php3
    Message was edited by: another_steve

  • Audio clips cutting off at the beginning, after replacing audio.

    I have received an fla for a complex game, and have been directly replacing the audio clips in it with new ones with the same file name. The game randomly chooses themes, displaying text and a corresponding audio clip.  After replacing the old files with the new ones, out of 20 audio clips, about 6 of them get cut off at the beginning. There is no discernible difference in the length of the clips, or empty space at the beginning between the original audio files and the new ones.
    Is it possible that there is something happening in the actionscript that could be causing the problem? The fla calls a file calls Themes.as, this is the code in the file, case the answer is in there somewhere:
    import utils.Randomise;
    class com.tt.games.newsfinder.Themes{
    //AVAILABLE THEMES
    public static var THEME_1:String = "sports";
    public static var THEME_2:String = "music";
    public static var THEME_3:String = "pets";
    public static var THEME_4:String = "flying";
    public static var THEME_5:String = "new teeth";
    public static var THEME_6:String = "hats";
    public static var THEME_7:String = "bikes";
    public static var THEME_8:String = "swimming";
    public static var THEME_9:String = "zoos";
    public static var THEME_10:String = "shoes";
    public static var THEME_11:String = "bedtime stories";
    public static var THEME_12:String = "moving house";
    public static var THEME_13:String = "cleaning your teeth";
    public static var THEME_14:String = "films";
    public static var THEME_15:String = "painting and drawing";
    public static var THEME_16:String = "food";
    public static var THEME_17:String = "drinks";
    public static var THEME_18:String = "the seaside";
    public static var THEME_19:String = "trees";
    public static var THEME_20:String = "boats";
    //SELECTED THEM
    public static var CURRENT_THEME:String;
    //FRAME LABELS FOR ANT NEWS TOPICS
    public static var TOPICS_SPORT:Array = ["football","cricket","tennis","balls","bowling"];
    public static var TOPICS_MUSIC:Array = ["guitar","recorder","notes"];
    public static var TOPICS_PETS:Array = ["fish","hamster","dog","rabbit","mouse"];
    public static var TOPICS_FLYING:Array = ["plane_green","plane_yellow","plane_small"];
    public static var TOPICS_NEW_TEETH:Array = ["teeth"];
    public static var TOPICS_HATS:Array = ["hat1","hat2","hat3"];
    public static var TOPICS_BIKES:Array = ["bike1","bike2","bike3"];
    public static var TOPICS_SWIMMING:Array = ["goggles","flippers","rubber_ring"];
    public static var TOPICS_ZOO:Array = ["octopus","monkey","snake","dolphin"];
    public static var TOPICS_SHOES:Array = ["shoes1","shoes2","shoes3"];
    public static var TOPICS_BOOKS:Array = ["book1","book2","book3"];
    public static var TOPICS_MOVING:Array = ["box1","box2","box3"];
    public static var TOPICS_CLEANING_TEETH:Array = ["toothpaste"];
    public static var TOPICS_FILM:Array = ["projector","camera"];
    public static var TOPICS_DRAWING:Array = ["pencil"];
    public static var TOPICS_FOOD:Array = ["cake"];
    public static var TOPICS_DRINK:Array = ["tea_pot","cups"];
    public static var TOPICS_SEASIDE:Array = ["sandcastle","bucket","spade","crabs"];
    public static var TOPICS_TREES:Array = ["tree1","tree2","tree3"];
    public static var TOPICS_BOATS:Array = ["boat1","boat2","boat3"];
    public static function fGetTopicsByTheme(p_nLength:Number):Array{
    var l_aTopics:Array = new Array();
    var l_aChosen:Array = new Array();
    switch(CURRENT_THEME){
    case THEME_1: l_aTopics = TOPICS_SPORT.slice(); break;
    case THEME_2: l_aTopics = TOPICS_MUSIC.slice(); break;
    case THEME_3: l_aTopics = TOPICS_PETS.slice(); break;
    case THEME_4: l_aTopics = TOPICS_FLYING.slice(); break;
    case THEME_5: l_aTopics = TOPICS_NEW_TEETH.slice(); break;
    case THEME_6: l_aTopics = TOPICS_HATS.slice(); break;
    case THEME_7: l_aTopics = TOPICS_BIKES.slice(); break;
    case THEME_8: l_aTopics = TOPICS_SWIMMING.slice(); break;
    case THEME_9: l_aTopics = TOPICS_ZOO.slice(); break;
    case THEME_10: l_aTopics = TOPICS_SHOES.slice(); break;
    case THEME_11: l_aTopics = TOPICS_BOOKS.slice(); break;
    case THEME_12: l_aTopics = TOPICS_MOVING.slice(); break;
    case THEME_13: l_aTopics = TOPICS_CLEANING_TEETH.slice(); break;
    case THEME_14: l_aTopics = TOPICS_FILM.slice(); break;
    case THEME_15: l_aTopics = TOPICS_DRAWING.slice(); break;
    case THEME_16: l_aTopics = TOPICS_FOOD.slice(); break;
    case THEME_17: l_aTopics = TOPICS_DRINK.slice(); break;
    case THEME_18: l_aTopics = TOPICS_SEASIDE.slice(); break;
    case THEME_19: l_aTopics = TOPICS_TREES.slice(); break;
    case THEME_20: l_aTopics = TOPICS_BOATS.slice(); break;
    if(l_aTopics.length < p_nLength){
    //make it long enough!
    var l_nDif:Number = p_nLength - l_aTopics.length;
    for(var i:Number = 0; i< l_nDif; i++){
    //add the list itself, in case its length is 1!
    l_aTopics = l_aTopics.concat(l_aTopics);
    //now trim it
    l_aChosen = l_aTopics.slice(0,p_nLength);
    return l_aChosen;
    * get a random selection of topics of a fixed length, not including those from the chosen theme
    public static function fGetRandomTopics(p_nItems:Number):Array{
    var l_aTopics:Array = new Array();
    if(CURRENT_THEME != THEME_1) l_aTopics = l_aTopics.concat(TOPICS_SPORT);
    if(CURRENT_THEME != THEME_2) l_aTopics = l_aTopics.concat(TOPICS_MUSIC);
    if(CURRENT_THEME != THEME_3) l_aTopics = l_aTopics.concat(TOPICS_PETS);
    if(CURRENT_THEME != THEME_4) l_aTopics = l_aTopics.concat(TOPICS_FLYING);
    if(CURRENT_THEME != THEME_5) l_aTopics = l_aTopics.concat(TOPICS_NEW_TEETH);
    if(CURRENT_THEME != THEME_6) l_aTopics = l_aTopics.concat(TOPICS_HATS);
    if(CURRENT_THEME != THEME_7) l_aTopics = l_aTopics.concat(TOPICS_BIKES);
    if(CURRENT_THEME != THEME_8) l_aTopics = l_aTopics.concat(TOPICS_SWIMMING);
    if(CURRENT_THEME != THEME_9) l_aTopics = l_aTopics.concat(TOPICS_ZOO);
    if(CURRENT_THEME != THEME_10) l_aTopics = l_aTopics.concat(TOPICS_SHOES);
    if(CURRENT_THEME != THEME_11) l_aTopics = l_aTopics.concat(TOPICS_BOOKS);
    if(CURRENT_THEME != THEME_12) l_aTopics = l_aTopics.concat(TOPICS_MOVING);
    if(CURRENT_THEME != THEME_13) l_aTopics = l_aTopics.concat(TOPICS_CLEANING_TEETH);
    if(CURRENT_THEME != THEME_14) l_aTopics = l_aTopics.concat(TOPICS_FILM);
    if(CURRENT_THEME != THEME_15) l_aTopics = l_aTopics.concat(TOPICS_DRAWING);
    if(CURRENT_THEME != THEME_16) l_aTopics = l_aTopics.concat(TOPICS_FOOD);
    if(CURRENT_THEME != THEME_17) l_aTopics = l_aTopics.concat(TOPICS_DRINK);
    if(CURRENT_THEME != THEME_18) l_aTopics = l_aTopics.concat(TOPICS_SEASIDE);
    if(CURRENT_THEME != THEME_19) l_aTopics = l_aTopics.concat(TOPICS_TREES);
    if(CURRENT_THEME != THEME_20) l_aTopics = l_aTopics.concat(TOPICS_BOATS);
    l_aTopics = Randomise.fRandomise(l_aTopics);
    return l_aTopics.slice(0,p_nItems);
    public static function fGetThemeByTopic(p_sTopic:String):String{
    if(fIsInList(p_sTopic,TOPICS_SPORT)) return THEME_1;
    if(fIsInList(p_sTopic,TOPICS_MUSIC)) return THEME_2;
    if(fIsInList(p_sTopic,TOPICS_PETS)) return THEME_3;
    if(fIsInList(p_sTopic,TOPICS_FLYING)) return THEME_4;
    if(fIsInList(p_sTopic,TOPICS_NEW_TEETH)) return THEME_5;
    if(fIsInList(p_sTopic,TOPICS_HATS)) return THEME_6;
    if(fIsInList(p_sTopic,TOPICS_BIKES)) return THEME_7;
    if(fIsInList(p_sTopic,TOPICS_SWIMMING)) return THEME_8;
    if(fIsInList(p_sTopic,TOPICS_ZOO)) return THEME_9;
    if(fIsInList(p_sTopic,TOPICS_SHOES)) return THEME_10;
    if(fIsInList(p_sTopic,TOPICS_BOOKS)) return THEME_11;
    if(fIsInList(p_sTopic,TOPICS_MOVING)) return THEME_12;
    if(fIsInList(p_sTopic,TOPICS_CLEANING_TEETH)) return THEME_13;
    if(fIsInList(p_sTopic,TOPICS_FILM)) return THEME_14;
    if(fIsInList(p_sTopic,TOPICS_DRAWING)) return THEME_15;
    if(fIsInList(p_sTopic,TOPICS_FOOD)) return THEME_16;
    if(fIsInList(p_sTopic,TOPICS_DRINK)) return THEME_17;
    if(fIsInList(p_sTopic,TOPICS_SEASIDE)) return THEME_18;
    if(fIsInList(p_sTopic,TOPICS_TREES)) return THEME_19;
    if(fIsInList(p_sTopic,TOPICS_BOATS)) return THEME_20;
    return "";
    private static function fIsInList(p_s:String,p_aList:Array):Boolean{
    var l_n:Number = p_aList.length;
    var l_b:Boolean = false;
    for(var i:Number = 0; i < l_n;i++){
    if(p_aList[i] == p_s){
    //trace("!!! ** match >> " + p_aList[i] + " matches " + p_s);
    l_b = true;
    break;
    return l_b;
    public static function fRandomTheme():String{
    var l_aThemes:Array = [THEME_1,
    THEME_2,
    THEME_3,
    THEME_4,
    THEME_5,
    THEME_6,
    THEME_7,
    THEME_8,
    THEME_9,
    //THEME_10, << removed the shoes topic as we didn't have the audio for it!
    THEME_11,
    THEME_12,
    THEME_13,
    THEME_14,
    THEME_15,
    THEME_16,
    THEME_17,
    THEME_18,
    THEME_19,
    THEME_20
    var l_s:String = String(Randomise.fPickRandom(l_aThemes));
    CURRENT_THEME = l_s;
    return l_s;
    public static function fGetHeader(p_n:Number):String{
    var l_sHeader:String = "Can you find " + p_n + " people who ";
    l_sHeader += fGetActivity();
    l_sHeader += "?";
    return l_sHeader;
    public static function fGetEndTxt(p_n:Number):String{
    var l_sTxt:String = "That's brilli-Ant! You found " + p_n + " people who ";
    l_sTxt += fGetActivity();
    l_sTxt += "!";
    return l_sTxt;
    public static function fGetActivity():String{
    var l_sHeader:String ="";
    switch(CURRENT_THEME){
    case THEME_1: l_sHeader += "played sports today"; break;
    case THEME_2: l_sHeader += "are learning a musical instrument"; break;
    case THEME_3: l_sHeader += "have a new pet"; break;
    case THEME_4: l_sHeader += "have been flying"; break;
    case THEME_5: l_sHeader += "have lost a tooth"; break;
    case THEME_6: l_sHeader += "are wearing a hat"; break;
    case THEME_7: l_sHeader += "can ride a bike"; break;
    case THEME_8: l_sHeader += "went swimming"; break;
    case THEME_9: l_sHeader += "went to the zoo"; break;
    case THEME_10: l_sHeader += "have new shoes"; break;
    case THEME_11: l_sHeader += "read a book"; break;
    case THEME_12: l_sHeader += "are moving house"; break;
    case THEME_13: l_sHeader += "cleaned their own teeth"; break;
    case THEME_14: l_sHeader += "watched a film"; break;
    case THEME_15: l_sHeader += "drew a picture"; break;
    case THEME_16: l_sHeader += "baked a cake"; break;
    case THEME_17: l_sHeader += "made a cup of tea"; break;
    case THEME_18: l_sHeader += "went to the beach"; break;
    case THEME_19: l_sHeader += "climbed a tree"; break;
    case THEME_20: l_sHeader += "have been in a boat"; break;
    return l_sHeader;
    public static function fGetSuggestion():String{
    var l_sTxt:String = ""
    switch(CURRENT_THEME){
    case  THEME_1: l_sTxt = "How many sports can you think of that you play with a ball? How many of them have you played?"; break;
    case  THEME_2: l_sTxt = "Do you know any songs? Why not sing it right now?"; break;
    case  THEME_3: l_sTxt = "How about taking the dog for a walk? You don’t have a dog? Take someone else’s dog for a walk!"; break;
    case  THEME_4: l_sTxt = "Not everyone can go flying, but everyone can fly a kite! Why don’t you make your own kite and see if it flies?"; break;
    case  THEME_5: l_sTxt = "Have you got a wobbly tooth? Don’t forget to put it under your pillow when it falls out!"; break;
    case  THEME_6: l_sTxt = "Does your Mum have a hat? What does it look like on you?"; break;
    case  THEME_7: l_sTxt = "Can your Dad ride a bike? Why don’t you ask him?"; break;
    case  THEME_8: l_sTxt = "Can your Mum swim? Why don’t you ask her?"; break;
    case  THEME_9: l_sTxt = "How many animals can you think of that begin with the letter M? Ask someone else and see who thinks of the most!"; break;
    //case  THEME_10: l_sTxt = "shoes..."; break;
    case  THEME_11: l_sTxt = "What’s your favourite bedtime story? Can you read it to yourself?"; break;
    case  THEME_12: l_sTxt = "Have you ever moved house? Why not ask a grown-up about a time when they moved house?"; break;
    case  THEME_13: l_sTxt = "Have you cleaned your teeth today? I hope so! How many toothbrushes are there in your bathroom?"; break;
    case  THEME_14: l_sTxt = "What was the last film you saw? Do you have a favourite? Ask a grown-up to tell you about their favourite film!"; break;
    case  THEME_15: l_sTxt = "You can draw your news too! Draw a picture of what you did today!"; break;
    case  THEME_16: l_sTxt = "Have you ever baked a cake? Cooking can be fun - and if you make something delicious, that’s definitely news!"; break;
    case  THEME_17: l_sTxt = "Fruits make great drinks. How many different fruits can you think of that you can drink?"; break;
    case  THEME_18: l_sTxt = "You can do lots of different things at the beach. How many different things can you think of?"; break;
    case  THEME_19: l_sTxt = "Can you see any trees outside the nearest window? How many can you see?"; break;
    case  THEME_20: l_sTxt = "Why don’t you make your own boat and see if it floats in the bath?"; break;
    return l_sTxt;
    Any help would be extremely appreciated.
    Thank you,
    Ginger

    If you have not upgraded to version 7 you should do that.
    If you have upgraded to Version 7, be sure to do the updates to 7.0.5
    Go to the Help menu and select 'About Adobe Presenter' to see what version, if it is 7.0, to 7.0.2 you need to update it
    drop down the help menu again and you will see an 'update' option.
    you need to install in order - 7.0.1, then 7.0.2 then 7.0.5 - you cannot install all at once
    another thing you might want to do is open the file you are working on in 7.0.5 snd save it out with a new filename in a new location to combat that pesky problem of the 'media.ppcx' file disappearing....

  • Photosmart c4480 cutting off top of photos

    hi, i bought this printer today and thought i would give it a test run on photos from a memory card on 6x4 paper but it keeps cutting the top of the photo off a little bit
    am i doing something wrong? is there a way of stopping this happening?
    thanks mandy

    It has to do with how all the camera sensors are made.
    You can't change the aspect ratio in the camera.  You need to crop the photo using some sort of photo modification software.  I think all the picture editors have a crop function.  So, the picture is a 4x3 aspect ratio.  You need to cut about 10-12% off the short dimension on the computer. 
    Of course, the dorky workaround is to always take pictures with about 5% of stuff you don't care about on the top and bottom of the picture.  So, you zoom out a little, and, when you print the picture, it will crop stuff that's okay to crop.  Of course, if the pictures are already taken, that doesn't work.
    Sorry about the frustration!  
    Let me know how it goes!
    CF
    I work for HP and hope to make your day Sproutastic!

  • Printing cuts off top of heads

    I use PSE4 on a WIN XP with all updates. I have a photo (originally 5x7) that I resized to 4x6. WHen I try printing it on my HP PHOTOSMART 7960 on 4x6 HP photo paper with tab the printer always cuts off the top of one head. I have tried sizing down the picture to 3.95 inches and then printing on 4x6 paper. I have tried everything else I can think of and it ALWAYS cuts off the top of their heads. WHen I print the photo with a different photo software the print comes out O.K.
    What Am I not selecting, etc. to print the photo as what-you-see-is-is-what-you-get in PSE4?

    I'm beginning to suspect the aspect ratio of this image isn't correct. Do this experiment and see what happens:
    First, make a copy of the image file you're working on so you don't experiment on an original.
    Have the copy open on your desktop (in Editor), then go to Image>Resize>Image Size. Make sure there is no checkmark next to Resample, and then start increasing (or decreasing) just the number in the resolution box until the dimensions of the image are just slightly over 4 X 6. Make sure it is 4.something by 6.something, though. Once you get to that point, click OK and accept the change.
    With the resized image open on your desktop, select the Rectangular Marquee tool. Once you've selected it, choose "Fixed Size" in the tool's option bar and set the dimensions to 4 X 6. Use the tool and select a perfect 4 X 6 portion of the image, then do Image>Crop. Now try printing.
    Most cameras do not produce an image file that can be reduced to a perfect sized print, so a little bit of cropping is usually required. I know that the images from my camera wind up coming closest to 6 X 4.5, so I always have to take off at least 1/2 inch on that dimension that has to be 4 inches.
    I don't promise this will work, but I did notice that you said you did no cropping, and that could be the reason why you're not getting the print size you want.

  • Hp envy 4502 cutting off tops of photos

    When I try to print photos with my Envy 4502, the photos always are cut off at the top - anywhere from 3/4" to practically the entire photo.  The results are never consistant as to how much of the photo is cut off, but it is ALWAYS cut off.   I am using Corel Paint Shop Pro X6 (64-bit).  I am using glossy photo paper (230gsm, 10 mil) and have tried custom setting the margins, which doesn't seem to have any affect.  I set up the printer to photo paper, borderless off, and have tried using the best resolution and the normal resolution.  Nothing seems to help.  I am up to date with the driver and software for my printer and also for the Corel program.  I sure hope you can help.  I feel like I am wasting so much ink, which is so expensive that I can't afford to print out unacceptable prints.

    Welcome , I would like to see if I can help you with printing your photos correctly. I was wondering, if you save the photo and open it with another program - does it print properly? When you explain the photo is cut-off, does it look like the photo is shifted, cropped or just missing? I found several documents that talk about the print settings, you could see if any have a setting you haven't tried yet;Print Photos Saved on Your Computer (Windows)Printing Documents (Windows)Printing and Changing Print Settings (Windows)Changing Print Settings in Windows 8Changing Default Print Settings Please let me know if any of these steps resolved your issue, or if there is anything else I can do to help.  I look forward to hearing from you!  Thanks, 

  • Printing from LinuxMint-17 to HP7525 cuts-off top and bottom of pages, enforced 15mm margins

    I am printing a page from my bank (Fidelity), but there is an enforced margin of 15mm at the top and the bottom of the printed page.
    This cuts-off most of the form name at the top of the page and the most of the barcode at the bottom of the page.
    I find I have to "take screenshot" and import into "gimp".  Then crop the page and then print directly from "gimp" to print the entire form.  I have tried to teach this to my wife, to no avail.  I wish HP would fix the drivers to allow Linux to print inside the margins.  There is no problem printing from Windoz XP, but that is using an old hard drive and the computer runs dog slow and is ready to die.
    Again, HP please update the linux drivers so my brand new printer will work as it is supposed to.

    Hi @Jimec ,
    I have brought your issue to the appropriate team within HP. They will need to get information from you to look up your case details or serial number. Please look for a private message.
    If you are unfamiliar with how the forum's private message capability works, you can learn about it here.
    Thank you,
    George
    I work for HP

  • Printer cuts off top inch of page

    When I print something off the internet, for instance my bill from my cable provider, the top one inch is cut off which may contain important infromation.  Can I adjust something myself on the printer or do I need service?

    Hi 454mom, Welcome to the HP Forums! Some questions for you: What Operating System are you using Windows or Mac? What version? If you do not know the Operating System you are using, please visit this website. Whatsmyos.What happens when you print from another program? ie: NotePad (Windows) or TextEdit (Mac).Are you able to make copies with the printer? Copy Text or Mixed Documents. If you are using Windows please try our HP Print and Scan Doctor, and let me know what happens! Please see this post, Want Good Answers? Ask Good Questions, by , so you can get the most out of these forums.   Hope to hear from you soon!  “Please click the Thumbs up icon below to thank me for responding.”

  • HP4630 Cutting off top inch of page

    Every time I print, the printer cuts off the top inch of the page. I tried running the HP Print and Scan Doctor with no luck. Any ideas how to fix this?

    Hi 454mom, Welcome to the HP Forums! Some questions for you: What Operating System are you using Windows or Mac? What version? If you do not know the Operating System you are using, please visit this website. Whatsmyos.What happens when you print from another program? ie: NotePad (Windows) or TextEdit (Mac).Are you able to make copies with the printer? Copy Text or Mixed Documents. If you are using Windows please try our HP Print and Scan Doctor, and let me know what happens! Please see this post, Want Good Answers? Ask Good Questions, by , so you can get the most out of these forums.   Hope to hear from you soon!  “Please click the Thumbs up icon below to thank me for responding.”

  • Beginning of clip cut off

    Encore CS3.
    My DVD is a series of 7 music videos. I have a "Play all" button that is linked to a playlist of the 7 videos, as well as a button for each individual video.
    Both video files and encore preview play normally, but after burning DVD, the first second of each video is cut off. So you miss the opening note of each song. (happens either when watching the individual videos or the playlist) It is not real noticeable, but I would definitely like to solve the issue. I would prefer not to go back and re-render the video files with a second added on teh front, as it would be very time consuming and also difficult to fine-tune how much time to add and still have it play smoothly and appropriately.
    Any idea why this happens or how to fix it?
    thanks!

    Is each video a separate timeline?
    If so, then there may well be another answer to the problem - and you're not going to like it.
    Certain players are notorious for chopping off the first 18 frames of any timeline when accessing it directly, or from a chapter point.
    Denon immediately come to mind - I defy anyone to play a chapter selection from a Denon player & *not* lose the first 18 frames.
    Additionally, certain Dolby Digital decoders also chop off up to 2 seconds of audio. This is why Dolby Labs recommend that you always add 2 seconds of Videoblack & silence to every new timeline.
    Can you please give some more details on your project, it's setup, and exactly where both video & Audio start playback from with reference to the head of the file? If you are kicking into a new timeline immediately, this is bad & needs toi be re-encoded with the addition of Videoblack. If it is in a single timeline with chapter playlists as opposed to standard playlists, then you needto look to the player for the answer.
    Equally, Jeff may have got the answer.
    We need to know your project details to be certain

  • Picture viewer on my ipad cuts off tops of photo

    How can I stop the tops of my pictures getting cut off

    You're welcome. For future reference, you might want to spend a few minutes reading trhough the basics of the iPad. Here is a link to the IPad User's Guide. It could save you some time and frustration later. Certainly it doesn't answer all your questions, but it's a good start.

  • Why are my movie clips cut off when imported?

    I am importing movie clips from my flip camera and only half the clip is being imported. HELP!!!

    Are the episodes being shortened when you publish to a local folder and launch them in the browser as well as when published to the server? See this page under "Troubleshooting"...
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html
    If the local files are OK it would suggest the problem is on the server. Otherwise you need to troubleshoot iWeb.
    If the problem is files that are too large, you can reduce the sampling rate and/or convert to mono if the content is mostly speech rather than music.

  • Image printing problem with Photoshop and Lightroom specifically with 11X14 cuts off top of image and moves bottom border up. Windows 7 OS - Epson Printer is working properly.

    Have an unprecedented problem with printing 11X14 photos in both PS and Lightroom. The printer is operataing properly. Printing 81/2X11 correctly. Have double and triple checked all the printing settings and they are correct. Have checked with friends to no avail. This problem started yesterday. Widows 7 OS. Need help.

    You show the OS receiving an image from Photoshop, and the OS starting the Epson print driver and handing it part of the image, the driver connects to the printer, then the print driver fails. It looks like a bug in the Epson rasterizer, or the printer communication.
    You really need to talk to Epson.  Photoshop isn't involved in that error.

  • Cutting off top of photo

    I have created a movie and it is automatically cropping the photo when playing

    Select the photo and then choose the Rotate, Crop, Ken Burns Tool. Choose Fit for no crop. (but will letterbox)

  • Printing in Adobe Reader after exporting from InDesign gets cut-off

    I have exported a few documents form InDesign to PDF. When I print the documents, some parts get cut off (top section or bottom section) but there is still room on the paper. I'ts like the printer decides not to print those sections. I am printing on 5x7inch paper and all my documents show their sizes as 5x7inches.

    Turns out the issue was with Acrobat.
    See resolution here.
    http://forums.adobe.com/message/4496809#4496809

Maybe you are looking for