Missing last frame of my movie when compressor makes QT movie???

Hello again everyone,
I was compressing movies just fine, trying to figure out what is best compression for my movie when all of a sudden compressor made my last frame of my movie disappear! It shows it in the preview window but not in the batch window preview, and not when it actually compresses. Do I have to re-capture, or add a frame in FCP one frame more to compensate???
Anyone...

Thanks for your response.
Forgive me, please, but what is ide?
I guess I should retrace steps a bit.
I created an fla of my primary clip. It's actually 1428 frames.
The last frame has the action: gotoAndPlay("loop start"); (I forgot I'd changed the frame number to a label)
Frame 290 on this fla timeline has the frame label: loop start
It works as expected when exported as .swf.
When I put the primary movie .swf inside of the preloader movie clip's .fla on the third frame of the content layer, and export that .fla as an .swf, that's when I notice the actionscript of the primary movie clip is gone.
Am I right in believing you can nest .swfs and keep actions?
Thank you again for your assistance.

Similar Messages

  • Quicktime doesn't show last frame of mpeg4 movies

    Why can't I see the last frame of a small mpeg4 videoloop in quicktime (w276 h276 30fr/s 11 frames)? The frame does exist when opening the file in editingsoftware.

    mpeg4 video is not frame accurate
    if you created this video add a few seconds of black to the end

  • How do I loop back from the first frame to the last frame?

    Hi there,
    I'm currently working on the framework for a product viewer.
    I have:
    a movie clip called 'viewer_mc' which contains the images take from different angles of the product. The actionscript generates a script on the last frame of this that returns it to frame 1.
    a button instance called 'autoplay_btn' which plays through the movie clip from whatever the current frame is, and stops on frame 1.
    a left and right button which serve to move the movie clip frame, to give the appearance that the product is rotating.
    I have succeeded in getting it to:
    have the movie clip play through once, return to frame 1 and stop.
    have the buttons return functions when held down, that move the frame in the movie clip using nextFrame and prevFrame commands. The right button successfully loops round to frame 1 and continues functioning to give the appearance of continual rotation.
    The last problem I am experiencing is getting the left button to act in the corresponding manner, going from the first frame to the last and continuing to function.
    Here is my actionscript so far:
    import flash.events.MouseEvent;
    var lastFrame:Number = viewer_mc.totalFrames;
    var thisFrame:Number = viewer_mc.currentFrame;
    var backFrame:Number = viewer_mc.currentFrame-1;
    1. This is the part that gets it to play through once before returning to the first frame. I think perhaps the problem I am experiencing is because of the 'viewer_mc.addFrameScript(lastFrame-1, toStart)' part i.e. although I'm holding the left button, its returning to this script and therefor getting bounced back immediately to the first frame. However, there is no flicker on the screen which you might expect if this were the case
    Note - as this is a generic product viewer which I can use as a template I am using lastFrame etc. as opposed to typing the value in
    function toStart (){
              viewer_mc.gotoAndStop(1);
    viewer_mc.addFrameScript(lastFrame-1, toStart);
    2. This is the functionality for the autoplay_btn that will play through a rotation / return the viewer to the initial (frontal) view of the product (frame 1).
    autoplay_btn.addEventListener(MouseEvent.MOUSE_DOWN, autoplay);
    function autoplay (ev:MouseEvent):void{
              var startFrame:Number = viewer_mc.currentFrame;
              viewer_mc.gotoAndPlay(startFrame);
    3. This is the functionality of the right button, which when held, moves the movie clip to the next frame via the 'rotateRight' function based on the 'nextFrame' command. It loops back round to the first frame due to the 'viewer_mc.addFrameScript(lastFrame-1, toStart)' script generated on the last frame of the movie clip, as is desired.
    right_btn.addEventListener(MouseEvent.MOUSE_DOWN, rightDown);
    function rightDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stoprightDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateRight); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stoprightDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateRight);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stoprightDown); //remove the listener for mouse up
    function rotateRight(e:Event):void {
        viewer_mc.nextFrame();
    4. This is the functionality of the left button, which when held, moves the movie clip to the prev frame via the 'rotateRight' function based on the 'prevFrame' command. And this is where the problem lies, as although it works for getting the movieclip back to frame 1, it does not loop round to the last frame and continue functioning, as is wanted.
    left_btn.addEventListener(MouseEvent.MOUSE_DOWN, leftDown);
    function leftDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stopleftDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateLeft); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stopleftDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateLeft);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stopleftDown); //remove the listener for mouse up
    I'd imagine it is probably my logic for this part that is really letting me down - I can do a similar function in actionscript 2, but am trying to learn actionscript 3 just to move with the times as it were, and struggling a bit. Still this is only a few days in!
    function rotateLeft(e:Event):void{
              if(thisFrame==1){
                        gotoAndStop(viewer_mc.totalFrames-1);
              } else{
              viewer_mc.prevFrame();
    Any help you can give me would be gratefully received. For an example of the effect I am trying to achieve with the autoplay button etc. I recommend:
    http://www.fender.com/basses/precision-bass/american-standard-precision-bass

    Thanks for getting back to me.
    Here's the code without my comments / explanations:
    import flash.events.MouseEvent;
    import flash.events.Event;
    var lastFrame:Number = viewer_mc.totalFrames;
    var thisFrame:Number = viewer_mc.currentFrame;
    var backFrame:Number = viewer_mc.currentFrame-1;
    function toStart (){
              viewer_mc.gotoAndStop(1);
    viewer_mc.addFrameScript(lastFrame-1, toStart);
    //last image of viewer_mc = first image of viewer_mc
    autoplay_btn.addEventListener(MouseEvent.MOUSE_DOWN, autoplay);
    function autoplay (ev:MouseEvent):void{
              var startFrame:Number = viewer_mc.currentFrame;
              viewer_mc.gotoAndPlay(startFrame);
    right_btn.addEventListener(MouseEvent.MOUSE_DOWN, rightDown);
    function rightDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stoprightDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateRight); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stoprightDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateRight);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stoprightDown); //remove the listener for mouse up
    function rotateRight(e:Event):void {
        viewer_mc.nextFrame();
    left_btn.addEventListener(MouseEvent.MOUSE_DOWN, leftDown);
    function leftDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stopleftDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateLeft);//while the mouse is down, run the tick function once every frame as per the project frame rate
    function stopleftDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateLeft);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stopleftDown); //remove the listener for mouse up
    function rotateLeft(e:Event):void{
              viewer_mc.prevFrame();
    The definition of the rotateLeft function is where the problem lies I think - I've taken out my poor attempts at doing the logic from the previous post. If I were to write it out long-hand the statement I want to write is: 'If you get to frame 1 and function rotateLeft is called go to the end of the movie clip'.
    The reason I have to use the viewer_mc.totalFrames-1 definition in the addFrameScript call is the addFrameScript function is 0 based i.e. if you want to call frame 1 of the movieclip you have to return a value of 0 in the addFrameScript (or such is my understanding of it anyway). As such, the last image in the movie clip will need to be the view obtained at 360 degree rotation, which is of course the same view as at 0 degree rotation. As a consequence, the last frame in the movie clip is superfluous for the user, but necessary for the overall effect to be achieved. And, in addition, to keep up the effect of a 360 degree view when the rotateLeft function is called it needs to skip that last frame to go to the lastFrame-1 (or totalframes-1), or in other words, the view of the image prior to completing the full 360 rotation.
    the variables thisFrame and lastFrame are defined at the very top of the script. Like you said they might need to be defined or called on again elsewhere.

  • When I send mi presentation to a Quick Movie, the program record only the last frame

    Why when I send mi presentation to a Quick Movie, the program record only the last frame, how I do to record the whole presentation of 52 frames

    I mean when I try to burn a CD.

  • Why my movie clip disappears when it reaches to last frame?

    Hi,
    I have a movie clip on stage which length is 600 frames. I put a actionscript 3 code "stop();)" at the end of movie. it stops when it reaches to 600 frames but it disappears from the stage as well. Which I don't want. It should stop animating but stay with last fram which has a welcome message.
    How can I do this?

    I should remain visible, so you must be overstepping the last frame or the movieclip in some way.  Maybe the timeline your animation is in does not go as far as the timeline.

  • FCP5 removes last frame from any 23.98fps movie

    I'm having an issue with 23.98fps Quicktimes in FCP. When I play the clip in Quicktime, the frame count is correct. When the same movie is opened in the FCP viewer or dropped in a bin, FCP removes the last frame. For example, say I have 2 clips, identical in every way except for frame rate:
    Clip A - 720p Photo-JPEG 120 frames 24fps
    Clip B - 720p Photo-JPEG 120 frames 23.98fps
    In QT7, both clips play correctly, contain all frames, and are reported in the info window to be 5 seconds exactly. In FCP Clip A, plays correctly, contains all frames, and has a reported length of 00:00:05:00. Clip B is missing the last frame and has a reported length of 00:00:04:23.
    I have done this same test with a 480 frame clip as well with the same results. QT7 reports 20 seconds, FCP reports 00:00:19:23.
    I have had this problem with quicktime movies from different sources as well, not just QT movies I have created. It is imperative that I find out what is causing this issue. If anyone can offer any suggestions/answers at all, it would be much appreciated.
    PowerMac Dual G5   Mac OS X (10.4)  

    hello anthony.
    i can't offer any explanation, but i can offer what might be a work around. i am assuming you need to work at 23.98 and that you are receiving exact frame count files.
    if you receive files @ 24fps which are correct, try using cinema tools to "conform" these files to 23.98 ... just open the file from within cinema tools and hit the conform button. i'd be interested to know if these conformed files maintain the correct frame count.
    a guess might be that the export or transcode process might be the source of the error.
    R.

  • Movie after playing doesn't stop at the last frame.

    Movie after playing doesn't stop at the last frame but goes back to frame one. Movie stops normaly when played on iMac but makes trouble when placed in the iBooks Author. That's not eve problem of looping (repeat none). Help, this makes me mad.

    laura4life
    You have fragments (leftovers) beyond the end of the Timeline content that you intended.
    I am going from an Elements Windows workspace, so please translate into Mac accordingly.
    Expand your Timeline content to the maximum with the Zoom Out Zoom In slider above the Timeline.
    Press the End key of the computer keyboard. That should take the Timeline Indicator to the fragments which must be deleted.
    Explore all the tracks in that area.
    Repeat the End key press until the Timeline Indicator stops at the end of the intended Timeline and not some 3 hours afterward.
    What you find at "end of track" could be fragments or files that you moved out of the way of the active project and forgot were there.
    The fragments typically present as thin vertical black lines scattered about the tracks.
    Please let us know the outcome.
    Thank you.
    ATR

  • Can't get flash video to stop looping even when i use stop(); in last frame

    I have only just started using Flash so im sure im doing this wrong but in tutorials i have watched to stop the video looping you put stop(); in the last frame. I have done that but the video still loops... Anyone know where i am going wrong?

    If the question is related to Adobe Presenter, I would recommend associating the SWF with the presentation play bar. This will allow the player to control the playback of the SWF and can move on to the next slide when the amount of silence (ideally equal to the duration of the SWF) has passed.
    If this is a question related to Flash, I'll move it to the correct forum.

  • Urgent: Gif animation shows only the last frame when reloaded

    I use ImageIcon to show gif animations on screen. I want to use only non-looping gif animation files.
    Always when I show a gif animation for the first time it runs correctly through all the frames.
    However when reloading later the same gif animation only the last frame appears. I want to see all the frames of the animation, not only the last frame.
    So for the first showing of the animation this works well:
         icon = new ImageIcon("first_animation.gif");
           label = new JLabel();
           label.setIcon(icon);Then I show another animation and also it works well:
           icon2 = new ImageIcon("second_animation.gif");
           label.setIcon(icon2);Now I would like to show the first animation again but only the last frame of that first animation appears on screen:
    label.setIcon(icon);And even this alternative way to refresh does not work:
           icon = new ImageIcon("first_animation.gif");
           label.setIcon(icon);
    How can I reload the first animation again so that it shows all the frames not only the last frame???
    I have tried for ex. commands updateUI(); and setImageObserver but they don't seem to help.
    I am only a novice so...
    Please I would really appreciate your detailed advice what lines I should rewrite in my code and how?
    Thank you very much!!

    By flagging your question "urgent", you are implying that either your question is more important than other people's questions, or your time is more valuable than mine (or someone else's answering questions here). Both are not true.

  • Premiere Pro CS6 - Keeping last frame when using Razor Tool - Help!

    Hi Everyone,
    A amateur editor here, I've had a bit of an issue after my cat decide to walk across my keyboard when Premiere was open!
    Now every time I try and cut a clip with the razor tool it keeps the last frame and adds it on to the end. I imagine there's a shortcut to switch this off? But I have no idea what the shortcut is called...
    There is now a beige strip after the selector, which wasn't there before! Does anyone know what my cat has managed to do and how I can turn it off?
    Thanks so much!
    Here's a screenshot as it's hard to describe...

    The beige or yellow stripe has always been there.
    You can only see it when zoomed in.
    It represents the duration of 1 frame.
    In this case you are on the last frame of the left clip.
    Cannot turn it off.

  • DataLine replay the last frames when I dont write in it

    Hi,
    I have an App who receives bytes[] from UDP Packets, and write in a dataLine. The problem is clear, when I dont receive any packets, dataLine replay the last frames:
    This is the code:
    AudioFormat audioFormat = new AudioFormat(8000, 16, 1, true, false);
    DataLine.Info info = new DataLine.Info(SourceDataLine.class,
                        audioFormat);
    SourceDataLine dataLine = null;
    dataLine = (SourceDataLine) AudioSystem
                             .getLine(info);
    dataLine.open(audioFormat);
    dataLine.start();
    while(true)
    if ( receive Sound )                    
              decode_G729 = gd.G729Decode(soundReceived);
              dataLine.write(decode_G729, 0, decode_G729.length);
    System.out.println(dataLine.getLongFramePosition());                    
    }This is the output of the frames:
    Start receiving sound:
    7680
    7680
    7680
    7440
    7600
    7760
    7840
    8080
    8160
    8160
    8160 Stop receiving sound in this moment:
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    *4320
    4560
    5040
    5280
    5680
    5920
    7120
    7520
    7840
    8160*
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    8160
    You can see that??? In some moment, when Im not writing in the DataLine, the FramePosition get back to an earlier position, and in some cases, replay the last moment of the sounds!!
    Is really annoying, and I dont know how to fix it.
    Any help would be appreciated.

    AntonioMG wrote:
    My intention was to put a code as clear as possible, I think theres no need to be rude...If you're asking for someone to help you find a bug in your code, you don't rip out sections of your code that could contain the bug you're looking for for the sake of clarity. It's a waste of everyone's time, and frankly, makes you look like a troll.
    Giving the impression of wasting my time will result in me being rude to you. Sorry for the misunderstanding...
    That said, try the following code and report back the results...
    AudioFormat audioFormat = new AudioFormat(8000, 16, 1, true, false);
    DataLine.Info info = new DataLine.Info(SourceDataLine.class,
                        audioFormat);
    SourceDataLine dataLine = null;
    dataLine = (SourceDataLine) AudioSystem
                             .getLine(info);
    dataLine.open(audioFormat);
    dataLine.start();
    while(true) {
        socket.receive(packet);
        RTPPacket rtpPacket = new RTPPacket(packet.getData() , packet.getLength());
        if ( rtpPacket.getPayloadType() == 18 && rtpPacket.getPayloadLength() == 20) {
         // Ensure the line is started
         dataLine.start();
            decode_G729 = gd.G729Decode(soundReceived);
            dataLine.write(decode_G729, 0, decode_G729.length);
        // Stop the line if it's inactive
        if (! dataLine.isActive() {
            if (dataLine.isRunning()) {
                dataLine.stop();
        System.out.println(dataLine.getLongFramePosition());                    
    }

  • In imovie 11, with an iMac, latest Mountain Lion, sometimes I insert a still and when I playback, the previous image freezes the last frame and holds during the duration I set for the still, skips both transitions, and jumps to the next clip. why?

    in imovie 11, with an iMac, latest Mountain Lion, sometimes I insert a still and when I playback, the previous image freezes the last frame and holds during the duration I set for the still, skips both transitions, and jumps to the next clip. why?

    in imovie 11, with an iMac, latest Mountain Lion, sometimes I insert a still and when I playback, the previous image freezes the last frame and holds during the duration I set for the still, skips both transitions, and jumps to the next clip. why?

  • Blu-ray flashing up last frame when navigating

    hi people
    I've got a small but rather ugly problem with a blu-ray disc i'm authoring.
    When navigating to and from the main menu the last frame of the previous timeline or menu flashes up. So for example I'm watching timeline A and I hit the menu button on the remote the picture jumps to black for half a second, then flashes the last frame of timeline A for 5 frames and then proceeds to the menu. The same thing happens the other way, i'm browsing a menu and when I activate a button the screen jumps to black, then flashes up the menu again for 5 frames then starts playing the selected timeline.
    The navigation works but the experience is super clumsy. Is there any way to smooth this transition. I don't mind the jumps, I just don't want the secondary flash of the last frame.
    I should add that these are static menus with only a couple of buttons and very simple navigation. Playing on a Sony player, Sony burner, authored using Encore on a Mac.
    Any suggestions greatly appreciated.
    cheers../daniel

    Hi,
    I'm quite sure that Encore is doing some "quirks" with BlueRay.
    I have everytime a 2/3 second freezing time when Buttons appears after looping time.
    Probably due to bit differences that various BR player have. (I have a Sony).
    I'm also quite sure you'll not have this problem if you burn a DVD (as I did and noticed).
    Sorry, no ideas to help you but please post solutions in case you'll get.
    Ciao
    Giorgio

  • First and last frame disappearing off every clip

    Hi,
    Every clip I import in Final cut pro 6.0 loses its first and last frame.
    The clips I import are in photoJpeg / 24p (verified with the -get info- of Quicktime Pro), but once in FCP they are marked as 23.98 ?!?!
    In the browser the info of the clip says 23.98 and also indicates that the clip is 2 frames shorter.
    When opened in the viewer the first and last frames are really missing.
    It gets worse, when a clip is longer (ie: 500 frames), the first and last TWO frames are missing ?!?!
    Am I alone with this problem?
    Please help!!!

    How are these clips getting created? Quicktime does not necessarily associate each frame with a certain TC, and the frame rate is dynamically calculated, rather than simply being hard-coded into the QT metadata. This results in Quicktimes that get created outside of FCP often showing up with different frame rates than you expect.
    You might try exporting movies back out of FCP, ether from the master clips, or from sequences. I have noticed that when I export from a sequence at the correct frame rate, the missing frames come back. Other tools that might come in handy are Compressor for converting batches of files to QTs that FCP will like better, and Cinema Tools for conforming clips to a particular frame rate (like changing them from 24 to 23.98)
    You might also try Dumpster which is a bare-bones utility that will allow you to view and edit the QT metadata directly.
    Try some experiments and post back and let us know what you find out. I found that placing the clips in sequences at the proper frame rate and exporting new movie files worked well, but I have seen timing and frame rate shifts with some clips using this method...
    Hope this helps -
    Max Average

  • Transitions double 1st frame/drop last frame: a solution

    I have found that Transitions in iMovie 5 are problematic. The first frame in a Transition doubles and the last frame drops out. This is not noticeable in a slideshow but can be very noticeable in an exported video.
    Transitions cannot be edited frame by frame unless one exports video out to a camera and then imports it back into iMovie. The original clips and transitions are now seamless clips. One can delete extra frames and then find and import the missing frames from original sources. HOWEVER, this process is incredibly frustrating and time consuming.
    THIS IS WHERE THINGS GET INTERESTING.
    To avoid the above, I thought I would add textless Titles over a few key clips and transitions where the glitching is most obvious. I had noticed that Titles longer than the clip they were inserted into, merge together the clip with its transition and following clip.
    i.e.,
    1. DEselect 'Over black' in the titles window.
    2. Select a title format and then a length longer than the 'glitched' transition.
    3. Split the clip so that the Title can be inserted.
    4. Insert a TEXTLESS Title that spands the clip, transition and into the next clip.
    5. Then edit out duplicate frames and insert missing frames from the the now 'single' clip.
    STILL just a piecemeal. STILL labour intensive.
    THIS IS WHERE IT GETS MORE INTERESTING.
    I tested this on a couple of clips and, LO AND BEHOLD, 'Title-merging' a clip with its transition and following clip results in the duplicated first frame of the transition DISAPPEARING and the previously dropped frame of the transition, REAPPEARING. A fix.
    One could blanket a video with long textless Titles (i.e., 45 seconds at a time with Rolling Credits) to fix the transition glitches.
    I know that this is not a great solution, but it does allow me to export video with the quality I need.
    Is there a better solution? (I find it ironic that years later, iMovie 2.1.2 is still, for me, the most successful of all the iMovie applications.)

    the duplicated and dropped frames move to the beginning and end of the added short (4 seconds, for example) texless title. Using a longer title (10 seconds, for example) fixed also this.
    if I understand your original reply correctly, it is important that the blanket transition ends in the middle of a clip and not a transition.
    In my tests I used a blanket title (did you invent this descriptive word?!) that spans some of the previous clip (I split it 1-2 seconds before the transition so I could add the blanket title), the transition and some (1-2 seconds) of the next clip.
    If it ends in a transition, the transition plays and then the ORIGINAL clip plays, duplicating the first part of the clip.
    I didn't quite follow. I just tried this with a 30 frame transition. Then I added a 1:15 blanket title 1:00 before the transition (so the blanket title ended in the middle of the transition). Result: The first frame of the blanket titles was duplicated and the last frame of the blanket title was dropped. Otherwise it played as expected.
    shift select the clips to establish a total length of the video clips and them add a title that ends just inside the last clip.
    Yes, I did just that to measure how long a title was needed. In my tests it seemed that it was important that the blanket title wasn't very short (<4 seconds) because then the problem frames were just moved to affect the title. Using a longer blanket title (10 seconds) seemed to fix the problem for both the transition AND the blanket title.
    <div class="jive-quote">With a textless title blanketing an entire video, my COMPRESSION TIME to Quicktime is incredibly shortened (1/3 to 1/2 the time).
    That's interesting. I've noticed that simple projects (i.e. not much cuts) export faster than real time to Full Quality .dv. But complex projects take MUCH longer to export as .dv. AFAIR this didn't matter in iMovie 1-4. Maybe the blanket title simplifies the relevant parts of the project?
    [sigh] I wish we didn't need to be aware of the plethora of obscure gotchas and workarounds like this. I don't expect there to be an iMovie HD 5 update anymore. I guess some bugs will be fixed and some brand new bugs will be introduced in v6.
    The same thing happened with iMovie 4 bugs. ...So this time I thought to quickly gather AND report all iMovie 5 bugs to Apple so they could quickly fix them during the first months. ...but it seems that the iLife team just isn't granted enough resources to fix them. Many known old bugs are again just described in the knowledgebase articles.

Maybe you are looking for

  • Virtual JDBC connections

    I have created a connection pool with an initial cap 1, max cap 1 using the admin console. My application 1) opens a connection1, 2) gets a resultset1, 3) loops through the resultset1, 4) for every value in resultset1 the application opens another co

  • Cannot view web server logs in Server Admin

    It has been a terrible day. First, the interesting part: I woke up to find that 25 sites that are hosted on an XServe G5 running OS X Server 10.3.9 had been defaced. As the part-time, unpaid admin of this server, it was my responsibility to track dow

  • Special functions in output type

    Hi For all the output types I need to use transmission medium 8( Special function).Kindly let me know what is purpose of special functions and where to see output of the form . Points will be rewarded.

  • Desk Top Folder Shown in Red.  Why?

    On the file list in Finder, the Desktop file folder is shown in Red.  What does the red color mean.  I was reorganising some floer and downloading some iTunes musoc and it happened.  IThe desktop folder is in my user folder. Thanks in advance from a

  • Question about creating and updating new columns in a table

    Hi, I have a couple of questions that would love some answers to Please bear in min that questions relate to datawarehouse / Just large tables with say about 50 million records 1) How do you create new columns in a big table 2) how do you update the