Transition blank frame issues

I just (today) upgraded to FCPX. I've been working on a wedding video (my own, to be precise) and I am basically enjoying it (thr program, and the video).
BUT!
I have added Several transitions during the movie, but there is one edit that has a Cross Dissolve transition, and I realized, after buring it to a DVD, that there is a single blank frame at the end of the effect (the cursor is sitting on the right edge of the grey box for the effect). I went back and stepped through the transition in question, and it is there. If I delete the transition, I can step through all the frames, and there are no blank frames. So I put in several different kinds of transitions, and they all do it.
I also noticed when stepping through the effect, that the single frame is actually dark green (it puts a single green dot in the vectorscope).
Has anyone experienced this, and is there a work  around? I need a transition here, bcause it would be a jarring transition without it (picture empty courtyard hard cut to courtyard with people, from a different angle.

Have occasionally had a similar problem. Finally found a single "ghost" frame hiding between the two clips I was trying to transition. Difficult to see - you have to zoom way, way in. Don't know where the "ghost" frame came from or how it got there but deleting it solves the problem.

Similar Messages

  • New issue with blank frame at end of coverted .avi

    Here is the project (scenario details):
    I have 2 .swf files. Both are 30 fps. Call them "chapter1" and "chapter2". Frame count is 3600 and 9600 respectfully. The last frame of "chapter1" contains the same image as the first frame of "chapter2" - basically I'm splitting up an overall animation so I can easier manage two Flash documents versus one large document. I used SoThink SWF Converter to create 2 .avi files. When I place these .avi files back to back on the same timeline in Encore, both .avi files have an extra blank frame at the end. This causes a black frame flicker between the end of "chapter1" and the beginning of "chapter2". Even if I drag the end of the .avi on the timeline to the left (as to trim the video track), I still see a black, empty frame at the end. I don't think the problem is with SoThink because I've even imported these .avi files into Sony Vegas and zoomed in all the way to the end of each video track and the very last frame of both files is as it should be. This leads me to believe the issue is with Encore somewhere. Also, initially the problem in Encore was the audio tracks were extending a few frames beyond the video track thus causing the back to back .avi files to align according to the audio track (which was leaving a few blank frames from the video track). I have included some screen shots of the last 3 frames of "chapter1" and the first frame of "chapter2". Hopefully the images below appear in progression as I attached them. Watch the timeline indicator. One frame before the end of "chapter1" is black. I've run out of troubleshooting ideas. I can't imagine this would have anything to do with the .swf being 30 fps and the Encore timeline being DV NTSC 29.97 fps.

    Stan - thanks for the reply...
    I don't recall what was covered when you posted the similar question earlier:
    Not much more than me explaining the flicker between 2 .avi files, and the only response was someone telling me to just have one .swf file. I'm not sure why some people's response is to "just do it a different way" instead of trying to figure out what is causing the issue.
    What does mediainfo or gspot show about the avis?
    I'm not sure which information you need, but I will attach what I was able to get out of the problematic .avi. Let me know if you need different information. This was the first time I used MediaInfo.
    Without knowing what to look for, I did notice a couple of lines that caught my eye. Line 25 mentions 30 fps frame rate (which I imagine is this .avi). Line 26 mentions 25 fps as the original fps (which makes me wonder if SoThink misread the .swf file as 25 fps instead of 30 fps) - not sure if I'm reading this right. Also, lines 45 & 52 mention a 26ms delay in audio (relative to video). Could that be why the audio track in Encore extends a couple of frames beyond the video track? Either way, Vegas is STILL showing the last frame as filled with the image. What does this report tell you? Maybe I should find a different way to export .swf to video. Is there anything else out there I might try (to see if the problem is SoThink)? Just looked at the .avi in PremierePro. The last frame looks fine. SoThink won't let me convert .avi to 29.97 fps.
    Could the fact I have a 30 fps .avi placed into a 29.97 fps project timeline, could this be the issue? I tested another .avi (from a movie), and the last frame appears correctly in Encore. Now this looks as if the issue is back to SoThink's conversion to 30 fps. I really should find a different .swf to video converter and retest. Again, thanks for any help (from anyone) in this and suggesting alternative video converters.
    *added - the .swf files contain tweened and frame by frame animation along with a streamed audio layer, but even when I completely remove the audio layer, the resulting .avi still shows up as a blank frame at the end. I thought at one point the fact I had a streaming layer of audio might have been forcing the frames in Flash to skip around, but this wasn't the case.

  • Blank Frame After Switching to Java 6

    I've been behind the times for quite a while, and I only just today switched from Java 5 to Java 6 (the latest revision). I have a couple little GUI programs I use occasionally for things. Nothing fancy. They just stick some text fields and buttons on the screen and spit out results into another text field. I haven't had any problems with them in the past.
    Now that I install Java 6, though, when the JFrame pops up, all I see is a big gray area on it. All the components are located directly on the JFrame's content pane, and they're layed out using SpringLayout. I've printed out the some sizes and locations, and they're all what they're supposed to be. The components are indeed visible. The JFrame is the right size (as opposed to a tiny title bar with nothing underneath when you forget to set the layout or something). The content pane's layout is the SpringLayout it's supposed to be. Any ideas on what's causing this or how to fix it?

    Sorry for the double post, but I don't see an edit field up on the first post.
    I should clarify. I actually have a few JPanels on the content pane, and the JPanels do have some components on them. Every single component has a non-zero size and is set to visible. Furthermore, everything is a lightweight component. Does anyone know what issues might be causing this?
    EDIT_:
    I have come up with a sample that reproduces my bug. (Yeesh. That was a pain.)
    import javax.swing.*;
    import java.awt.*;
    public class FrameTesting
         public static void main(String[] args)
              JFrame frame = new JFrame("Testing for blank");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Container cp = frame.getContentPane();
              JPanel row1 = buildRow(new JLabel("Test Label:"), new JTextField(8), new JButton("Test Button"));
              cp.add(row);
              frame.pack();
              frame.setVisible(true);
         private static Spring ZERO = Spring.constant(0);
         private static Spring FIVE = Spring.constant(5);
         private static JPanel buildRow(Component... components)
              JPanel row = new JPanel();
              SpringLayout layout = new SpringLayout();
              row.setLayout(layout);
              SpringLayout.Constraints cons;
              Spring nextX = ZERO;
              Spring east = ZERO; //Initialize so correct if components.length == 0
              Spring rowHeight = ZERO;
              for (Component c: components)
                   row.add(c);
                   cons = layout.getConstraints(c);
                   cons.setX(nextX);
                   cons.setY(ZERO);
                   east = Spring.sum(cons.getX(), cons.getWidth());
                   nextX = Spring.sum(east, FIVE); // The FIVE acts as a spacer.
                   rowHeight = Spring.max(rowHeight, cons.getHeight());
              cons = layout.getConstraints(row);
              cons.setWidth(east); //east is the east of the last Component
              cons.setHeight(rowHeight);
              return row;
    }If you'd like to convince yourself that the components actually have the correct sizes and positions, insert these two methods (and see below them)
         private static void printVisibility(Component c)
              printVisibility(c, "");
         private static void printVisibility(Component c, String indent)
              System.out.println(indent + c.getBounds() + " Visible: " + c.isVisible());
              if (c instanceof Container && ((Container)c).getComponentCount() > 0)
                   String nextIndent = indent + "   ";
                   for (Component c1: ((Container)c).getComponents())
                        printVisibility(c1, nextIndent);
         }...and insert this call at the end_ of the main method (after the pack()).
    printVisibility(cp);Based on what I've been doing trying to track down the bug, it looks like it's in the buildRow(Component...) method. Perhaps something has changed with SpringLayout?
    Edited by: Legend_Keeper on Oct 7, 2008 11:56 PM
    Fixed a stupid typo in the code, but it didn't fix the problem at hand.
    Edited by: Legend_Keeper on Oct 8, 2008 3:19 AM
    Okay, so now it looks like it might be a problem where the children are off of the JPanel's drawing area (in other words, outside its bounding box) This is the output from printVisibility:
    java.awt.Rectangle[x=0,y=0,width=263,height=26] Visible: true
       java.awt.Rectangle[x=0,y=0,width=263,height=26] Visible: true
          java.awt.Rectangle[x=26,y=26,width=62,height=26] Visible: true
          java.awt.Rectangle[x=67,y=26,width=92,height=26] Visible: true
          java.awt.Rectangle[x=164,y=26,width=99,height=26] Visible: trueAs you can see, the height of the panel (first indentation) is only 26, but for some reason the y positions of its children are 26. This is particularly strange since you can see I explicitly set the y Spring in the Constraints object to be 0. o_O Any help would be appreciated.
    Edited by: Legend_Keeper on Oct 8, 2008 6:07 AM

  • Dropped frames issue on a G5 2.7DP w/DV footage

    Let me first tell you my setup:
    G5 2.7 DP
    8 GB RAM
    WiebeTech TrayDock eSATA 4-bay drive enclosure w/Sonnet 4+4 eSATA PCI Card
    (2) 400 GB Seagate Barracudas in the enclosure RAIDed in a striped config using Apple's Disk Utility
    10.4
    FCP 5
    At seemingly random times, playback from the timeline will stutter and stop, thus throwing up the dropped frames dialog box. If I re-play from the same point, it will normally play. This has happened on several current projects in which I'm working in DV. I've also worked on a project in 8bit uncompressed using my Kona LS card with the same drives, and had the same error.
    I've had this issue ever since I setup this system--from the first install of FCP5 to the most recent update of 5.0.3, as well as from 10.4.2 to 10.4.3. I've tried turning off the internal Airport card in the G5, and quitting all other programs.
    There is a little utility that came with the Kona card to test data rate of your drives. I'm getting well over 100 MB/s Read, and slightly less write rates, so it seems like drive speed isn't an issue.
    What is the weak link here? WiebeTech was nice enough to send me a replacement eSATA PCI card, and the issue hasn't gone away, so it wasn't a bad card, although I guess there could be some flaw inherent in all of the cards.
    What other steps should I take to try and isolate/solve this problem? This is kind of embarrasing that I can't play DV footage on the timeline without the possibility of dropping frames--even when working with only one layer of video.
    I'm capturing video to the eSATA RAID, and my project files/graphics reside on an internal SATA drive in G5 (not the boot drive--I added another seagate 250 gb). Seems like there should be enough throughput in this thing to handle basic edits, but I'm beginning to have my doubts....
    Your ideas?????

    Clay,
    Regarding your statement "My thinking initially about my workflow was to not keep them on the same drive as the footage because my feeling is that the RAID isn't as "safe" as the single 250 GB drive I have inside the G5".
    I store all of my media, GFX and project files on whatever FW drive I happen to be using for a project. I NEVER have media for a specific project on two or more drives. For safety's sake, I ALWAYS have my Autosave Vault set to my internal drive, with a relatively high save rate (every 10 min). That way if the FW drive ever failed completely, I'd at least have a recent copy of the project file to work with (even if I have to redigitize the footage or redo the GFX). All I can say is keep all of your media (per project) on one drive - it's been kind of the Bible in this industry for years, and as far as I know it hasn't changed.
    As far as RAID's go, I'm no expert. But if I remember correctly, back in my old Avid days we also used to avoid having the media on different striped partitions - something else you may want to try if you're media is spread across a few stripes.
    It seems like I've run across more than a few posts here regarding the same problem happening on Dual 2.7's. You may want to do a more thorough search here to see what you come up with. All I can say is I'm running FCP 5.0.3 on a G5 Dual 2.0 with only 2.5 meg of RAM and have had no dropped frame issues.
    Try Matt's suggestion of playing some footage off of your boot drive (NOT recommended for everyday use!). If it works then it's got to be a problem with your RAID and not FCP.
    Good Luck!
    jeff

  • How to overcome "dropped frame" issues on my project

    Hey reader,
    I have a MacBook Pro 2.4GHz with 250GB hd (85GB free just now) running 10.4.11, FCE HD 3.5 (and QT 7.5.5) and using a Sony Handycam DCR-HC96 (which is works BEAUTIFULLY with iMovie 08 and 6 and is always used with Sony tapes) and I am not able to "capture" the tape content to my MacBook Pro because of the "dropped frame" issue.
    The camera is connected to the external hard drive chain via Firewire cable to the MacBook Pro and I was trying to capture to the internal hard drive. I am in the UK and am still struggling to get my head around the different frame rates but initially I got the dreaded "dropped frames were encountered during the last capture attempt" and it just wouldn't work, so I unselected the report dropped frames tab and abort capture in User Preferences as was suggested on here.
    Now I get "Capture encountered a problem reading data on your source tape. This could be due to a problem with the tape. Capture has been aborted and your clip has been saved" but the tape is fine (heads are also clean) as I had to (under time pressure, me) use iMovieHD 6 instead and it worked like a CHARM.
    What can I do to use this software?
    I KNOW I can import the iMovie footage but the disadvantage is the eternal rendering, I guess. I only ever used it once (because of its difficulties) and that was for pre-existing footage from iMovie and it was OK if not perfect. Just had to have a few hours extra for the constant rendering in preview...
    Should I try to capture to one of the external hard drives? I read that the internal might be a problem as it is busy with the operating system jobs.
    Please and thank you.

    I got some dropped frames last night and posted this before noticing your post:
    There can be a number of reasons for getting dropped frames during capture.
    Yesterday I videoed a relative's wedding (in HDV) and on getting home late I captured the footage into FCP 6.0.3 only to find in a couple of places I got an abort on dropped frames.
    This morning I decided to recapture and did so without a single dropped frame.
    Why ? ......... there are several possibilities.
    It could be that there was some physical problem with the tape or camera heads but I believe it was most likely caused by my camera's power supply.
    Last night I used the battery whilst this morning I plugged in the power connector.
    I feel that this provided a more constant supply of full power and helped prevent frames from being dropped. (The fact I was using FCP is immaterial as the dropped frames would almost certainly have also occurred in FCE).
    From now on I will always use the power connector during transfer to and from the camera.

  • Remove blank frame in swf file?

    Hi. I made a simple swf file in flash lite 1.1 with clock. But when i open it after publishing, it has that ''blank frame'', which is refreshing constantly and flikrers between my image and white background. Does anyone know how to remove it, and/or how to insert my image into the stage without being that blank frame visible? I use macromedia flash 8... In case someone wants to look at it, heres the code i used to create the clock, and my swf:                                                                                                                                                                                                                                                                                                

    Ok, i'll try to explain. When you open Macromedia Flash, it automatically creates white stage/document. But i dont need it, so i import my own image to the stage, then i make that clock and publish swf file. Then when i open swf it blinks between white frame and my image. So im pretty sure this white frame is that white stage, created at the beginning. I just dont know how to get rid of that whit stage before i open my image, or maybe i just import my image in the wrong way, i dont know. And, no, it doesnt affect the clock, its working fine, except that it never shows the right font (if i create clock with lets say Verdana, when i open swf its always Arial). About code, i found tutorial by google, that tutorial gives me that code. I have no idea how its made and whats wrong with it, im just a beginner and trying to learn all that stuff. I attached swf in my first post. Thank You.

  • MapViewer blank map issue

    This is for MapViewer Java API, using tile cache - and it's a hard to reproduce problem
    In our application sometimes the map will return blank with no layers. In the logs I'll see that the layers got queried and styles got applied and no apparent errors, but the returned image is blank with only the background color applied.
    When this happens just panning around /refreshing will cause the map to be rendered correctly, with minimal wait, as if the cached image was already there created from the previous map request.
    Has anyone seen this before ?
    Is there something I should be looking for in the logs that could shed some light on the cause of the problem ?
    Thanks.

    Hi User635830,
    firstly I like you "to out yourself" by going to "Your Control Panel" (upper right) --> Your Settings [edit] and edit your "user635830" and insert your name ! Thanks !
    Secondly for ur blank map issue I recommend to check the "Java Heap Size" settings, i.e. how much memory is assigned to your Mapviewer Java Application.
    Pls see [an explanation how |http://oracle-maps.blogspot.com/2008/05/more-memory.html] in my BLOG.
    Hope that solved the problem.
    Bernhard

  • Official comment from Apple about the drop frame issue?

    Is Apple going to firmware fix the skipping drop frame issue on the Apple tv?
    Or is it hardware related?
    Too many of us seem to have experienced this issue for it not to be addressed.
    It shouldn't be difficult to fix.
    My 1st gen atv was fine.
    I should have kept it.

    Hopefully it can be fixed. Seeing as Apple has not even acknowledged it I returned mine yesterday since I was coming up on my 30 day return deadline. At least this way I'm not stuck with a device that has a hardware issue.
    As of yesterday I have seen this issue on 10 different New Apple TV units, all on different HD sets, different network setups etc. Half of the owners had never noticed it. Two of those were adamant they did not have the problem and one of those still insisted they didn't after I spotted it multiple times. So while the issue has been present on 100% of the units I have seen, its not necessarily noticeable to everyone. I have noticed its much easier to spot on larger displays and when the display quality itself is higher, for example easier to spot on a higher quality 61" 1080p set than a lower quality 720p 26".
    If you have the option I would return the unit. Worse case is your don't have the unit, which is not functioning 1005 anyway, for a short period and then grab it again if the issues get addressed.

  • Potential workaround for green frame issue

    Hi,
    We are sorry for the the inconvenience caused by green frame issue on some laptop models.
    To work around the issue that some users are experiencing in the 1.6 version on specific machines, current suggestions is to add 3 more lines above the last two lines of shared.xml that is located in the C:\Users\your_username\AppData\Local\Packages\Microsoft.SkypeApp_kzf8qxf38zg5c\LocalState
    Note: Make sure Skype is closed (press ALT+F4 with the Skype app open) while you are modifying shared.xml file and make sure you save the changes in the file before starting Skype again.
    Also if you don't see AppData folder in C:\Users\your_username go to View tab and check Hidden items checkbox.
    </Lib>
    </config>
    should be replaced with 
    <Video>
    <EnableWideSupport>0</EnableWideSupport>
    </Video>
    </Lib>
    </config>
    Please try this and post if it solved your issue.
    Thank you in advance

    In addition to the above fix, we would be grateful if you were experiencing green video that you help us by doing this:
    Please go to Search, type dxdiag and run dxdiag.exe, go to Save All information and send generated DxDiag.txt file to kmudrovcic at hotmail.com.
    Thank you in advance

  • 720p60 P2/HD Dropped Frame Issue

    I'm having a dropped frame issue in FCP with some P2 720-60p footage. I can't get it to play through a sequence without freezing and giving me a warning. We've narrowed it down to an apparent processor issue. There are two tracks of audio (a stereo pair), and two tracks of music (again, a stereo pair). When we turn off the music, the sequence plays fine. But when the music goes back on, the sequence chokes. The funny thing is, I just did an HD project shot in 24p/n with several tracks of audio and several tracks of video and, aside from needing to render certain things, it played fine.
    Any ideas?
    Here are the specs:
    P2 footage originated in 720/60p
    AUDIO/VIDEO SETTINGS:
    Sequence Preset: DVCPro HD 720p60
    Video Playback: None (there isn't an output card for this computer).
    SEQUENCE SETINGS:
    Frame Size: 960x720 (HD 960x720 16:9)
    Pixel Aspect Ratio: HD (960x720)
    Editing Timebase: 59.94
    Compressor: DVCPro HD 720p60
    Audio Rate: 48 kHz
    Depth: 24
    Config: Default
    Any ideas here?
    Thanks,
    Tim Walton
    KVIE Public Television

    Then it's pointing at a throughput problem between the RAID and the server I'll guess. Trouble shooting that could be interesting. Can you move the media to a local drive?
    I'd also be interested to see what AJA's read/write speeds are on that RAID from your station...
    Post the gear between your mac and the server etc.. whose RAID is it, How is it formatted? Got a model number of each of the devices involved? Mac Server?
    Jerry
    You've selected the "Easy setup" for the format you're editing too, right?

  • Rotated image/frame issue

    I'm using Frame 8 and Acrobat 3D 8 and having issues with rotated images or frames. When printing to paper, the graphics are fine, but if I print to PDF, the top of the image is cropped. Text lines are visible but the top inch of the imported graphic is not. I wonder if this is a setting in Acrobat or a Frame issue.
    Any help would be appreciated.
    pat

    > I have tried using jpg
    Jpeg is a particularly bad format for screen captures. Tiff would be
    better; I don't know enough about png. Ages ago, in a much earlier
    version, I had trouble with large bitmaps printing properly in Frame
    (not exactly the same problem - they were printing fine for about 3/4 of
    the page and then it printed all "bunched up" and the bottom 1/4 didn't
    print). I started using EPS (bitmap eps, saved from Photoshop). This not
    only solved the problem, it had the added benefit of displaying much
    faster (because the eps files had only a low-res preview, so Frame
    didn't hesitate on each graphic to read in the whole file).
    I'd be happy to look at one of your pngs, see if it works here, but I'm
    on Frame 7 (just ordered Frame 9), so I'm not sure if my results would
    be relevant. Zip and send to kbenson at pegtype dot com
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

  • Why do I often get blank frames while acquiring images using external trigger under Windows 7?

    I'm using Windows 7, the latest LabVIEW and IMAQdx right now. The program was developed based on the example provided by LabVIEW. Everything ran well on Windows XP using internal trigger or external trigger. But when I wanted to run the program on a desktop with Win 7, I just cannot get the images continuously using the external trigger. Although I can get the images, the blank frames showed up very often. When I chose the internal trigger, there was no problem.
    Once I thought there might be something wrong with my program. But I tried the LabVIEW example to select the internal trigger mode and external trigger mode, it had the same problem.
    Is there anyone could give me some suggestions to solve this problem?
    Thanks!

    Hi Matt,
    The images are either "all blank" or "all good".
    The hardware setup is exactly the same.
    The blank images are not acquired periodically.
    Similar results were also seen when using MAX to control the camera.
    We found a solution to this problem. But we don't know how to explain it. When we were using the 5-Hz external trigger, we thought the video mode would not affect the image acquisition and therefore we left the video mode option as default (15 fps). But when we change the video mode to 7.5 fps or 30 fps, the problem disappeared. So now if we want to get rid of the blank frames while using the external trigger, we just need to choose the video mode other than 15 fps. Interestingly, when we switch back to the XP system, the camera also acquried inconsistent blank frames if we set the video mode at 15 fps.
    Thanks again for your help.
    Hubert 

  • Transitions and other issues

    Hi all,
    I am a recent convert ... trying to say goodbuy to my windows box.
    In the windows world, I'm a Sony Vegas user ... great product. Its easy to use, give the ability to use multiple audio and video tracks, and so on.
    As my new mac is a MacBook Pro, I haven't really been able to play with anything except iMovie ... waiting for universal versions of Final Cut Express (or maybe final cut pro).
    So far, I am more than underwhelmed. Its clunky, and not at all an easy program to use if you want some sort of control over how your clips are placed. Just try and edit the last clip in a couple minute video .... ****.
    Transitions suck.
    #1 ... Vegas is very intuitive ... if you have two files and you drag one over the other, it creates a "crossover fade" automatically. Doing this in iMovie results in one of the two clips being shortened (same complaint I have with GarageBand).
    #2 Then, when you have a bunch of clips put together, you have to drag each transition in between each clip ... not a bit deal, but if you make a mistake, and try to edit the transitions down the road, the timing gets all out of whack, and you end up with transisitions happening where there not supposed to, and no transitions where there should be one.
    So ya ... TRANSITIONS SUCK.
    Then, try sharing your creation with the vast majority of the computer world (sorry, but that means windows media, or something windows media can play easily without plugins).
    Being a MacBook Pro owner, I feel even more handicaped than your average convert, because there is even less software. Flip4Mac would be great .. but no universal binary.
    Anyway, I'm not really looking for answers (unless you have them) because I think its just a design flaw in iMovie, and I probably need to be using one of the more "pro" apps to do what I want, I'm just complaining.
    Hope your experience is better than mine.
    Blue

    #2 Then, when you have a bunch of clips put together, you have to drag each
    transition in between each clip ...
    There are many user interface features in iMovie that are pretty well hidden. Being able to apply a transition to multiple clips is one of them.
    Just select two clips, five clips or whatever, configure the Transition you want, then press the Add button. It's added to all the clips.
    If you want to change all those to a different Transition, select the same clips/transitions, configure the transition you want, and press the Update button.
    There are lots of editing tasks can be applied to a fistful of clips, not just one at a time.
    if you make a mistake, and try to edit the transitions down the road, the
    timing gets all out of whack,
    Some transitions behave differently than others, as they must for they do different things. Some borrow frames from a clip, some don't. When timing is important, planning ahead is necessary. Yes, changing a transition type later can cause timing issues.
    Just remember that if a change doesn't work, you can always revert the clip(s) to their original length, set them to the length you want, then add a different transition. That's the advantages of iMovie's non-destructive editing.
    Viewing the iMovie Tutorial can help discover how these things work.
    http://www.apple.com/ilife/tutorials/imovie/
    Karl

  • RTF Template Blank Spaces Issue

    Hi,
    I have one issue in the RTF File. I have developed templates for the dunning letter report.
    If i have only one line in the main body table and below this table i have some contents information for the customer to print in the report. The issue is there is blank spaces between the table and the contents when i am printing one or two invoices in the report.
    I want to remove this blank spaces and bring the contents information to print just below the table even it is sinle report or many records in the report.
    please guide me if any one come accross with this issue.
    with regards
    Ram

    Hi,
    Make sure there are no spaces before/after your form fields - put them on their own line with no spaces in between. On their own line they don't generate an extra line.
    If you are still having problems email me the xml and rtf ggr888 [AT] gmail [D0T] com
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • Win 7 Pro updates to Internet Explorer 11 every web page has blank frames and radio buttons. Updates show only IE11.

    This entry frame on your page has radio buttons, giving me some editing functions - Bold, Italic, Underline, Insert unordered List, Insert Ordered List, Insert Hyperlink, Remove Hyperlink, Insert HTML, etc... but
    I cannot see them.  Ever since updating Internet Explorer to ver 11, there is no going back to IE8.  Your Tech forum monitors keep rehashing the same links that do not answer this snafu.  Your Monitors suggest that the web sites are not running
    because they are not compatible with the newer versions of Internet Explorer - well, even Microsoft's websites?  When you create a new web interface, why would your coding team make it incompatible with your own company's sites? 
    The Monitors suggest our cards can't handle GPU and we should turn to software rendering.  My card is a GeForce GTX 50 TI and has, according to the manufacturer web site: "Microsoft®  DirectX® 11 Support
    DirectX 11 GPU with  Shader Model 5.0 support designed for ultra high performance in the new API’s  key graphics feature, GPU-accelerated tessellation."
    I have tried uninstalling and reinstalling IE and Microsoft must realize no customer wants to have the technical side string them along with pointless and futile misdirection to a garble of automatic chat responses that offer incomplete and unrelated fixes
    and then expect to gain points in the voting buttons that "this fixed my problem". 
    Microsoft: you are ignoring compatibility problems with your coding and pretending it is arises from hardware incompatibility or user stupidity.  Your code should be running seamlessly, should accommodate existing technologies, and be flexible enough
    to accept limitations of older hardware, older websites, and your monitors should march into Microsoft's development offices and demand answers ---- and fixes.  Has Microsoft gone into hiding when the latest technology show-piece isn't working for the
    rest of the world?  We do not exist in a research bubble.  We are here in the real world, with aging equipment and tight budgets, and we expect better from Microsoft.

    Hi ohernova,
    Sorry for the annoying issue you encountered and our develop team are trying our best to improve the performance of MS products, As I know, IE 11 was published after many technical tests, thus I suspect that it might be an individual case. I used to run
    IE 11 in my win7, and it works perfectly,    
    Here’re some test you may take into consideration:
    Make sure that you’ve installed all latest updates.
    Since your Monitors keeps suggesting that the web sites are not running because it’s a compatibility issue, I suggest you add one site to the compatibility view list for a test, (if you can find the settings in Tools>Compatibility view settings)
    Or click Win+F12, launch the F12 developer tool, click the last option, change the user agent string and document string to “10”, check whether the page can revert to normal.
    Regards
    Yolanda
    TechNet Community Support

Maybe you are looking for