Cc 2014 - Nothing shows in inport window when importing AE comp.

So I'm trying to import a comp and there's nothing at all in the window

We found what the culprits were, but I don't know why they'd cause these error messages.
To recap, I have a piece of HD video that I've duplicated 39 times with a different triangular mask on each layer to re-create the whole frame (moving the anchor points of each layer as needed).  The idea is that I then rotate those layers in 3D somewhat randomly, revealing a different video clip on the back side.  To create the "B-side" video for the back sides I duplicated the original 39 faceted layers and parented each to its corresponding "A-side" piece.   I created some opacity expressions to make the A-sides disappear halfway through their rotation with the B-sides appearing at the same point.
My plan was to vary the mask shapes on the A-sides to create variations on the transitions, so I enabled an expression on the masks and pick-whipped the mask shapes on the B-sides to their A-side counterparts.  That seems to be the problem.  Here's the expression (applied to layer 26B):
thisComp.layer("26").mask("Mask 1").maskPath
I repeated this for all 39 B-side layers.  Then I duplicated that comp and inserted new video into the transition.  At some point some part of the software decided some layers were missing or something, creating the above error messages.  The comps still worked as designed; it was just error messages that I had to repeatedly dismiss.  Once I deleted all of these mask expressions the error messages stopped.
Before deleting those expressions we tried renaming the layers (1-39) so they were unique within each comp (Train1, Rail1, etc) but that didn't work.
Feels like a bug.
Shawn Marshall
Marshall Arts Motion Graphics

