After Effects CC 2014 problem: Image from frame from the last Premiere CC-After Effects link permanently burned into new project compositions.

One frame from one of the clips I sent from Premiere to After Effects through "replace with After Effects composition" was permanently burned in After Effects and now it appears in every new composition of every new project I create as the background of such composition. 
For example, I sent from Premiere a clip of a building to After Effects for color correction with Finesse, and warp stabilization and then after rendering, finishing, and closing all the applications, now, every time I open After Effects for any other project, whether already-created or brand-new, every existing or newly created composition (in a Mac Command N) you see the image of the building as the background of the composition.  If you create a new composition, while it remains empty of any layers, you see the image of the building.  If you have an already-created composition with layers, when you turn off all the eyes of the layers, you would expect to see black (nothing) in the composition window (if that's the color you assigned to be as the background of the comp), but instead you see the building.  If you change the color of the comp's background in Composition Settings, you still see the building as the background.  If you render such empty composition (no layers) you render out the image of the building, not black.  I tried clicking everywhere and going through the preferences, and even uninstalling the application and re-installing it, but it seems to be permanently burned in into every comp's background.
Please, any ideas of what's going on and how to get rid of it?
Thanks so much for your help,
RR.

Thanks so much Dave.  It fixed the problem.
Raoul.

Similar Messages

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

  • HT5429 How long after you report a problem does it take for the fix to be picked up in maps?

    How long after you report a problem does it take for the fix to be picked up in maps? The street I live on is misspelled. It's shown as one word, but it should be two words. Maps cannot find the address when it is spelled correctly, so I have it purposely misspelled it as one word in my contacts, which helps for the most part, however it still tries to place my home on an entirely different street all together. Fortunately this new random street is at least close to where I live. When I used to spell my street correctly with two words, maps would try to send me to the next town over. So it kind of works, as long as I misspell my street, and ignore the fact that it is showing where I live to be a couple of streets down from where I actually live. I live in Connecticut - not in the most populated of areas, but not in the middle of nowhere either. Amazingly enough Google Maps will correctly find my address whether it's spelled with one words or two words. Google Maps also shows my apartment complex, which Apple Maps does not. I really wish Apple would just do a quick pass of the area to fix these issues. I’ve reported the problem several times, months ago. How long will it take for there to be a fix? I keep trying to use the Apple ecosystem, but Google is clearly the better solution for me.

    Apple does not do the GIS data for maps. That comes from 3rd party vendors like Tom Tom. I have read it takes some time to update map data. The only thing you can do is report it.
    Not to belittle your complaint, but on my end it is Apple that is clearly better. When looking at my house in Google, the satellite photo is more than 4 years old, and the Apple one is much newer. I can tell because of the condition of my home and the neighbor's. They had an above ground pool which was removed 4 years ago and it shows on the Google Map. I had remodeling and roof work done to my home that started 3 years ago and Apple's satellite view showed this work done, which took over a year to complete. I live in the middle of a block in a rural town. Both Apple and Google split the block into 100 parts and put my home close to the beginning of the block instead of where it actually sits. I've reported it to both Google and Apple and no one has changed. Just one of those things. But, keep your chin up, it will get corrected eventually.

  • Sim problems- I updated my ipad2 to ios7 after that , iam facing problems with my sim, it showing no sim card after inserting sim. there is no prbolem with my sim.

    I updated my ipad2 to ios7 after that , iam facing problems with my sim, it showing no sim card after inserting sim. there is no prbolem with my sim.

    arun kumar chenna123 wrote:
    i have updated my iphone to ios4.1. after installation, it is showing as"The SIM card inserted in this iPhone does not appear to be supported. only compatible sim cards from a supported carrier may be used to activate iphone. Please insert the sim card that came with your iphone...."
    how to solve this problem. I don't have any sim cards that came with iphone.
    Please help out to solve this problem.
    It sounds like the phone was hacked or jailbroken, and updating it locked it to the original carrier. As it is not possible to update to any version other than the current one (5.1) the fact that you updated to 4.1 pretty much confirms the phone was hacked. There is no solution that you can get in an Apple forum.

  • Bought the song "Earthquakey People (feat. Rivers Cuomo)" from itunes and the song skips itself after the first 10 second (literally) what can i do

    I bought the song "Earthquakey People (feat. Rivers Cuomo)" from itunes and the song skips itself after the first 10 second (literally) and i have already deleted it ad downloaded it again and it still is doing the same thing what can I do?

    Contact the iTS Customer Service via the links on this page and explain the problem - http://www.apple.com/support/itunes/
    MJ

  • How do I stop Firefox from opening with the last site I was on when I closed instead of using my home page?

    whenever I open firefox after closing it down, it always opens with the last page I was on. I have the settings to point to a specific homepage and have it set to always open on the homepage, but it doesn't.

    I am having a similar problem, I'm using "Show my home page" on start-up but firefox decides to always open to the last page visited regardless. I also generally close Firefox using the red X or with alt+f4. This problem is especially annoying when the last page 'visited' is an annoying pop-up ad that wasn't been caught by the pop-up blocker.

  • Is it possible to maintain the last AO value after the DAQmx task is done on device DAQ USB-6341 ?

    Hi all,
    I use the device DAQ USB-6341 to generate the desired voltage waveform by the "finite samples" sample mode.
    I notice that the channel resets to zero volts after the DAQmx task is done and the DAQ USB-6341 does not have 
    the property AO.idleOutputBehavior to select "Maintain Existing Value".
    How can I maintain the last AO value after the DAQmx task is done on device DAQ USB-6341 ?
    Thanks.
    Godel

    How many computers do you have in the network?
    What is the IP address and default gateway number on your computer?
    In order to connect to the wireless network, WVC80N should get valid IP address from the access point.
    If the access point has capacity to assign a private IP address to the computers and devices then I think you can use WVC80N.

  • Hi after my elements 11 downloading to my mac for the last 1hr 30mins it got to the last 30secs and says i don't have permission to access it please help

    I've recently bought a mac please help.. after mislaying the mac disc which was included in elements 11 ( on my main tower  i installed  the windows disc in the box with no problem) i spoke with adobe who gave me a link to download for my mac the use the same serial number... the problem is it downloaded until the last 30 secs then error came up i don't have permission to access the request.
    please help

  • HT5624 Restore back up of my iPhone-password not recognised. After restore, itunes can not restore because it says the password is incorrect. But I can sign into my apple account with the password.

    Restore back up of my iPhone-password not recognised. After restore, itunes can not restore because it says the password is incorrect. But I can sign into my apple account with the password.  My iPhone is now set to factory settings as a new phone, what can i do to access the back up from my phone before I reset it. 

    That does happen.  It depends on how hard the server is being hit, as well as the connection speed of your system.  If you are on a windows system, you will want to disable any antivirus or firewall software during the download.

  • IMac on Mountain Lion restarting "because of a problem" every 5 minutes for the last 4 days.

    My iMac has been restarting "because of a problem" every 5 minutes for the last 4 days. This started only since I updated Mountain Lion OS last Thursday (i didnt update TO mountain lion, i already had it and updated to a version that came up in the mac app store).
    Also, it usually restarts while in Sleep mode, and when iPhone 4s (iOS 6) is connected.
    Any Help or advise would be appreciated.

    Run the Apple Hardware Test suite, extended tests at least twice; then, follow up with Rember.
    See
    What is a kernel panic,
    Technical Note TN2063: Understanding and Debugging Kernel Panics,
    Mac OS X Kernel Panic FAQ,
    Resolving Kernel Panics, and
    Tutorial: Avoiding and eliminating Kernel panics for more details.

  • How to check if the approver returned from AME is the last apporver

    Hi,
    I have setup multiple Approval Groups which uses a query to derive the approver list. Each Self Service HRMS transaction is attached to a different approver group.
    My requirement is to write a function in Workflow to check if the approver returned from AME is the last approver of the group.
    Please let me know how I can achieve this.
    Thanks,
    Rachana

    there is some seeded attribute like is_last_approver. Check the value if this returns tru then it is last approver

  • How do I finish installing the last two discs after exiting out of the system?

    How do I finish intalling the last two discs after exiting out of the setup?

    Installing what?
    On what system?

  • HT3825 i cant import my 5d 3 raw file using iphoto. how i can solve my problem? i already download the last version of adobe raw ubdat

    i cant import my 5d 3 raw file using iphoto. how i can solve my problem? i already download the last version of adobe raw ubdat

    A Good samaritan answered this for me on another forum
    How to update Camera Raw

  • I have problems with my printer says the ink system failure error 0xc18a0206 what do I have new cart

    I have problems with my printer says the ink system failure error 0xc18a0206 what do I have new cart. Printer is Hp Photosmart c5180

    This article should help resolve the error you are getting:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03081973&cc=us&dlc=en&lc=en
    Give the steps a try and let us know if it helps.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • After Effects cc 2014, problem: swf files not supported

    Hi, trouble with loading SWF file into After effects cc 2014, "format not supported" is the message. The same project is opened by another identic Macpro like mine...

    Thanks so much Dave.  It fixed the problem.
    Raoul.

Maybe you are looking for

  • Midi notes or audio region do not play at the start of a bar?

    I am having an issue with a midi loop I have created. If I let the song play a bit until it reaches the loop, logic works just as you'd expect it and everything plays correctly. But if I stop the song, or if I set the song into cycle mode so it repea

  • IMac 24inch 2.4GHz Logic Board Core 2 Duo

    I have a white 24 inch Imac 2.16 ghz computer got in 2007.Having problems with mouse cursor not showing on monitor takes 10 to 15 seconds to come back.I think it is the video card aNvidia GeForce 7300GT.Found info on google on this problem in some si

  • Best Practice Advice for Xcelsius Beginner

    Hello, all - This is my first post to the community. Please forgive my naivety. : ) I've read about half of the 400 page Xcelsius manual, and am still confused about using individual cells to comprise a series. My client has a ready-made Excel spread

  • Notification log file

    Hi ebs r12 12.1.1 Problem: Workflow Notification Mailer stop every 3 or 4 hrs. ran "Purge Logs and Closed System Alerts" on date=05/26/2010 FND_LOG_MESSAGES table Workflow Notification Mailer After ran the concurrent and check the tables, most of the

  • My iphone 4 which is never jailbroken cannot be updated to 4.3.5

    I cannot update my iphone iOS from 4.3.4 to 4.3.5 When I clicked Update in itune, it failed and showed "There was a problem downloading the software for the iPhone. An unknown error occurred (-23)." Is there anyone having the same problem or having t