Aminated gifs only showing the last frame on the 2nd time of viewing

I have 2 animated gifs and on pressing a button i am changing between the 2 on te first click the animated gif runs sucessfully and clicking the button again the 2nd animated gif runs sucessfully. However when i go to run the first animated gif again it only shows the last frame and this continues no matter how many times you press the button. Is there any way of getting it to start from the first frame. By the way just in case it makes a difference both the animated gifs run once they do not continously keep going and that is how i want them to be.

public void mousePressed(MouseEvent e){
     if(corner.contains(e.getX(),e.getY())){
     if(reversed){
          setImageFile(gui.getFrontImage());
               gui.setComponents(true);
               reversed = false;
     else{
          setImageFile(gui.getBackImage());
               gui.setComponents(false);
               reversed = true;
     repaint();
public void setImageFile(java.lang.String imageFile) {
     fieldImageFile = imageFile;
/* Get and download the image for the new postcard background */
backgroundImage = Toolkit.getDefaultToolkit().getImage( fieldImageFile );
     MediaTracker mt = new MediaTracker( this );
     mt.addImage( backgroundImage, 0 );
     try{     
          mt.waitForID( 0 );          
     catch( InterruptedException ie )
     repaint();
     mt.removeImage(backgroundImage, 0);
public void paint(Graphics g)
{     if( backgroundImage != null )
     g.drawImage( backgroundImage, 0, 0, this );
so basically i press an srea area on the screen and every time i do it alternates between these 2 animated gifs gui.getBackImage() just returns te string of the animated gif file. I've checked to make sure that a new instance of the media tracker is being created each time and it is so i'm not really sure where the problem is!!

Similar Messages

  • Why is the green screen visible on the last frame before the next clip?

    Hey guys!
    Maybe I'm ******** but i m having trouble here. I have "key-ed" a bunch of clips and successfully removed the green screen from them. But when placed in the timeline, the green screen of the clip reappears for the single frame before a next clip starts.
    I've re-rendered and chopped ends off but the green screen keeps appearing in the last frame of any keyed clip that is about to cut to a different clip.
    Where am i going wrong?

    Hey! I tried both suggestions but even the self contained quicktime file has the green screen frames popping up.
    I just dont get it, it's infuriating!
    I used "chroma keyer" effect on the clip, only enable "key on saturation", the green screen disappears, I place clip on V2 and image on V1. Image is then visible where the green screen was. All is well until the last frame before a next clip because on that ast frame the green screen appears again. Where am I going wrong? Please help!

  • 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.

  • StageVideo on android shows a black frame on the start and end of video playback

    When my screen starts up it goes completely black for a moment and the interface becomes unreponsive for about a second when my stagevideo player class is added to the stage. My videos are encoded using Adobe Media Encoder with the 480p android settings (vbr 2 pass). I tried cbr and that had exactly the same effect. This problem happens on both air 3.5 and air 3.4. I figure this has to be something caused by my own code because I don't see many discussions about this issue.
    package com.literacysoft
              import flash.display.Sprite;
              import flash.events.Event;
              import flash.events.NetStatusEvent;
              import flash.events.StageVideoAvailabilityEvent;
              import flash.events.StageVideoEvent;
              import flash.geom.Rectangle;
              import flash.media.StageVideo;
              import flash.media.StageVideoAvailability;
              import flash.media.Video;
              import flash.net.NetConnection;
              import flash.net.NetStream;
              public class SimpleStageVideo extends Sprite
                        private var stageVideoAvail:Boolean;
                        private var sv:StageVideo;
                        private var videoUrl;
                        private var vidWidth;
                        private var vidHeight;
                        public var theStage;
                        private var vid;
                        private var myX;
                        private var myY;
                        public var ns;
                        public function SimpleStageVideo(w, h, dastage, x, y)
                                  myX = x;
                                  myY = y;
                                  vidWidth = w;
                                  vidHeight = h;
                                  theStage = dastage;
                                  addEventListener(Event.ADDED_TO_STAGE, init);
                        private function init(e:Event):void{
                                  theStage.addEventListener(StageVideoAvailabilityEvent.STAGE_VIDEO_AVAILABI LITY, onAvail);
                        private function onAvail(e:StageVideoAvailabilityEvent):void
                                  stageVideoAvail = (e.availability == StageVideoAvailability.AVAILABLE);
                                  initVideo();
                        private function initVideo():void
                                  var nc:NetConnection = new NetConnection();
                                  nc.connect(null);
                                  ns = new NetStream(nc);
                                  ns.client = this;
                                  ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                                  if(stageVideoAvail)
                                            sv = theStage.stageVideos[0];
                                            sv.addEventListener(StageVideoEvent.RENDER_STATE, onRender);
                                            sv.attachNetStream(ns);
                                            trace('available');
                                  else
                                            vid = new Video(vidWidth, vidHeight);
                                            theStage.addChild(vid);
                                            vid.attachNetStream(ns);
                                            vid.x = myX;
                                            vid.y = myY;
                                            vid.smoothing = true;
                                            theStage.setChildIndex(vid, 0);
                                            trace('not');
                        private function netStatusHandler(event:NetStatusEvent):void {
                                  trace("event.info.code "+event.info.code);
                                  switch (event.info.code) {
                                            case "NetConnection.Connect.Success":
                                                      trace("NetConnection.Connect.Success");
                                                      break;
                                            case "NetStream.Play.Stop":
                                                      if (!stageVideoAvail){
                                                                if (vid.parent != null){
                                                                          theStage.removeChild(vid);
                                                      } else{
                                                                ns.close();
                        public function playMyVideo(url):void{
                                  ns.play(url);
                                  if (!stageVideoAvail){
                                            theStage.addChild(vid);
                                            theStage.setChildIndex(vid, 0);
                        private function onRender(e:StageVideoEvent):void
                                  trace("rendering video",sv.viewPort);
                                  sv.viewPort = new Rectangle(myX, myY, vidWidth, vidHeight);
                        public function onMetaData(e:Object):void
                        public function onXMPData(e:Object):void
                        public function onPlayStatus(whatever):void{
                        public function dispose():void{
                                  ns.close();
                                  ns.dispose();
                                  if (!stageVideoAvail){
                                            if (vid.parent != null){
                                                      theStage.removeChild(vid);

    Using Air 3.6 on a Samsung tab 2 - Android 4.1.1
    Having similar issues.
    I'm trying to play a different video corrisponding with a button on the stage.
    When I click the button, the video turns black, then shows the last frame of the old video then the new video starts playing.
    A just want the old video to stop and have the new one play with no flashing in the middle.
    This happens with both stagevideo and the fallback video object
    Works fine in flash player 11 windows.
    I've noticed a lot of similar type problems and some seem to be getting fixed with new Air versions.
    Anyone else currently having similar issues?

  • "previous" button to the last frame of a MC

    I have a question that I hope will be super easy - I just
    can't see to find it. Also, flash is not my main app but I'm trying
    to pick up on some work that someone else had started. Here is the
    breakdown - in the main timeline there are a series of projects
    (frames labeled "projA, projB, etc). If you open up each project
    movie clip (say projB) it opens up a slide carousel-like interface
    (frame1=image1, frame2=image2, etc). The next button says
    "onRelease go to frame 2" and so on. When we get to the last frame
    in projB, the NEXT button says go to the root and play projC. This
    allows the end users to just hit NEXT the whole time and work their
    way through the presentation.
    Where I'm a bit stuck is on the PREVIOS button frame of
    projB. I would like it to go to the LAST frame of ProjA but the
    best I can do is to make it go back to the begining of Proj A
    on(release){
    _root.gotoAndPlay("projA");
    Is there a way to make it go to say, frame 4 of projA? Or
    better yet, just the "last" frame of projA? I know this is probably
    not the ideal way to set up the file, but i inherited the
    presentation from my co-worker. Any suggestions on how to make the
    PREV button work a bit better?

    you might be able to accomplish this through the use of a
    variable, although it will be tricky in the scenario you describe.
    declare a new variable on frame one main timeline, let's say
    'back':
    var back:Boolean;
    then on the frame label for each project you will use a
    condition to see if 'back' is true - if so, then use the condition
    to nav to the last frame of the project clip - something like:
    if(back) {
    back = false;
    projA.gotoAndStop(projA._totalFrames);
    this would belong on the main timeline, so in your previous
    button's 'on' handler add a statement to set 'back' to true so that
    the condition fires. and navigates to the last frame of the proj
    clip, as in:
    on(release){
    _root.back = true;
    _root.gotoAndPlay("projA");
    repeat this procedure for all project frames and buttons
    replacing the MC instances with the corresponding names.

  • 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.

  • When I imported my mp4 video to imovies, it only shows the 1st frame of the video and not the rest...

    When I imported an mp4 video to imovies, it only imported the 1st frame of the video - all thumbnails only showed the 1st frame.

    It sounds like you have hidden the menu bar, for details of how to restore it see the [[menu bar is missing]] article. This article may also help - [[Back and forward or other toolbar items are missing]]

  • 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.

  • My iphone 4s is importing contact information from FB and my email account.  When I pull up my contacts it only shows e-mail information and the phone numbers have disappeared.  How do I get my old contact list back with the phone numbers?

    My iphone 4s is importing contact information from FB and my e-mail account.  When I try to look at my contact list it is showing everyone I have on those lists and it only shows their email addresses.  The phone numbers for my contacts have disappeared and I don't know how to get them back.

        Hi macmac57. I don't memorize my numbers anymore, so I know how important it is to have all your contacts on your phone at all times. Did an update occur or a new application download when your contacts disappeared? Have you been backing up your device with your computer? You can try to restore your contacts from your last backup. http://support.apple.com/kb/HT1414
    Are you syncing your iPhone between multiple computers? This can sometimes create issues with your contacts. http://support.apple.com/kb/TS1474
    If you were already using iCloud to back up your contacts, check out http://support.apple.com/kb/TS3998 for some great tips from Apple.
    I do hope this has been helpful for you to restore your contacts.
    JenniferH_VZW
    Please follow us on Twitter @vzwsupport

  • How to view the first and the last frame of a clip or a selected range in the time line?

    How to view the first and the last frame of a clip directly or in a selected range in the time line ? Up arrow and down arrow keys changes only between the first frame of the consecutive clips. Even ; and ' does the same. I mean what is the shortcut keys for first to last and last to first frame of a clip? Help please.

    SELECT PurOrderNum,
    OrderDate
    FROM
    SELECT PurOrderNum,
    OrderDate,
    MAX(OrderDate) OVER (PARTITION BY DATEDIFF(mm,0,OrderDate)) AS MaxDate,
    MIN(OrderDate) OVER (PARTITION BY DATEDIFF(mm,0,OrderDate)) AS MinDate
    FROM Purchasing.PurOrder
    WHERE OrderDate >= '2013-02-28'
    AND OrderDate <= '2014-12-29'
    )t
    WHERE OrderDate = MaxDate
    OR OrderDate = MinDate
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • ITunes only shows my last 10 podcasts

    I've been submitting Podcasts to my Cabaret Secrets feed for about a year now but iTunes only shows my last 10 Podcasts. The others don't seem to be there anymore. Any ideas?

    iTunes does not limit the number of episodes shown until you get to 300. If you examine the feed you will probably find that there are only the ten episodes in it. Many podcast creation programs and services limit the number of episodes show in the feed, moving older ones to an archive page and out of the feed once the limit is reached. There is usually a setting to increase this number.
    Please always post the URLs of your iTunes Store page and feed; without them one can make only the most general comments.

  • I tried updating my iPod 5th gen to iOS 8 but it only shows me a picture of the iTunes logo and a charger at the bottom, I'm not sure what this means or what I need to do. Can someone please help me?

    I tried updating my iPod 5th gen to iOS 8 but it only shows me a picture of the iTunes logo and a charger at the bottom, I'm not sure what this means or what I need to do. Can someone please help me?

    After restoring to factory settings/new iPod you will then have to restore from backup
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:                         
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • My iPhone 4s is stuck on a black screen that shows a USB cable connecting to iTunes. The phone will not turn on and the iTunes logo as I described only shows up when I plug the phone into the charger or my computer. I have tried the reset in restore mode

    My iPhone 4s is stuck on a black screen that shows a USB cable connecting to iTunes. The phone will not turn on and the iTunes logo as I described only shows up when I plug the phone into the charger or my computer. I have tried the reset in restore mode as well as the DFU? mode and it still will not work. I have the latest version of iTunes on my Mac. My error code was 2002. I also tried it on my laptop (windows 8.1) and none of the above worked. My error code on my laptop was 02. The phone is through Verizon and it has absolutely no damage. It was working fine up until this and I have been trying to fix it for 2 days. Please help! I am unsure of what version the phone was currently running on before this because I have another iphone that's my primary phone and have not used this one in about a month. I do not believe it was updated to IOS 7.

    Your iPhone is in recoverty mode at the moment so to possibly get it back up and running you would need to do a restore as you have been trying. Follow the steps in the article below for the specific error messages you have been receiving. If after following all steps the issue remains book an appointment at a local Apple Retail Store to have the iPhone evaluated.
    Resolve specific iTunes update and restore errors

  • If I add a row to my spreadsheet, how do I get the footer cell to show the last amount in the table automatically?

    Balance Forward
    $0.00
    Date
    Code
    Check Number
    Transaction/Description
    Deposit
    Withdrawl
    Ending Balance
    I am able to set up the Ending Balance to show the value of the cell right above it as long as I dont need anymore rows. If I add a row the value of the ending balance is stuck on the row or rows above the newly addd ones. All of my other formulas contiune on when a row is added, Is there a formula that can be added so that when a row is added the ending balance value moves to the last cell in the row?

    Cobb425 wrote:
    Thank you badunit for your responses and help. Jerrolds formula worked for me a little bit better for what I was looking to do. Thank you again for your help
    Whatever works best for you. Jerry's formula assumed your table might not be totally full, that there might be empty rows at the bottom.  Mine assumed there were no empty rows; it gave the value of the cell directly above it, as you asked. With Jerry's formula, be sure you enter your data in order by date or keep it sorted that way to ensure you get the correct "Ending Balance".  If your last row does not have the most recent date, the formula will return the balance from a different row.
    I don't see the advantage in Jerry's "Balance Forward" formula over the simpler one I provided.

  • What is the keyboard Shortcut to go to the last frame or end of a clip?

    I used to have this shortcut set up, but I reformatted my mac and now I can't find it anywhere. I've searched the forums and can't find it, and yes, I looked at the help and looked at the manual. I've also went to Tools->Keyboard Layout and went through every keyboard shortcut listed. It is probably staring me right in the face!
    The closest I can find is the "goto next edit".
    I do a lot of photo montages and had this shortcut set up so I could double clip the photo on the timeline, set my first keyframes and then shortcut to the end of the photo and set my last keyframes so I can do my "Ken Burns" effects. I actually had set a macro on my mouse to simulate the keyboard shortcut.
    Any help would be greatly appreciated!!! Thanks
    Power Mac dual 2.5 Ghz G5 Mac OS X (10.4.9) 2 gigs RAM, 2 250Gb internal hard drives,FCP 4.5, Motion 1, DVDSP 3

    yes it is Michael, but our poster gave particular criteria where he loads a timeline instance of a clip in to the viewer and then wants to navigate to the first and last frame in the timeline instance of that clip ... which is in effect the in and the out point, hence Shift I and Shift O

Maybe you are looking for

  • Problem with DVD burner

    When i try to insert a CD or DVD into my PB's internal dvd burner and immediately ejects it. Have tried a bunch of different brands of CDs and dvds. Same results. It takes the disk in and then immediately ejects it. Any ideas as to what's wrong? thx

  • No-ip dynamic DNS for routers that won't accept no...

    For those of you who have abandoned the hopeless BT hub and have gone for another router that doesn't offer no-ip as a dynamic DNS server (e.g. the Netgear DGN1000 router) there is a simple solution. Go to http://no-ip-duc.software.informer.com/4.0/

  • Exporting highlighted text

    Is there any way to export just highlighted text from a PDF?

  • CIN - Reverse part 2 entry for 201 movement type ?

    Hi When we withdraw raw materials for internal use from stock using movement type 201 , should we post a part 2 entry in the RG23A registar? If yes please let me know the process. Thanks Ganapathy

  • In address bar, my banking site now shows up with grey padlock, it's always been green before, why?

    Padlock at address bar for my banking site, Wells Fargo, used to be green, now it is grey. In chrome and internet explorer it is green. Is this a problem with firefox or is website been re directed somehow? (I have firefox 25.1 on dell inspiron 15 la