Similar Messages

  • It's not just Download Helper v4.8.3, it's also RealPlayer: the download display window shows .mp3 files downloading, but nothing shows in the folder when it is done downloading.

    # Question
    It's not just Download Helper v4.8.3, it's also RealPlayer: the download display window shows .mp3 files downloading, but nothing shows in the folder when it is done downloading.
    Also in the '''Properties''' window of Windows Explorer I '''no longer have the Details tab''', so I can't update my mp3 files with Artist, Album, Genre, etc. But the details tab does show up when I access it thru Windows Explorer.
    I ran the AVG rescue disc an no viruses found. Now on '''FF3.6.15''' '''RealPlayer''' shows when I right click but then '''immediately disappears and an icon appears in the System Tray''', but as soon '''as I hover my mouse over it it disappears'''.
    Does anyone have any ideas or suggestions?
    How can I get this fixed? I have time-sensitive mp3s that I won't have access to anymore if I don't get this resolved in a hurry. (no pressure on you, I'm the one that's stressed about this) Can you help? Thanks so much for responding to this '''inquiry.''''''bold text'''

    See:
    *https://support.mozilla.com/kb/Downloads+window
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history" > "Remember download history"

  • I am running 4.0.1 and when I download something the Download box stays blank-even though I have selected in General Preferences 'Show the downloads window when downloading a file' AND selected 'Save files to Downloads'....???

    I am running 4.0.1 and when I download something the Download box stays blank-even though I have selected in General Preferences 'Show the downloads window when downloading a file' AND selected 'Save files to Downloads'....???

    In Firefox Options / Privacy be sure "Remember download history" is checked. To see all of the options on that panel, "Firefox will" must be set to "Use custom settings for history".
    To find your OS information, on your Windows desktop, right-click the My Computer icon, choose Properties, under System on that small window is info about your OS.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Error when importing SW comps into IR

    When I tried to import SW comps into IR, it is giving an error
    <i>"Unable to read SWC versions from SLD <b>"<host>:<prot>"</b></i>
    Any directions, thoughts...etc...
    -Naveen.

    Hi everyone,
    Thanks for ur replies.
    <i>
    Properties of RFC destination SAPSLDAPI
      RFC host:
    %%RFCSERVER%%
      program id:      SAPSLDAPI_DP1
      gateway host:
    SVR-SAP03-DEV
      gateway service: sapgw01
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server access settings:
      host name:   SVR-SAP03-DEV
      port number: 50100
      user       : PIAPPLUSER
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code     4
    => Check whether the SLD is running!
    <b>Summary: Connection to SLD does not work
    => Check SLD function and configurations</b>
    Now checking access to the XI Profile
    Properties of RFC destination LCRSAPRFC
      RFC host:
    %%RFCSERVER%%
      program id:      LCRSAPRFC_DP1
      gateway host:
    SVR-SAP03-DEV
      gateway service: sapgw01
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    Calling function EXCHANGE_PROFILE_GET_PARAMETER
    Retrieving data from the XI Profile...
    Function call terminated sucessfully
    Retrieved value of
    section   = Connections
    parameter = com.sap.aii.ib.server.connect.webas.r3.ashost
    -> value  =
    Summary: Connection to the XI Profile works correctly
    </i>

  • Problem to show a simple window when dowaloading ?

    Hi
    I created a pure java swing application. When run this app and when it start to download some files from server, it will take long time. I launched/new a simple JFrame window to show a simple "please waiting" message when downloading files. But only window frame show up, and no context. Actually I can see only empty frame and without any content. Only when downloading files is finished, content show up/come out. So I can not show some warning message to user when programm is downloading some files. Who can tell me what is problem?? I use Windw XP. Thanks in advance
    gary

    HI
    I have tried to open another thread and inside another thread I new/launch my GUI class. I met same problem (only show frame and context come out after download is finished). My coding is below: Thanks
    //my main class for downloading files from server
    public class download(){
    ShowProgress progress=new ShowProgress("waiting");
    progress.start();
    downloading .....
    //open new thread
    public class ShowProgress extends Thread {
    String text;
    public ShowProgress(String s) {
    super(s);
    text=s;
    public void run(){
    ShowEnd showend=new ShowEnd(text);
    //GUI class to show "wait message"
    public class ShowEnd extends JFrame {
    BorderLayout borderLayout1 = new BorderLayout();
    JPanel jPanel1 = new JPanel();
    JEditorPane jEditorPane1 = new JEditorPane();
    public JButton Ok = new JButton();
    String text;
    public ShowEnd(String s) {
    super("Finished");
    text=s;
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception {
    this.getContentPane().setLayout(borderLayout1);
    jEditorPane1.setBackground(Color.lightGray);
    jEditorPane1.setEditable(false);
    jEditorPane1.setText(text);
    jEditorPane1.setPreferredSize(new Dimension(400,120));
    Ok.setText("Ok");
    Ok.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    Ok_actionPerformed(e);
    this.getContentPane().add(jPanel1, BorderLayout.SOUTH);
    jPanel1.add(Ok, null);
    this.getContentPane().add(jEditorPane1, BorderLayout.CENTER);
    this.pack();
    this.setVisible(true);
    void Ok_actionPerformed(ActionEvent e) {
    System.exit(0);
    }

  • HT1481 ipod shuffle 2nd generation, does not show up in window when plugged into itunes. Also, does not charge(no light comes on).

    I have a ipod shuffle (2nd generation) that won't light up when plugged in to the power adapter. I have only used it a few times since I purchased it years ago. Also, when I plug it into my computer with itunes running, it isn't recognized at all, as in nothing happens when I plug the usb cable with ipod attached and on to it. Any help would be much appreciated.

    but there is another unspecified error.
    What is that error?
    Are you sure she has a Shuffle? You mentioned a Sad Face.. that would indicate that the iPod has a display, which a Shuffle does not.
    B-rock

  • TS1702 Have downloaded tiny village but nothing shows in the menus when you try to build, etc

    I have downloaded tiny village as a friend plays it. The game runs fine but there is nothing on any of the menus when you go to build, buy, etc. this makes it frustrating as you cannot see what you are building or need to buy.

    I have downloaded tiny village as a friend plays it. The game runs fine but there is nothing on any of the menus when you go to build, buy, etc. this makes it frustrating as you cannot see what you are building or need to buy.

  • SOmeone sent me a picture by text message, but nothing showed up.  Also, when I tried to send one back, it never delivered.

    I tried to send a picture by text message.  After a few minutes, it responded "Not Delivered."  Later, The same person tried to send a picture back to me.  I was told it went through, but I never received it, or I can't find it.  What happened?  Do I have a setting wrong?

    See MMS here  >  About Messages
    Also see here...
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755

  • Photos on my Mac show the wrong date when imported from a portable Hard Drive

    I’ve got loads of photos that I had imported from my old PC.Last night I decided to start going through them and trying to get them sorted  
    prior to importing into iphoto. I discovered that some of the pictures (in particular ones I have taken from my old Iphone) all had the same date and time
    assigned to them. When I checked the Exif details, it listed the correct camera etc, but the date created seems to have changed to the date I copied them to my portable hard drive.  
    I thought this was strange as when they were on my PC I thought they were correct. I booted my PC up and checked the portable hard drive on Windows. When viewed on my PC the pictures all have the correct time and date assigned to them. However when I plug the same portable hard drive into my Mac the same files show up as being created on a more recent date (say 20th Jan 2013).
    I’ve done a lot of research last night, although I can find no forum with this exact problem, I feel it must have something to do with compatibility. The portable hard drive is FAT32, and I am assuming that in order to ensure all of the photos information is transferred correctly in needs to be NTFS.
    The problem I have is how do I transfer my files again from my PC to an NTFS drive, whilst keeping all of the correct date and time information assigned to the photos. My understanding is that the 2 aren’t compatible.
    Has anyone ever had this problem? It mainly seems to be with photos I have extracted from my Iphone or edited in some form by rotating them.
    I have a 13" Macbook Pro Retina with OSX Mavericks installed.

    What you may want to do is archive as a Zipfile the photos and then transfer them to the Mac.     It is possible some of the metadata is being lost on the FAT32 formatting.    USB Flashdrive might work better than a FAT32 formatted hard drive, as I do know that most USB Flashdrives are formatted about the same as SD media cards, which manage to preserve the data when copied from camera to Mac.    My big question is, do you still have the photos on media cards?  You might just want to get a media card reader on your Mac, if the photos are not on SD cards, and transfer them over with the media card reader.
    I do believe Retina MacBook Pros all have SD card readers built-in.
    Note: I've asked this be moved to the MacBook Pro forum.  MacBook without the secondary name refers to the consumer notebook Apple stopped making in 2011.

  • No picture appears in window when importing from HD camcorder.

    I've used iMovie 8 several times, importing from the same camera and for some reason now, when I'm trying to import, the video picture is not showing in the import screen - only on the camera. I've checked all connections and settings, and still no picture. I can click "import" and camera will start playing, but clearly no video is being imported because if I stop and click "done", there is nothing in my Event Library. Suggestions??

    Same problem with Sony camcorder. All the forums say it is an issue with 9.0.6 and to downgrade to 9.0.4. Trouble is I have no disk and new iMac. Shipped with 9.0.6 so can't use time capsule. Called apple and they told me to download the drivers, this was not sucessful. Any one got a copy of 9.0.4?

  • Hour glass showing instead of thumbnails when importing new photos

    I just started using Photoshop 10.  When I import photographs from my camera or from any other source, the thumbnails do not show in the catalog, I can only see an hourglass.
    If I click on the hourglass, the picture opens and the picture shows perfectly, so the file is there. However when I close the picture an d go back to the "show all" the thumbnails still does not work, it only shows an hour glass.
    This was not happening when I was using Adobe Photoshop 9 and I am still using the same Windows Vista computer.

      Try selecting the thumbnails (Shift+Click) or (Ctrl+A) to select all, then click on the top menu
    Edit à Update Thumbnail For Selected Items
    If that doesn’t work close Elements and delete the thumbnail cache by navigating to:
    C:\ProgramData\Adobe\Elements Organizer\Catalogs\MyCatalog
    In side the MyCatalog folder (or whatever name you gave your catalog) you should find a CACHE file:
    thumb.5.cache
    After deleting that file restart the elements Organizer and wait whilst it regenerates thumbnails.
    N.B. The ProgramData folder is sometimes a system hidden file, in which case please follow these instructions before starting.
    http://windows.microsoft.com/en-US/windows-vista/Show-hidden-files
     

  • LR3 Import dialog - Missing "Show in Library" option when importing existing photos

    Please add the option "Show in Library" into the right click menu when attempting to import a photo that already exists in the LR3 catalog. It was a convenient feature in LR2 to jump directly to the existing photo. In LR3 I must cancel the import dialog and search the photo manually.
    LR2
    LR3
    Maybe someone has a workaround?
    Thanks
    Andreas

    Thanks Sean.  Your reply worked.  I found them in the wrong drive.  Now I'll see if I can fix it.
    Charlie

  • LR3 Import dialog - "Show in Library" option when importing existing photos gone in LR3

    Please add the option "Show in Library" into the right click menu when attempting to import a photo that already exists in the LR3 catalog. It was a convenient feature in LR2 to jump directly to the existing photo in the catalog. In LR3 I must cancel the import dialog and search the photo manually which I find a not ideal workflow.
    Lightroom 2 dialog
    Lightroom 3 dialog
    Thanks
    Andreas

    Thanks Sean.  Your reply worked.  I found them in the wrong drive.  Now I'll see if I can fix it.
    Charlie

  • Service Interfaces not showing in the IP when imported in ID in PI7.1

    HI Experts,
         I have developed an Integration process(IP) in ESR using some Service interfaces and Operation mapping for implementing BPM.
    I am trying to import the IP into my Integration Directory. But the imported Integration process(which is now as good as a Business Service) does not show the Interfaces i have used in the BPM in the ESR.
       Without the interfaces being attached to the IP, i cannot create RD and ID's.
    This is the first time BPM is being configured in this server.
    Please guide me if there are any settings specific to ccBPM to be done in ECC.
    Please help me resolve this issue... i am in a crictical condition to meet the deadline..
    Thanx in advance,
    Nandan

    Hi Neetesh,
             Thanx for your reply. If there are any initial settings to be done in PI, please list them so that i can check if they exist in our system.
    Also,when i check(f7) my IP , its showing a message that " Container element my_interface in step Send1 is initialized but is not used ". Is this a concern ?
    I have copy pasted my interface names in the RD and InterfaceDtrmn in my ID and completed the ID part of configuration.When i test the BPM by triggering my Purchase Orders from my sender service,it is showing the following error in moni:
    "<SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="BPE_ADAPTER">UNKNOWN_MESSAGE</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:Stack>No object type found for the message. Check that the corresponding process is activated</SAP:Stack> " in error section and in TRace its showing this error:
    <Trace level="1" type="B" name="CL_XMS_PLSRV_CALL_BPE-ENTER_PLSRV">
      <Trace level="1" type="T">could not create BPE proxy for message, no XML object definition found for message 70126C4C0C4D0B11E1000000AC113034</Trace>
      </Trace>
      </Trace>
      <Trace level="1" type="System_Error">Error exception return from pipeline processing!</Trace>
    Please suggest how these can be resolved????

  • Leica M9 and Aperture3 not showing camera aperture setting when import DNG files.  Shutter speed and ISO are indicated, but not aperture.  When I export and open in Adobe Camera Raw aperture setting is displayed.

    Does any one have a suggestion as to how to get A3 to show the camera aperture setting on Leica M9 DNG files?

    You will want to read this thread in its entirety.
    The short story (as I understand it) is that the M9 body receives no information about aperture from attached lenses.  It is able to derive an estimate of the aperture, though, and it lists this derived number in the metadata field "Approximate F-stop" (not the exact field name).  Aperture (the program) does not report the contents of this proprietary field.

Maybe you are looking for

  • HT201303 how do i remove a credit card from my account

    my itune purchases are being billed to the wrong account.  I need to credit the charges made on the account ending in 1010 and bill to the account that appears in my itunes account. Please advise.  How to I remove credit card ending in 1010 from my a

  • Adobe Download Assistant ERROR

    Hi! For quite some time now, I have been trying to download the free 30 day trial of  CS6 Design and Web Premium.  However, I am unable, on my mac, to select the destination folder of Applications.  (where from what I understand is the place that any

  • Process chain stops - previous processes are green

    Hi All, We have a process chain that loads our master data each night.  It chain is mostly made up of infopackages (mostly full loads) and the change run for those objects.  We recently upgraded from 3.5 to BI7, SP16.  Since the upgrade, this chain,

  • Executing sqlldr (sql loader) from java and returning the error code

    I'm wandering do sqlldr return any error code whenever it hit error while running in java. For example, if i run in command prompt using the command below, C:\ >sqlldr uid/pwd data=abc.dat control=abc.txt It might give me some indicator that error oc

  • Group e-mail problem

    When sending a group e-mail, with my new iMac (retina 5K), everyone has been able to see the other addressees.  Checked 'When sending to a group, show all member addresses': this box was NOT ticked.