Ghost clip appears in canvas only when other clips are placed in its place

Gd afternoon, this may sound crazy but here we go. the space on the timeline is blank, and when the sequence is played the blank section shows nothing but black screen. however when i drop any clip in the empty space on the timeline an old clip I changed the speed of shows over whatever clip i just dropped in the empty spot. Again, when the spot is empty nothing shows, only when a different clip is placed in that spot does the "ghost" clip appear over the new clip and the space that the ghost clip holds shows a blue rendered line for the speed that was changed.
How do I get rid of this ghost clip?

+thanks, i tried to delete the rendered clip but no help+
No, what is required when the problem reaches the stage you described is to delete ALL of the render files for that sequence. One way to do that is to go to Tools > Render Manager and navigate to the problem sequence and clicking in the Remove column for that sequence. Then click OK.
That will delete all of the render files for the sequence. Then you re-render. This sometimes works, as I said.

Similar Messages

  • Callback function may be NULL only when database handles are read-only

    Hi,
    I am getting some errors when trying to run my java code that will try to open a few cursors and join them to fetch the data.
    ath .:/usr/src/db-4.7.25.NC/java/src:/usr/local/BerkeleyDB.4.7/lib/db.jar bdbtest
    MyDbs: Callback function may be NULL only when database handles are read-only
    Error on inventory secondary cursor:
    java.lang.IllegalArgumentException: Invalid argument: Callback function may be NULL only when database handles are read-only
    What does that error mean? How can I resolve it? I am following the sample program and I can't find anything related.
    Here is my code.
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.Database;
    import com.sleepycat.db.SecondaryDatabase;
    import com.sleepycat.db.DatabaseConfig;
    import com.sleepycat.db.DatabaseType;
    import java.io.FileNotFoundException;
    import com.sleepycat.db.DatabaseEntry;
    import com.sleepycat.db.SecondaryCursor;
    import com.sleepycat.db.Cursor;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.LockMode;
    import com.sleepycat.db.OperationStatus;
    import com.sleepycat.db.SecondaryCursor;
    import com.sleepycat.db.SecondaryConfig;
    import com.sleepycat.bind.EntryBinding;
    import com.sleepycat.bind.serial.SerialBinding;
    import com.sleepycat.bind.tuple.TupleBinding;
    import com.sleepycat.db.Cursor;
    import com.sleepycat.db.DatabaseEntry;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.LockMode;
    import com.sleepycat.db.OperationStatus;
    import com.sleepycat.db.SecondaryCursor;
    public class bdbtest {
    public static void main(String args[]) {
    SecondaryDatabase myDatabase = null;
         Database primDB = null;
         Cursor cursor = null;
    try {
    // Open the database. Create it if it does not already exist.
    DatabaseConfig dbConfig = new DatabaseConfig();
         dbConfig.setErrorStream(System.err);
    dbConfig.setErrorPrefix("MyDbs");
         dbConfig.setType(DatabaseType.BTREE);
    dbConfig.setAllowCreate(true);
         SecondaryConfig mySecConfig = new SecondaryConfig();
         mySecConfig.setErrorStream(System.err);
    mySecConfig.setErrorPrefix("MyDbs");
         mySecConfig.setType(DatabaseType.BTREE);
    mySecConfig.setAllowCreate(true);
         primDB = new Database("/tmp/bdb_ca_db.db",
    "bdb_ca_db",
    dbConfig);
    dbConfig.setAllowCreate(true);
    myDatabase = new SecondaryDatabase("/tmp/bdb_ca_sdb.db",
    "ca_sdb_res_alias",
    primDB,
    mySecConfig);
         String res ="in-1";
         SecondaryCursor secCursor = null;
         DatabaseEntry searchKey =
    new DatabaseEntry(res.getBytes("UTF-8"));
         DatabaseEntry foundKey = new DatabaseEntry();
    DatabaseEntry foundData = new DatabaseEntry();
         secCursor =
    myDatabase.openSecondaryCursor(null, config);
    // Search for the secondary database entry.
    OperationStatus retVal =
    secCursor.getSearchKey(searchKey, foundKey,
    foundData, LockMode.DEFAULT);
         if (retVal == OperationStatus.SUCCESS){
              System.out.println("succ");
         }else {
              System.out.println("fail");
    while (retVal == OperationStatus.SUCCESS) {
    String keyString = new String(foundKey.getData(), "UTF-8");
    String dataString = new String(foundData.getData(), "UTF-8");
    System.out.println("Key | Data : " + keyString + " | " +
    dataString + "");
    secCursor.getNextDup(searchKey, foundKey,foundData, LockMode.DEFAULT);
         } catch (Exception e) {
    System.err.println("Error on inventory secondary cursor:");
    System.err.println(e.toString());
    e.printStackTrace();
         finally {
    // Make sure to close the cursor
              try {
              cursor.close();
              }catch (com.sleepycat.db.DatabaseException e) {
    System.out.println("All done.");
    }

    Hi,
    The error is because either the primary database or the secondary database is configured as read only and the callback to create the secondary keys is null. A quick glance of the code, it appears as if you did not set up the secondary database correctly. In the Getting Started Guide for JAVA API chap 10, we have detailed information on what needs to be done as well as a code example. Please refer to http://www.oracle.com/technology/documentation/berkeley-db/db/gsg/JAVA/index.html and look for Chap 10.
    regards,
    Mike Brey, Oracle Berkeley DB

  • ORA-12721: operation cannot execute when other sessions are active

    Hi,
    I started my DB like following :
    1) Change INIT.ORA file;  unset parallel_server parameter.
    2) Execute these commands:
    STARTUP MOUNT ;
    ALTER SYSTEM ENABLE RESTRICTED SESSION;
    ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0;
    ALTER SYSTEM SET AQ_TM_PROCESSES=0;
    ALTER DATABASE OPEN;
    SHUTDOWN IMMEDIATE;
    SQL> STARTUP RESTRICT  pfile='C:\oracle\product\10.2.0\db_1\database\initORCL.ora';
    ORACLE instance started.
    SQL> alter database national character set INTERNAL_CONVERT UTF8;
    alter database national character set INTERNAL_CONVERT UTF8
    ERROR at line 1:
    ORA-12721: operation cannot execute when other sessions are activeWhy this error when DB is opened in strict and I'm the only user ?
    SQL> select count (*) from v$session;
      COUNT(*)
            20Any solution ?
    Thank you.

    Hi
    This operation is dangerous, please ensure that you have a full backup before doing that operation.
    Please use that order :
    SHUTDOWN IMMEDIATE;
    -- make sure there is a database backup you can rely on, or create one
    STARTUP MOUNT;
    ALTER SYSTEM ENABLE RESTRICTED SESSION;
    ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0;
    ALTER SYSTEM SET AQ_TM_PROCESSES=0;
    ALTER DATABASE OPEN;
    ALTER DATABASE CHARACTER SET <new_character_set>;
    -- a alter database takes typically only a few minutes or less,
    -- it depends on the number of columns in the database, not the
    -- amount of data.
    SHUTDOWN;
    Please note that :
    The command requires the database to be
    open but only one session, the one executing the command, is allowed.
    For the above error conditions Oracle9i will report one of the errors:
    ORA-12719: operation requires database is in RESTRICTED mode
    ORA-12720: operation requires database is in EXCLUSIVE mode
    ORA-12721: operation cannot execute when other sessions are active
    Oracle9i can also report:
    ORA-12718: operation requires connection as SYS
    if you are not connect as SYS (INTERNAL, "/ AS SYSDBA").
    Let us know if this helps.
    regards,
    Hub
    Edited by: Hub on Dec 10, 2008 1:22 PM

  • Ipad drops streaming radio when other apps are in use

    why does ipad drop streaming radio app when other apps are in use?
    what can I do to prevent this, if anything?

    To rule out the app itself, try downloading another free radio app (CBC Canada, iFreeRadio, for example) and see if they behave the same way.
    Background radio streaming should work fine - one of the types of apps that can truly run in background.

  • AddNode.sh fails when Voting Disks are placed in ASM

    Hi Forum, adding a node with addNode script throws an error when Voting disks are placed on ASM. Did anyone else had this issue or any ideas ?
    Thanks a lot for your help.
    [grid@host02 bin]$ sh -x ./addNode.sh -silent "CLUSTER_NEW_NODES={host01}" "CLUSTER_NEW_VIRTUAL_HOSTNAMES={host01-vip}"
    + OHOME=/u01/app/11.2.0/grid
    + INVPTRLOC=/u01/app/11.2.0/grid/oraInst.loc
    + ADDNODE='/u01/app/11.2.0/grid/oui/bin/runInstaller -addNode -invPtrLoc /u01/app/11.2.0/grid/oraInst.loc ORACLE_HOME=/u01/app/11.2.0/grid -silent CLUSTER_NEW_NODES={host01} CLUSTER_NEW_VIRTUAL_HOSTNAMES={host01-vip}'
    + '[' '' = Y -o '!' -f /u01/app/11.2.0/grid/cv/cvutl/check_nodeadd.pl ']'
    + CHECK_NODEADD='/u01/app/11.2.0/grid/perl/bin/perl /u01/app/11.2.0/grid/cv/cvutl/check_nodeadd.pl -pre -silent CLUSTER_NEW_NODES={host01} CLUSTER_NEW_VIRTUAL_HOSTNAMES={host01-vip}'
    + /u01/app/11.2.0/grid/perl/bin/perl /u01/app/11.2.0/grid/cv/cvutl/check_nodeadd.pl -pre -silent 'CLUSTER_NEW_NODES={host01}' 'CLUSTER_NEW_VIRTUAL_HOSTNAMES={host01-vip}'
    + '[' 1 -eq 0 ']'
    [grid@host02 bin]$
    Output from /u01/app/11.2.0/grid/cv/log/cvutrace.log.0:
    <snipped>
    TaskVotingDisk:Voting Disk:TASK_SUMMARY:FAILED:CRITICAL:VERIFICATION_FAILED
    ERRORMSG(GLOBAL): PRVF-5430 : Voting disk configuration does not meet Oracle's recommendation of three voting disk locations
    ERRORMSG(GLOBAL): PRVF-5431 : Oracle Cluster Voting Disk configuration check failed
    ERRORMSG(host01): PRVF-5449 : Check of Voting Disk location "ORCL:SPT_OCRVOTE01(ORCL:SPT_OCRVOTE01)" failed on the following nodes:
    ERRORMSG(host01): No such file or directory
    ERRORMSG(host01): PRVF-5449 : Check of Voting Disk location "ORCL:SPT_OCRVOTE02(ORCL:SPT_OCRVOTE02)" failed on the following nodes:
    ERRORMSG(host01): No such file or directory
    <snipped>
    Edited by: user12857528 on 14/11/2010 18:39

    Thanks Sebastian, brilliant - setting of IGNORE_PREADDNODE_CHECKS=Y did the trick !
    The only thing is that my neat 3 Voting disks are reduced to two only now:
    Before it was:
    [grid@host02 bin]# ./crsctl query css votedisk
    ## STATE File Universal Id File Name Disk group
    1. ONLINE 4dea88bcf2fa4f11bfdbcca6e3aade14 (ORCL:SPT_OCRVOTE01) [SPT_OCRVOTE]
    2. ONLINE 71e395e6e30e4febbf907305dc7827c6 (ORCL:SPT_OCRVOTE02) [SPT_OCRVOTE]
    3. ONLINE 187d3474f0fe4fe0bf5cec1bb35203ae (ORCL:SPT_OCRVOTE03) [SPT_OCRVOTE]
    Located 3 voting disk(s).
    where now it is:
    [grid@host01 bin]$ ./crsctl query css votedisk
    ## STATE File Universal Id File Name Disk group
    1. ONLINE 4dea88bcf2fa4f11bfdbcca6e3aade14 (ORCL:SPT_OCRVOTE01) [SPT_OCRVOTE]
    2. ONLINE 71e395e6e30e4febbf907305dc7827c6 (ORCL:SPT_OCRVOTE02) [SPT_OCRVOTE]
    Located 2 voting disk(s).
    and third disk is in mount_status closed after adding node host01.

  • Condition type has to executed only when other condition type is availabl

    Scenario:  We have two freight condition types YHD1 & YHD6. This YHD6 condition type is a Percentage type calculation and dependent of YHD1 value, for example
    YHD1: 30 EUR then the condition value is 30 EUR
    YHD6: 10 % then the condition value is 3 EUR
    Issue: YHD6 is fetched from Condition records at the time of delivery document, where as YHD1 condition type is inserted into the delivery document through a BDC program in a custom program. BDC program is written in such a way that YHD1 condition record is applied on the first line. This custom program is supposed to execute only after PGI is done for delivery and shipment is created.
    Since, YHD6 is fetched from Condition records; this condition is applied when the delivery document is created. And when this custom program is executed, system is looking to insert YHD1 condition on first line, but YHD6 is already exists this step is unsuccessful.
    Requirement: is it possible to determine YHD6 condition only when YHD1 is available in the document. I mean, YHD1 condition type has to be executed first and then YHD6.

    Hi All,
    Thanks for repling to my query.
    I will explore the opition of developing a Routine to restrict YHD6 condition type. But i have one doubt, suppose i have assigned a routine to YHD6 condition type and when delivery document is created, system fetches the YHD6 condition from the condition record, but due to this routine it will restrict to update the value.
    But when i update the delivery document with YHD1 condtion through custom program, NOW, does the system calls YHD6 again so that now the requirement is fullfilled or do i need to update the Pricing again after YHD1..
    I kindly reqeust you to clarify my doubt, however, i will take up this with my ABAPer and develop a routine.
    Thanks in advance.
    Warm Regards,
    Sridahr

  • Email notification to end-user only when both resources are provisioned

    Hello Gurus,
    My client has a requirement where the end-user needs to be sent an email notification as soon as his account gets created in OID and EBS.
    So the next time when the user logs in; he should be able to access both his accounts. But the email should be sent only when the 2 accounts are succesfully created.
    How can we do that by means of process tasks and adapters?
    Can anybody give an idea about how can we provide this functionality in the best way OOTB or custom way (code snippet) ?
    Thanks,
    - JHB.

    Hi
    If you are using OOTB connectors for OID and EBS then this requirement can be achieved by using OIM API.
    On successful response of 'Create user' in OID or EBS call a custom adapter and check for the provisioned status of other RO i.e. on completion of Create User task of OID, check for prov status of EBS and send the mail accordingly.
    If the user is not provisioned to the other resource, then do not send the mail. Otherwise if the user is already provisioned to the other resource, send the mail to the user. This approach is based on the assumption that there is no link between the provisioning to OID and provisioning to EBS.
    Correct me if I missed something.
    Hope this helps.

  • Firefox is showing a grey globe for secure site when other browsers are showing a lock icon.

    We have several sites that have SSL Certificates. When the website switches to HTTPS, Firefox still shows our pages with a grey globe. Sites (like Amazon) are showing they are secure displaying HTTPS pages. Other browsers are displaying our pages secure like they should.

    a grey globe should only be shown for a "secure" page when there's mixed content on that page
    https://blog.mozilla.org/ux/2012/06/site-identity-ui-updates/
    https://developer.mozilla.org/en-US/docs/Security/MixedContent

  • Items Moving on Paper Layout When Other Items are Moved

    I am new to Oracle Reports development, so I apologize for the elementary question in advance. I could not find a solution searching the forum.
    When I am moving a text item on the paper layout editor to reposition it other items are moving along with that item. I have set both the confine and flex properties off. What am I missing here?
    Thanks in advance!
    Kyle

    Problem solved.
    I just realized that the flex should be turned off since this option is used to keep item relations together when one item moves.

  • Puzzling panther behavior -- aps launch only when others are open

    Hello Appleheads ~
    I complained a while back about a software update from apple which blocked itunes and Final Cut Pro from launching in 10.3.9. No solution was found.
    Now I have found that when I launch Protools 6.4.1 first, I am able to launch and use itunes and FCP. I don't know why they work when I launch protools first, but I cannot launch them without opening PT first. Strange behavior, but I can live with it.
    Any advice appreciated, however I am inclined not to touch my system -- as long as it behaves this way -- until I can clone my Mac HD.
    thanks people
    c-post

    Hello Rick,
    Through all the research I have done so far and talking with a few other coworkers what the common issues that cause this are is:
    1. Antivirus: disabling the antivirus is not good enough it needs to be totaly uninstalled and retested.
    2. startup programs: these need to be disabled through either Safe mode with networking or the start menu or MSconfig.
    3. Office addins: Disable all of them see if that helps. Then turn them back on one by one to see which addin is causing the issue.
    To disable addins: 1. open up regedit and navigate to this key. HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word\Addins and HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\Word\Addins
    Then change the LoadBehavior to 0 this will disable the addin. 3 lets it run. Since this affected only one user HKEY_LOCAL_USER might be your best bet but don't rule out the other location.
    To verify there are no addins running go to the File tab>options>Add-Ins make sure nothing is listed under Active Application Add-ins.
    I hope this helps
    Thanks,
    Paul Slaathaug Sr. Support Engineer - Microsoft Word

  • IPhoto events appear empty but only when I click on them...

    After reaching 56,000 photos in my iphoto library, I decided to upgrade to Aperture 3.3
    I have tried sharing the iphoto library between both programs but in iPhoto there is a strange problem...
    If I click on "Photos" all my photos are there.
    If I click on "Events" all the Events appear with the Key Photo uppermost and the number of photos in each even stated...
    BUT if I click on any individual event, it says "No photos" and nothing comes up.
    I have rebuild the thumbnails and now the entire database but with no luck
    Any suggestions warmly received

    anything here that helps?
    Search the forum for other posts - I believe that Terance solved a problem like this recently
    LN

  • Blurry iSight only when other party connects

    I have read the numerous other issues with blurry video, however, I haven't seen one with my problem. My preview looks crystal clear until I invite another party for a video conf. Once they accept, my viedo gets slightly blurry.
    My bandwidth is 4.5MB down and 500 kb up, which should be sufficient. I have made the changes to preferences/quicktime.
    Any suggestions?
    Thanks,
    Ben

     Are you running ANY other apps while trying to video chat? If so, shut down everything, reboot your modem (and router if you use one,) restart your Mac, close any apps that you have set to launch as System Preferences > Accounts > Login Items, launch iChat AV only, and try video again. If you experience the same problem, you can try the following to track down the cause of your problem and resolve it.
    ALL parties to the problem chat should Check Broadband Speed. (Buddy Names for iChat Test if you need testers.)
    If speed is adequate for all parties, ALL parties to the problem chat should test with more than one other user to determine which system is causing the problem. Then the user of the problem system should troubleshoot and consider any untried Help for iChat AV 3 Problems suggestions that are relevant to the problem system.
    Please let us know what fixed it for you.
    Cheers,
    Jim

  • MIDI note input appears 1 octave lower when controller pads are hit

    I can't figure this out and I've wasted 5 hours today trying to correct it....
    I have recently noticed that midi input from my padKontrol is being transposed down 1 octave (ie I hit an A2, it appears and sounds in my midi applications as A1). This does not occur with midi data that comes direct from my Axiom 61 keyboard; however, it does happen with another device (MV8000) I have that uses the Axiom's Midi IN interface. I hit a pad on the Mv that is assigned to A2, it shows up as A1 in the Logic transport. In Battery it will trigger the cell assigned to A1 instead of A2.
    I'm perplexed because it is happening with two different devices on two different interfaces, yet the Axiom doesn't do it on its own ouput, but it does occur on the data received at the midi in on its interface. Doesn't make sense and it occurs both in Logic and Battery. I'm thinking its an AMS/Core Midi issue since hte padKontrol is truly plugnd play (did not have to install drivers), but I dont have clue on how to get AMS to act right. I couldn't find another applicable forum to post this so I am asking here since Logic is the closest subject to my issue.
    Anybody have any ideas?

    Thanks for the response. I know the two pieces of hardware that are impacted pretty well and they have no setting to transpose outbound midi notes in realtime. I bellieve I found the problem to actually be software related, In Logic, somehow I had the middle C setting set to C3. When I switched it to Roland C4, which I think is the default, the notes I hit on my controller and the MV appeared in the transport as they were programmed. As far as Battery goes, I think it may default to midlle C at C3 (I'll have to check), but I set it to transpose midi input up 1 octave.

  • MBP shuts off when hot [only when battery plugged in even if its on ac pow]

    So when my early 2006 MBP heats up, it shuts off. This only happens with this specific aftermarket battery that I bought. Even when I have ac power with that battery installed, it will shut off. When the battery is out and it is running on ac power it will never shut of, even when heated beyond what my oven can do.
    I understand it is the aftermarket battery that is causing this. But is there a solution to this? I did everything from PRAM reset to calibrating the battery. But it did not help. I can't afford an official battery on a student budget so that is a no go for me.

    I understand your cost concerns but the symptoms you've mentioned should not be ignored or masked by doing something that covers them up instead of eliminating them. I would contact the battery seller/maker and seek relief that way. Continuing use under those conditions can lead to damage, and I don;t believe there is anything you can do to mitigate the issue as long as you are sure the battery is the root cause.
    Before contacting anyone, you need to get a utility that reads temps. A lot of Mac notebooks can be "to hot" to the touch but not dangerously hot to the components. Best not to guesstimate temps. Try this Dashboard widget:
    http://www.apple.com/downloads/dashboard/status/istatpro.html
    Also understand that, when you run a MacBook Pro with the battery removed, the processor speed clocks back quite a bit. This article:
    http://support.apple.com/kb/HT2332?viewlocale=en_US
    explains why but does not say how much. Knowledgeable posters hear have suggested it's significant--clocking back to either 1/2 rated speed or to 1gHz. That will reduce temps anyway.
    You may want to post your "Battery Information" section from System Profiler (in your Utilities folder) so we can look at battery condition. That may provide you with some extra ammo for confronting the battery makers should that path prove appropriate. Omit any serial numbers when posting battery info.

  • Artists not appearing on iPod menu when the songs are definitely there?!

    I have some artists on my iPod that don't appear on the main menu.
    Here is an example. Big Star are on the iPod and I can find their songs through the Songs menu but they don't appear at all as an Artist. I have checked that it is spelled correctly etc.
    There are other examples, I assume it is something I have done wrong with the settings.
    Anyone got any ideas?
    Thanks.

    I've worked it out. Some of the albums are incorrectly listed as compilations and that edits them out of the main artist menu.
    Just in case anyone else has the same problem.

Maybe you are looking for