Error-1 and error -50 (frame 833)

What is the solution of the problem of error-1 and error -50 (frame 833)

If you're running Mavericks, is FCPX up to date?
Russ

Similar Messages

  • TS1702 ?Some of my applications have been saying I need the latest version of Adoebe Flash Player.  When I try to download it I get the following error message:  'Frame Load interrupted' and the installation stops.  Any suggestions

    Some of my applications have been saying I need the latest version of Adoebe Flash Player.  When I try to download it I get the following error message:  'Frame Load interrupted' and the installation stops.  Any suggestions?

    You can only use apps downloaded from the App store, not via a browser. There is no Flash for any iOS device including the iPod.

  • GDI+ Generic Error, multple frame tiff, multiple image formats

    This is a question I posted on stack exchange, but have not gotten any answers.  This is occurring on Windows Server 2008 R2 systems.
    I have seen many issues involving the GDI+ Generic Error, but I have not seen this particular matter raised before. We are consistently getting the error, on Windows systems other than Windows 8, when attempting to read (System.Drawing.Image.SelectActiveFrame)
    a multiple-frame tiff that includes frames in mixed Photometric Interpretation formats. That is to say, the file includes both RGB color and min-is-white formats, with corresponding differences in the Bits/Sample and Samples/Pixel frame parameters. The error
    is consistently raising as soon as a frame is encountered with a format that is different from that of the first frame.
    // Convert File from .tiff to .PDF
    static void ConvertFile(string file, string pdffilename)
    string localMessage = string.Empty;
    try
    //if it's a PDF Just renamed it and continue
    if (file.ToLower().Contains(".pdf"))
    File.Copy(file, pdffilename);
    return;
    // If file exists return
    if (File.Exists(pdffilename)) { return; }
    using (var stream = new FileStream(pdffilename, FileMode.Create))
    localMessage = "01";
    var document = new iTextSharp.text.Document();
    localMessage = "01";
    var writer = iTextSharp.text.pdf.PdfWriter.GetInstance(document, stream);
    localMessage = "02";
    var bm = Bitmap.FromFile(file);
    localMessage = "03";
    var total = bm.GetFrameCount(FrameDimension.Page);
    localMessage = "04";
    document.Open();
    //iTextSharp.text.pdf.PdfContentByte cb = writer.DirectContent;
    localMessage = "05";
    iTextSharp.text.Image img = null;
    for (var currentframe = 0; currentframe < total; ++currentframe)
    localMessage = "06=>" + currentframe.ToString();
    bm.SelectActiveFrame(FrameDimension.Page, currentframe);
    localMessage = "07=>" + currentframe.ToString();
    img = iTextSharp.text.Image.GetInstance(bm, ImageFormat.Bmp);
    localMessage = "08=>" + currentframe.ToString();
    img.ScalePercent(72f / img.DpiX * 100);
    localMessage = "09=>" + currentframe.ToString();
    img.SetAbsolutePosition(0, 0);
    localMessage = "10=>" + currentframe.ToString();
    iTextSharp.text.Rectangle pageRect = new iTextSharp.text.Rectangle(0, 0, img.ScaledWidth, img.ScaledHeight);
    localMessage = "11=>" + currentframe.ToString();
    document.SetPageSize(pageRect);
    localMessage = "12=>" + currentframe.ToString();
    document.NewPage();
    localMessage = "13=>" + currentframe.ToString();
    document.Add(img);
    localMessage = "14";
    bm.Dispose();
    localMessage = "15";
    document.Close();
    localMessage = "16";
    stream.Close();
    catch (Exception exception)
    string msg = exception.Message + "\r\n" +
    "Coversion Error--\r\n" +
    "\tinput file name: " + file + "\r\n" +
    "\toutput file name: " + pdffilename + "\r\n" +
    "\tlocal message" + localMessage + "\r\n";
    Console.WriteLine(msg);
    SaveError(msg);
    throw;
    The "local message" is always "06=>n", where n is the 0-based index of the frame that transitions to a new format.
    The error occurs whether the transition is from black and white to color, or color to black and white.  The issue does not seem to occur on Windows 8 boxes, but we only have W8 developer PCs, not servers.  It is a production process and needs to
    be deployed on a server.
    Does anyone know why this is happening or how to fix it?

    Hi,
    For the GDI related issue, i think you may ask in the following forums:
    http://forums.asp.net/150.aspx/1?System+Drawing+GDI+
    Thanks for your understanding.
    Regards.
    Vivian Wang

  • Why script show error in Frame 1 ?

    hi , i use a dynamic scrollbar
    i put my scrollbar in movieclip : mc
    and i have 2 frame that in every of them i have one scrollbar ...
    i use this script For enabling scrollbar in frame 2  :
    _scrollbar = new Scrollbar();
    _scrollbar.init(mc.content, mc.contentMask, mc.track, mc.slider);
    but for my scrollbar 2 that i have : content1 , contentMask1, track1, slider1 and in frame 2 when i use this script :
    _scrollbar = new Scrollbar();
    _scrollbar.init(mc.content1,mc.contentMask1,mc.track1,mc.slider1);
    i get error and my scollbar in frame 2 not work :
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at com.freeactionscript::Scrollbar/init()[C:\\scroller-dynamic-scrollbar-v2\com\freeactionsc ript\Scrollbar.as:53]
        at Mainver/frame1()[Mainver::frame1:2]
    the weired things is when i move the scrollbar content of frame 2 to frame 1 ( both my scroll in frame1 now ) the is no problem !!  and all think work !!
    is there any tip to say this script load in Frame 2 ??!
    ( remeber i put my script in frame 1 of my main stage and no script for scrollbar in mc movie clip exist )

    Thanks Kglad , if i cant solve it with script i must use your idea and it works for me.
    and thanks amy for taking a look to my problem , well i`m weak in AS3
    i dont get your point and find where if (_contentMask) {  ..........  must be put  !!
    i write the full script of this scrollbar and hope you can help me :
    main.As
    * Scrollbar
    * VERSION: 2.0
    * DATE: 5/04/2011
    * AS3
    * UPDATES AND DOCUMENTATION AT: http://www.FreeActionScript.com
    package 
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import com.freeactionscript.Scrollbar;
        public class Mainver extends MovieClip
            // assets on stage
            public var content:MovieClip;
            public var contentMask:MovieClip;
            public var track:MovieClip;
            public var slider:MovieClip;
            // vars
            private var _scrollbar:Scrollbar;
            private var _scrollbar1:Scrollbar;
             * Constructor
            public function Mainver()
                _scrollbar = new Scrollbar();
                _scrollbar.init(mc.content, mc.contentMask, mc.track, mc.slider);
    and in scrollbar.as :
    * Scrollbar
    * VERSION: 2.0
    * DATE: 5/04/2011
    * AS3
    * UPDATES AND DOCUMENTATION AT: http://www.FreeActionScript.com
    package com.freeactionscript
        import flash.display.MovieClip;
        import flash.display.Sprite;
        import flash.display.Stage;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.geom.Rectangle;
        import com.greensock.TweenLite;
        import com.greensock.easing.*;
        public class Scrollbar extends Sprite
            // scrollbar assets
            private var _content:MovieClip;
            private var _contentMask:MovieClip;
            private var _slider:MovieClip;
            private var _track:MovieClip;
            // vars
            private var _scrollSpeed:Number = .5; // seconds to movie to new position
            private var _scrollWheelSpeed:int = 10; // pixels per tick
            private var _root:Stage;
             * Initialize method
             * @param    $content        Main content container
             * @param    $contentMask    Content mask. Masking is set dynamically. Do not set mask on the timeline.
             * @param    $track            The track of the scrollbar
             * @param    $slider            The slider (dragger)
             * @param    $scrollSpeed    The speed at which the content movies
            public function init($content:MovieClip, $contentMask:MovieClip, $track:MovieClip, $slider:MovieClip, $scrollSpeed:Number = .5):void
                // save passed objects and variables
                _content = $content;
                _contentMask = $contentMask;
                _slider = $slider;
                _track = $track;
                _scrollSpeed = $scrollSpeed;
                // give content a mask
                _content.mask = _contentMask;
                // save a reference to the stage
                _root = _slider.parent.stage;   
                // hide scrollbar assets for now
                _slider.visible = false;
                _track.visible = false;
                // enable scrollbar interactivity
                enable();
             * Enable Scrollbar interaction
            public function enable():void
                // make dragger a button
                _slider.buttonMode = true;
                // add event listeners
                _slider.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDownHandler);
                _root.addEventListener(MouseEvent.MOUSE_WHEEL, onMouseWheelHandler);
                _root.stage.addEventListener(MouseEvent.MOUSE_UP, onMouseUpHandler);
                // check if scrollbar is needed
                verifyHeight();
             * Disable Scrollbar interaction
            public function disable():void
                // make dragger not a button
                _slider.buttonMode = false;
                // remove event listeners
                _slider.removeEventListener(MouseEvent.MOUSE_DOWN, onMouseDownHandler);
                _root.removeEventListener(MouseEvent.MOUSE_WHEEL, onMouseWheelHandler);
                _root.removeEventListener(MouseEvent.MOUSE_UP, onMouseUpHandler);
             * On mouse wheel handler
             * @param    $event    Takes MouseEvent argument
            private function onMouseWheelHandler($event:MouseEvent):void
                // define parameters
                var scrollDistance:int = $event.delta;
                var minY:int = _track.y;
                var maxY:int = _track.height + _track.y - _slider.height;
                // check if there's room to scroll
                if ((scrollDistance > 0 && _slider.y <= maxY) ||
                    (scrollDistance < 0 && _slider.y >= minY))
                    // move dragger
                    _slider.y = _slider.y - (scrollDistance * _scrollWheelSpeed);
                    // make sure we don't come out of our boundries
                    if (_slider.y < minY)
                        _slider.y = minY;
                    else if (_slider.y > maxY)
                        _slider.y = maxY;
                    // move content
                    updateContentPosition();
             * On mouse down handler
             * @param    $event    Takes MouseEvent argument
            private function onMouseDownHandler($event:MouseEvent):void
                var newRect:Rectangle = new Rectangle(_track.x, _track.y,
                                                      0, _track.height - _slider.height);
                _slider.startDrag(false, newRect);
                _root.addEventListener(Event.ENTER_FRAME, updateContentPosition);
             * On mouse up handler
             * @param    $event    Takes MouseEvent argument
            private function onMouseUpHandler($event:MouseEvent):void
                _slider.stopDrag();
                if (_root != null)
                    _root.removeEventListener(Event.ENTER_FRAME, updateContentPosition);
             * Update content position
             * @param    $event    Takes optional Event argument
            private function updateContentPosition($event:Event = null):void
                var _scrollPercent:Number =  100 / (_track.height - _slider.height)  * ( _slider.y - _track.y);
                var newContentY:Number = _contentMask.y + (_contentMask.height - _content.height) / 100 * _scrollPercent;
                TweenLite.to(_content, _scrollSpeed, {y:newContentY, ease:Cubic.easeOut});
             * Position Slider based on where the content is.
             * Use this function if content is being moved by anything outside the scrollbar class
            public function updateSliderPosition():void
                var contentPercent:Number = Math.abs((_content.y - _contentMask.y) / (_content.height - _contentMask.height) * 100);
                var newDraggerY:int = (contentPercent / 100 * (_track.height - _slider.height)) + _track.y;
                _slider.y = newDraggerY;
             * Check if scrollbar is necessary
            public function verifyHeight():void
                if ( _contentMask.height >= _content.height )
                    _slider.visible = false;
                    _track.visible = false;
                else
                    _slider.visible = true;
                    _track.visible = true;
             * Garbage collection method
            public function destroy():void
                // check if dragger is being dragged
                if (_root.hasEventListener(Event.ENTER_FRAME))
                    _slider.stopDrag();
                    _root.removeEventListener(Event.ENTER_FRAME, updateContentPosition)
                // disable interaction
                disable();
    i hope you can tell me where and how your code must be put to fix reading only frame1 and work with frame 2 too !!

  • Page Not Found error using FRAMES

    Hi,
    I am using servlets on Unix/Tomcat server. I am getting a 'Page Not Found' error on IE only (it works fine on Netscape) in one of the servlet applications for 'dial up' and 'cable modem' connection. There is no error, if you let it sit there for a while and try it again.
    This particular application is working fine on IE with LAN connection.
    In this servlet, I am using 'post' method for query string. And this same servlet invoking two frames (calling two other servlets) using 'get' method to retrive the information and displaying in frames.
    Help is greatly appreciated, if anyone knows the solution.
    Thanks
    Nkumar

    Thanks for the response. I am using synchronized for all three servlets. The first servlet calls two other servlets as follows:
    public synchronized void doPost{HttpServletRequest      request, HttpServletResponse     response
      ) throws ServletException, IOException
    Is it right?
    Kumar
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • WebAS 6.20: startuperror :  ID000546: Error instancing frame class of a cor

    Hello,
          Please read the entire posting before you answer to the problem.
    I am installing the web middlewear for CRM IDES 4.0 SP4. SAP deliver e-selling scenario (based on 6.20 webas) in a sar file and all I have to is unzip it into a directory and start the j2ee server. Dispatcher starts fine and when starting the server I am getting the following error:
    OS: w2k
    SAP J2EE Engine Version 6.20 PatchLevel 67440.20
    login id:j2eeadm.
    java version: 1.3.1_15
    my jave_home is set.
    memory settings seems to be oj with 512.
    I don't see any file authorisations issues.
    Please help me!
    Loading core services:
    ID000546: Error instancing frame class of a core service com.inqmy.services.dbms.server.DBMSServiceFrame.
    [ServiceManager]: ID000546: Error instancing frame class of a core service com.inqmy.services.dbms.server.DBMSServiceFra
    me.
    java.lang.ClassNotFoundException: com.inqmy.services.dbms.server.DBMSServiceFrame
            at com.inqmy.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:168)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
            at com.inqmy.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:105)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:310)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Class.java:190)
            at com.inqmy.core.service.container.ServiceWrapper.start(ServiceWrapper.java:122)
            at com.inqmy.core.service.container.MemoryContainer.startSingleService(MemoryContainer.java:645)
            at com.inqmy.core.service.container.MemoryContainer.startCoreServices(MemoryContainer.java:160)
            at com.inqmy.core.service.container.AbstractServiceContainer.init(AbstractServiceContainer.java:130)
            at com.inqmy.core.Framework.loadSingleManager(Framework.java:322)
            at com.inqmy.core.Framework.loadManagers(Framework.java:117)
            at com.inqmy.core.Framework.start(Framework.java:78)
            at java.lang.reflect.Method.invoke(Native Method)
            at com.inqmy.boot.FrameThread.run(FrameThread.java:46)
            at java.lang.Thread.run(Thread.java:479)
      Starting core service monitor ... done.
      Starting core service file ... done.

    Hi Srini,
    The dbms.jar file in <server>/services/dbms directory is missing or corrupted. Get a new version of the sar file or check for insufficient disk space (in case extraction has failed).
    Best Regards: Iavor

  • Recorder Error - no frames captured

    I am running the trial copy of PE 10 on Mac OSX 10.7.2.  My old Panansonic DV is connected through the firewire port and is recognised as device control is working. Project settings are for DV PAL 25 fps. When I play the camera no video is seen in the preview screen and when I try and capture I get an error message on hitting stop that says 'Recorder Error, no frames captured'. I have used the same set up with iMovie 11 and the dv is captured without problem.
    I'm more of an Adobe user than an iMovie or iPhoto person so would like to use PE10 if I can get this issue resolved.
    Any suggestions most welcome

    DV via Firewire is absolutely perfect for PRE so what you describe is unusual. Using the same cable does iMovie capture the footage? If not it may just be a dodgy cable or connection.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • MPEG DECODE ERROR AROUND FRAME ****

    I am experiencing this error message and in the timeline there are red, broken and pixeletted frames with the audio not sounding very good as well. I am captured HDV using my Canon XH A1  and editing in a matrox sequence. I am not sure what caused this because I replayed the tape and those bad frames do not exist on my tape.
    Some of the forums did not come up with a solution for this problem. I am considering recapturing these files again. Any ideas on how to fix these issues please.
    System
    Adobe PP CS5
    Windows 7
    HP XW 6600
    Dual Quad Xeon @ 3ghz
    24GB RAM
    GTX 285 2GB
    Matrox RT X2
    3TB internal RAID 0
    3TB Esata RAID 0.

    Its all up to date to 5.0.3. I will try again with HDV split.
    Thanks Harm.

  • Support MIDI and dynamic change FRAME RATE

    What MACROMEDIA says about support by FLASH, midi files and
    dynamic change FRAME RATE of the movie?
    this is two nuances that does not suffice me.
    And what about macromedia FLASH 9? When it comes?

    For dimension changing use something like this (is a part of a bash script for video edition so ...) :
    # Le quitamos el over-scan al ancho. OJO!! debe seguir siendo MULTIPLO de OCHO
    WIDTH_SCALED=$(($OUTPUT_V_WIDTH-$OUTPUT_OVS*8)) #multiplicamos el overscan por 8(4 pixeles a cada lado)
    # Obtenemos relacion de aspecto de forma mas precisa
    if [ "$OUTPUT_V_ASPECT" == "1.7777" ]; then # formato panoramico
    ASPECT_PRECISE=`echo "16/9"| bc -l`
    else
    ASPECT_PRECISE=`echo "4/3"| bc -l` # y el formato normal
    fi
    HEIGHT_SCALED=`echo "(${INPUT_V_HEIGHT}*${OUTPUT_V_HEIGHT}*${ASPECT_PRECISE})/${INPUT_V_WIDTH}"| bc -l`
    # Necesito que el alto sea MULTIPLO DE CUATRO para que la longitud del PADDING sea PAR y simplificar el codigo... introduzco un error de 3.999999 pixels (en el peor de los casos)
    HEIGHT_SCALED=$((`echo "scale=0 ; $HEIGHT_SCALED/4"| bc -l`*4))
    # Calculo el Padding
    OUTPUT_V_PAD_WIDTH=$(($OUTPUT_OVS*4))
    OUTPUT_V_PAD_HEIGHT=`echo "scale=0 ; ($OUTPUT_V_HEIGHT-$HEIGHT_SCALED)/2"| bc -l`
    Don't bother about the comments . Is spanish .
    What you want is :
    HEIGHT_SCALED=`echo "(${INPUT_V_HEIGHT}*${OUTPUT_V_HEIGHT}*${ASPECT_PRECISE})/${INPUT_V_WIDTH}"| bc -l`
    About frame rate - this is video edition and i think you can not do this in java . Is more complicated than a simple calc . Under linux i'm using ffmpeg to change fps and encode from avi to mpeg2 .

  • Opening and closing a frame from an applet security problem

    can I open a frame or a window from an applet and close the frame by using
    System.exit(0) for the frame or will it throw a security problem.

    I am using system.exit(0) to exit the JVM.
    dispose()
    Releases all of the native screen resources used by this Window, its subcomponents, and all of its owned children. That is, the resources for these Components will be destroyed, any memory they consume will be returned to the OS, and they will be marked as undisplayable.
    If this frame have to be close and open again don't use dispose.
    there is no check whether a frame is active? what you can do is set the the new frame to null (frame = null) and also when you dispose it, this will let you know if the frame is active or not.
    Noah

  • How do I fix problem with linked and cropped image frames not printing properly when spanning pages?

    We are using InDesign (ID) to develop and print church bulletins which contain a combination of text frames and graphics. One of the graphic types we use are TIF files which are high-resolution scans of hymns.
    A hymn usually has a combination of the musical score, plus the lyrics - with many verses., so the modular structure is 'staff' composed of a treble clef, followed by verses, followed by a base clef.
    If the example above had 6 verses instead of one, we would crop the image by adjusting the frame, so that the treble clef and the desired verses showed through the frame.
    We would then copy and link the frame - piggy back - adjusting the next content window etc....so we build a custom version of the music as a series of linked frames - each with the same base image, but a different frame position.
    So this works fine, when we do this on a single page, but when we then add a 'last staff' at the top of the following page, we encounter print problems with some output devices.
    Imagine a two-page spread, with a full page of music on the left, and the last staff (treble clef, verses, base clef) unit as a separately linked frame at the top of the right page of the spread.
    It displays correctly, and will print individually as pages correctly, but when we print it as a booklet, the last frame drops out and we have blank space.
    I can print the document to PDF and it works fine, but if I print it to a copier or laser printer I get drop out.
    It is inconsistent.
    Previews are always okay. Individual page prints are okay, but when you print the entire document, the last frame in this kind of linked series gets blanked.
    If we create and name the image differently, and call it in as a new image - (not linked to the previous), but it is still a large image that is cropped to a small piece, then it doesn't print.
    If we save the last frame as a different image type (take the TIFF file into photoshop, crop it and save it as a jpg - so it is only the 'snippet') and then import it, it works fine.
    So my question to you InDesigners....is there some setting or tip or trick I need to know to be able to link a series of frames with the same base image, but different crops and make it span across two pages properly.
    Or do we need to play this game of crop and trim the image so that it doesn't drop out?
    Any thoughts, advice, direction would be gratefully received!

    I did a lot of such hymn things in the past, but I was alway working on the scans in Photoshop, like adjusting, retouching spots and cropping. And I was always seperating those images to be more flexible so I never run into such a problem.
    I am always scanning in a higher quality level than I would need, I scan it in color, this allows me to eliminate paper color easily, even if I need 1-bit images at the end, I do it in color, so I can also turn the image.
    I did once run into a similar problem with a scan I have got from a copier-scanner machine (it was not a song). But saving as PSD resolved my problem.
    So I would suggest: Open your files in Photoshop, resave them as PSD files and use those instead. If you use 1-bit images (which is fine for this type of images) you should use a resolution equal to the printer's resolution.

  • Okay so i had an iphone 5.  I backed it up on icloud. Then i got the new iphone 5s i restored ot from icloud from my previous iphone 5.  Now everything works find execept now the games are slowy and drops the frame rate and look choppy. Please help.

    Okay so i had an iphone 5.  I backed it up on icloud. Then i got the new iphone 5s i restored ot from icloud from my previous iphone 5.  Now everything works find execept now the games are slowy and drops the frame rate and look choppy. Then i restarted my iphone 5s as a new device downloaded the same apps even the ones optimized for ios 7 and the games still lag. And i just got my iphone 5s replace.  The funny thing is.  While im playing games and their running choppy and slow and if i take a snap shot inside the phone. They run smooth and HD but just for a few seconds and boom they go back to slow and choppy.  Is it the ios 7 or the iphone 5s it self? Like i said this is my replacement iphone 5s because the other 5s did the same thing. And it was running slowly.

    As far as I know you can't delete the primary email address for an iCloud account.  It's assigned when the account is created.  But your neighbor wouldn't have been able to get into your iCloud account without your Apple ID and password.  Are you sure the account wasn't still on your phone when you gave it to him?
    You could migrate a copy of your data to a new iCloud account but I would still be concerned that someone else was using my old account, which presumably still has your data in it.
    I'm fairly certain that you're going to have to have iCloud support help you sort this one out as they may have the ability to make changes to an existing account that users can't.  Make an appointment with the genius bar at a nearby Apple store and have them take a look at it.  If necessary, they should be able to contact iCloud support for you.

  • How to change "Object Causes Wrap" and a "Picture Frame" as a default properties when importing images in Autor

    When I place images in iBook Author, they are automatically assigned these properties: "Object Causes Wrap" and a "Picture Frame" stroke.
    I don't want that and couldn't find where can I change it in the Preferences. Anyone has an idea?

    I've sent a feature request for a new version of Author:
    When I place images in iBook Author, they are automatically assigned these properties: "Object Causes Wrap" and a "Picture Frame" stroke.
    It would be great if I could be able to change it in the Preferences to "No wrap" and "No Frame" so I don't have to manually adjust every single image of my book - there are lots of them.
    It would be really nice if Author implements "Layer's" concept like almost all graphic programs like Photoshop, Flash, Illustrator, etc.

  • Fcpx with magic bullet green and pink flash frames

    Hi I'm using fcpx with magic bullet. all recent updates. an imac 3.4ghz 32gb ram 512ssd drive and 512mb card. I keep getting pink and green flash frames whenever i colour grade in magic bullet.
    first 22 secs of project were fine, next day I added to it, flash frames everywhere throughout the entire project. tried everything. is it a bug?
    cheers

    This problem is completely averted, for me (and reportedly most others), by exporting using "Send to Compressor" rather than using any FCPX presets. That is, no flashes or green/purple/upside-down frames show up in the final output.
    I would hardly have believed that the "engine" used in Compressor is different to FCPX - but that is obviously (simplistically) the case.
    This is also some confirmation that the problem is with FCPX - not the plugin.

  • I am having difficulties in maintaining a facetime connection through my ipad.  It will generally work for 20 seconds or so and then the frame freezes. It is difficult to follow our 2 year grandson. Any fixes?

    I am having difficuties in maintaining a Facetime connection through my ipad 2. It will generally work for 20 seconds or so, and then the frame freezes. Sometimes we have audio with a freeze frame picture. It is difficult to maintain the attention of a 2 year grandson anyway, but the the lost connections make it impossible. Any fixes?

    This is a connection problem with wifi.   Either your wifi is failing, or your internet service is not fast enough for video feed.

Maybe you are looking for