Sequence Issue - sequence keeps getting renamed?

I just upgraded to FCP 7 (from 5) and when I drop a clip into my sequence, it automatically renames the sequence as whatever that clip is labeled. Why is this, and how do I get it to stop doing this?
More info: I created the sequence settings by dragging a clip into the timeline and selecting "yes" to "Change sequence settings to match the clip settings" - is this why?

The first step in troubleshooting is to delete the Preference files associated with the application.
These instructions are for FCP 6 but should still apply:
Deleting FCP Preferences:
Open a Finder window. Set the view mode to columns:
Click the house icon that has your name next to it.
Click the folder "Library" in the next column.
Find and click the folder "Preferences" in the next column.
Find and click the folder "Final Cut Pro User Data" in the next column.
Move the files "Final Cut Pro 6.0 Prefs", "Final Cut Pro Obj Cache" and "Final Cut Pro Prof Cache" to the Trash and empty it.
When you have a stable set of preference files, download [Preference Manager|http://www.digitalrebellion.com/pref_man.htm] to back them up. If you have further problems, the backup can be recalled and you can continue working.

Similar Messages

  • External Drives Keep Getting Renamed

    My LaCie drive has a famously short USB cord, so if I move my laptop, the jack sometimes yanks out, causing everything that was using the drive to halt mid-operation.
    What's more obnoxious: when I plug the drive back in, the drive's name is unchanged (say, 'XYZ'), but the OS treats it as a drive named 'XYZ 1'. Every program that uses the drive now has to be reconfigured to look in a path beginning with XYZ 1/... instead of XYZ/.... I think restarting fixes this, but then I have to re-re-configure...and who likes restarting, anyway?
    Is there a way to force the OS to drop the ' 1' suffix from the drive without restarting?

    The good news is that I found a long-forgotten partial duplicate of my iTunes folder in /Volumes...dunno how it got there, but trashing it freed up 4GB of space! Huzzah!
    The bad news is that there are no non-aliases in this folder. Everything here is an alias, with both XYZ and XYZ 1 present.

  • IPhone 4 sync issue: apps keep getting moved and all folders deleted

    I was hoping someone could help with this: I painstakingly organized my apps (close to 100 of them) into about a dozen folders. When I synced the phone after having done that, my carefully constructed folder system got deleted and the apps were randomly scattered over eight pages, which ***** as it's gonna take forever to re-create the folders and they're not even close to being grouped the way I had them.
    I tried restoring the phone and then spent the time to reorganize the apps in iTunes instead of on the phone, and when I synced it, the same thing happened again - all my apps were scattered randomly over eight pages and all my folders were deleted.
    Anyone else having this problem or know how to fix it?

    This happened to me too! I was so frustrated. I went into the Apple store tonight to talk to them about it. The guy hadn't really heard of it happening so he talked to a "genius" and the genius said that it could happen if you have multiple backups saved in your iTunes and when you restore, it's picking up older backups. I said though that everything else that syncs is current, and it isn't picking up anything else from old backups. PLUS, SOME of my folders are there with SOME of the apps but definitely not all of them. He said the best thing to do is next time you need to do a restore, bring in your phone and computer to the Genius Bar and they could try to help.

  • When ever i try to install photoshop cc on my laptop i keep getting this error "We've encountered the following issues  installer failed to initialize. Please download adobe support advisor to detect the problem."

    when ever i try to install photoshop cc on my laptop i keep getting this error "We've encountered the following issues  installer failed to initialize. Please download adobe support advisor to detect the problem."

    start at the top and work your way down applying applicable fixes until your problem is resolved.
    if cc (win):  https://helpx.adobe.com/creative-cloud/kb/creative-cloud-desktop-application-failed.html
    if, your error is:
    "Installer failed to initialize. File not found." or "Installer failed to initialize. This could be due to missing files."
    first, rename OOBE Folder to OOBE.old.
    to find OOBE:
    64 bit win OS: Program Files x86\Common Files\Adobe\OOBE
    32 bit win OS: Program Files \Common Files\Adobe\OOBE
    mac os: HD>library>application support>adobe>caps
    mac os: USER>library>application support>adobe>OOB
    if that fails or isn't the exact error you see, uninstall, clean (http://www.adobe.com/support/contact/cscleanertool.html) and reinstall.
    if you're using a dvd to install:
    copy the disc contents to a desktop directory and install from that directory.
    if you're using a mac:
    1. Try to Create a new user account in Mac with Administrator Priviledges.
    2. Login to the New user, Navigate to Mac HD> Application> Utilities> Adobe Installer folder, Locate products like Adobe Reader, Adobe Flash, Adobe Air and un-install them
    3. Navigate to User Library> Application Support> Adobe and move Adobe to Trash.
    4. Navigate to Mac HD> Library> Application Support> Adobe and move Adobe to Trash.
    5. Start the installation again.
    if everything applicable above fails, check your installation logs:
    http://helpx.adobe.com/photoshop-elements/kb/troubleshoot-install-using-logs-elements.html

  • Oracle 11g : Sequence Issues after impdp

    Hi All,
    We are migrating from Oracle 10g to Oracle 11g. As part of this, we take a expdp from 10g and successfully did an import using impdp on to Oracle 11g database.
    But the problem is, there were few Primary key violations which occurred and all of them relate to sequences.
    The Maximum data in the tables and the last number in the sequences differed which caused the issue.
    Upon investigation and browsing the Web, http://www.nerdliness.com/article/2009/03/18/my-oracle-sequencedatapump-shenanigans ; I understood it could be because of the export taken while the application is online and writing to the database.
    I reset all the failing sequences manually and it is fine now.
    My questions now are
    *1) Can we ascertain that the export taken when the source database is offline would eliminate the sequences issue.*
    2) As this is being done in Production, I would like to make few checks to ensure that the sequences are properly imported. ---
    Again reading few websites and oracle Forums, i found the below sql's..
    select table_name, column_name, utl_raw.cast_to_number(high_value) as highval
    from dba_Tab_columns
    where owner = 'PRODUCTION_OWNER'
    AND DATA_TYPE= 'NUMBER'
    AND (OWNER, TABLE_NAME, COLUMN_NAME) IN
    (SELECT CC.OWNER, CC.TABLE_NAME, CC.COLUMN_NAME
    FROM DBA_CONS_COLUMNS CC
    JOIN DBA_CONSTRAINTS C
    ON CC.OWNER=C.OWNER
    AND CC.CONSTRAINT_NAME=C.CONSTRAINT_NAME
    WHERE C.CONSTRAINT_TYPE ='P'
    ORDER BY 3;
    SELECT SEQUENCE_NAME, MIN_VALUE, MAX_VALUE, LAST_NUMBER
    FROM DBA_SEQUENCES
    WHERE SEQUENCE_OWNER = 'PRODUCTION_OWNER'
    ORDER BY LAST_NUMBER
    If I relate the last_number with the highval and if they are same, does that mean the sequences are imported properly.
    Note: We have sequence caching done and we are on RAC.
    Edited by: ramakrishnavydyula on Jan 30, 2013 9:36 AM

    We are migrating from Oracle 10g to Oracle 11g. As part of this, we take a expdp from 10g and successfully did an import using impdp on to Oracle 11g database.
    But the problem is, there were few Primary key violations which occurred and all of them relate to sequences.
    The Maximum data in the tables and the last number in the sequences differed which caused the issue.
    it could be because of the export taken while the application is online and writing to the database.I don't know what's your database's size , and what's acceptable downtime for you, but I could never propose such a migration tecnique to any of my customers, due to excessive downtime when databases are quite large.
    It's quite obvious that you get such errors when the export is done while people are working, unless you use FLASHBACK_SCN or FLASHBACK_TIME parameter while exporting. But in this case, assuming you don't get errors (e.g. ORA-01555), you'll probably lose a lot ot transactions.
    Assuming your 10g database is running in archivelog mode (which should be the default in production DBs) did you think of using RMAN to do the migration ?

  • Sequence issue with Toplink 9048

    We are trying to get sequences to work using Toplink 9.048 but keep getting errors. We reference are sequences in our descriptors like the following:
    descriptor.setSequenceNumberFieldName("ACRS_APPOINTMENT.ID");
    descriptor.setSequenceNumberName("ACRS_APPOINTMENT_SEQ");
    and have gotten this functionality to work in 10.1.3 using this reference in the sessions.xml:
    <sequencing>
         <default-sequence xsi:type="native-sequence">
              <name>Native</name>
              <preallocation-size>1</preallocation-size>
         </default-sequence>
    </sequencing>
    however when we try to get this to work using 9.048 we get the following error:
    2006.01.09 12:03:19.342--ClientSession(15015527)--Thread[HttpRequestHandler-26533782,5,main]--Execute query ValueReadQuery()
    2006.01.09 12:03:19.358--ServerSession(2573832)--Thread[HttpRequestHandler-26533782,5,main]--Connection(374929)--SELECT SEQ_COUNT FROM SEQUENCE WHERE SEQ_NAME = #SEQ_NAME
    2006.01.09 12:03:19.374--ClientSession(15015527)--Thread[HttpRequestHandler-26533782,5,main]--Exception [TOPLINK-4002] (OracleAS TopLink - 10g (9.0.4.8) (Build 050712)): oracle.toplink.excep
    tions.DatabaseException
    Exception Description: java.sql.SQLException: ORA-00911: invalid character
    Internal Exception: java.sql.SQLException: ORA-00911: invalid character
    Error Code: 911Local Exception Stack:
    Exception [TOPLINK-4002] (OracleAS TopLink - 10g (9.0.4.8) (Build 050712)): oracle.toplink.exceptions.DatabaseException
    Exception Description: java.sql.SQLException: ORA-00911: invalid character
    Internal Exception: java.sql.SQLException: ORA-00911: invalid character
    Error Code: 911
    at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:227)
    at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:698)
    at oracle.toplink.threetier.ServerSession.executeCall(ServerSession.java:506)
    We have tried setting uses-native-sequencing to true in the sessions.xml but still get this error.
    Any help on what the exact syntax we need to enter to get it to try to read the separate sequences we have setup in the descriptors instead of trying to access a SEQUENCE object would be appreciated.
    Thanks,
    Mark

    Mark,
    Have you looked at the examples shipped with 9.0.4.X. The 2-tier Employee example uses a sequence table and works as expected.
    The #SEQ_NAME in the SQL almost looks like the sequence query is be customized instead of using the default generated SQL string.
    Doug

  • Sequence of inputText boxes getting misaligned when page is rendered second

    Hi All,
    I'm facing an issue where the inputText boxes on my page get's misaligned when the page is rendered second time.In my application i'm selecting a product and adding it to my cart.Then on doing checkout, for the guest users, registartion page(jspx) is rendered.When i click "cancel" button on registration page then i'm redirected to select another product and follow the same flow.But when registration page is rendered second time the sequence of inputText boxes gets changed.For example
    Sequence when Page is rendered First time
    FirstName
    Middle Name
    LastName
    MobileNo
    When page is rendered second time
    First NAme
    LastName
    Mobile No
    Middletname
    All these textBoxes are in a <af:panelForm .
    Please suggest a solution.I'm using 10g.

    <af:regionDef var="contacts">
    <af:panelForm labelWidth="16%" maxColumns="2" rows="4" width="100%"
    partialTriggers="compId335 tdnothercheckbox compId333 compId328 compId349 compId334 compId355">
    <af:selectOneChoice id="compId351" value="#{bindings.MM.inputValue}"
    inlineStyle="width: 125px"
    binding="#{typeChange.mr_msSelecOneChoice}"
    rendered="true" immediate="true"
    required="#{!RegistrationIdtypeChange.tdnRegPprFlag}"
    label="#{messageBean['REG_MM']}">
    <f:selectItems value="#{bindings.MM.items}"/>
    </af:selectOneChoice>
    <af:inputText id="compId335F"
    label="#{messageBean['FIRST_NAME']}"
    immediate="true"
    inlineStyle="width: 125px" maximumLength="50"
    required="#{!IdtypeChange.tdnRegPprFlag}"
    value="#{bindings.FirstName.inputValue}"
    validator="#{ValidationsBean.FirstNameValidator}"
    binding="#{IdtypeChange.firstNameInputText}"/>
    <af:inputText id="tdncompId336"
    label="#{messageBean['MIDDLE_NAME']}"
    inlineStyle="width: 125px" maximumLength="50"
    value="#{bindings.MiddleName.inputValue}"
    validator="#{umValidationsBean.MiddleNameValidator}"/>
    <af:inputText id="compId337"
    label="#{messageBean['LAST_NAME']}"
    inlineStyle="width: 125px" maximumLength="50"
    immediate="true"
    required="#{!RegistrationIdtypeChange.tdnRegPprFlag}"
    value="#{bindings.LastName.inputValue}"
    validator="#{umValidationsBean.LastNameValidator}"
    binding="#{RegistrationIdtypeChange.lastNameInputText}"/>
    <af:inputText id="compId338"
    label="#{messageBean['EMAIL_ADDRESS']}"
    immediate="true"
    inlineStyle="width: 125px" maximumLength="100"
    required="#{!RegistrationIdtypeChange.tdnRegPprFlag}"
    validator="#{umValidationsBean.emailValidator}"
    value="#{bindings.EmailAddress.inputValue}"
    binding="#{RegistrationIdtypeChange.emailInputText}"/>
    <af:inputText id="compId339"
    label="#{messageBean['ALTERNATE_EMAIL']}"
    maximumLength="100"
    validator="#{umValidationsBean.emailValidator}"
    value="#{bindings.AlternateEmail.inputValue}"/>
    <af:inputText id="compId343"
    label="#{messageBean['MOBILE_PHONE']}"
    immediate="true"
    inlineStyle="width: 125px" maximumLength="10"
    value="#{bindings.CellPhone.inputValue}"
    required="#{!RegistrationIdtypeChange.tdnRegPprFlag}"
    validator="#{ValidationsBean.MobileNoValidator}"
    shortDesc="Enter 10 digit mobile number."
    binding="#{RegistrationIdtypeChange.mobNoInputText}"/>
    <af:inputText id="compId342"
    label="#{messageBean['UM_HOME_PHONE']}"
    inlineStyle="width: 125px" maximumLength="10"
    value="#{bindings.HomePhone.inputValue}"
    shortDesc="Enter 10 digit phone number.for e.g. 0224283738."/>
    <af:inputText id="compId344"
    label="#{messageBean['UM_WORK_PHONE']}"
    inlineStyle="width: 125px" maximumLength="10"
    value="#{bindings.WorkPhone.inputValue}"
    shortDesc="Enter 10 digit phone number.for e.g. 224283738."/>
    <af:selectOneChoice id="compId349"
    value="#{bindings.IDType.inputValue}"
    inlineStyle="width: 125px"
    required="#{!RegistrationIdtypeChange.tdnRegPprFlag}"
    immediate="true" autoSubmit="true"
    label="#{messageBean['UM_REG_IDTYPE']}"
    valueChangeListener="#{RegistrationIdtypeChange.ChangeIdType}"
    binding="#{RegistrationIdtypeChange.idTypeSelecOneChoice}">
    <f:selectItems value="#{bindings.IDType.items}"/>
    </af:selectOneChoice>
    <af:inputText id="compId3499" inlineStyle="width: 125px"
    immediate="true"
    binding="#{RegistrationIdtypeChange.other_Id_Type_InputText}"
    value="#{bindings.OtherDocType.inputValue}"
    label="#{messageBean['REG_OTHER_IDTYPE']}"
    required="#{!RegistrationIdtypeChange.tdnRegPprFlag}"
    partialTriggers="compId349"
    rendered="#{processScope.OtherId=='true'}"></af:inputText>
    <af:inputText id="compId350" immediate="true"
    value="#{bindings.IDInformation.inputValue}"
    inlineStyle="width: 125px"
    label="#{messageBean['REG_IDINFO']}"
    binding="#{RegistrationIdtypeChange.idInfoInputText}"
    required="#{!RegistrationIdtypeChange.tdnRegPprFlag}">
    <af:validator binding="#{bindings.IDInformation.validator}"/>
    </af:inputText>
    <af:selectInputDate id="compId352"
    inlineStyle="width: 125px"
    value="#{bindings.BirthDate.inputValue}"
    label="#{messageBean['REG_BIRTHDATE']}"
    required="#{!IdtypeChange.tdnRegPprFlag}"
    immediate="true"
    validator="#{ValidationsBean.DateofBirthValidator}"
    binding="#{RegistrationIdtypeChange.dobSelectInputdate}">
    <!-- <af:validator binding="#{bindings.BirthDate.validator}"/> -->
    <f:convertDateTime pattern="#{bindings.BirthDate.format}"/>
    </af:selectInputDate>
    </af:panelForm>
    <af:inputHidden id="compId348"
    value="#{bindings.ContactVO1ModId.inputValue}"/>
    </af:regionDef>
    </jsp:root>
    this is a region included in my main page Registration.jspx

  • Oracle Client 11g R2 sequencing issue with App-V 5.0

    Hi All,
    Can anyone help on a issue that I face while I try to create the ODBC connection after I have published the sequenced application. I get the error message as shown :
    Have already tried sequencing by creating the Dummy ODBC user DSN and system DSN on the base machine  before sequencing and have added the TNSNames.ora path as an environment variable.
    Thank in advance for your help!Installation of 32 bit and 64 bit 11.2.0.1 Oracle client on windows 7

    Akanksha,
    If your application is 64-bit, you need only 64-bit Oracle client software which installs 64-bit ODBC.
    There is no need to install 32-bit Oracle client.
    I am suspecting that some of the required components are missing from your installation.
    1)Are you able to connect to the Database using the the sql*plus ?
    (You need to open the sql*plus session from the machine where ODBC application is running)
    2) Try to run the application as administrator user and see whether it helps.
    3)What is the type of client installation which you performed ? (Administrator/Runtime/Custom)
    If it is custom type, might be you are missing some components.
    Try to install as Administrator and see whether it helps.
    Regards,
    Ravi   

  • I am having trouble connecting to my network all of a sudden. It is not an issue with the service/router. I keep getting kicked off and getting a ! in my airport... anyone know what's up with this?

    I am having trouble connecting to my network all of a sudden. I am able to connect to other networks but not my own. It is not an issue with the service/router because other devices connect fine. I keep getting kicked off and getting a ! in my airport. Last time it happended I called apple and the suggested I wipe my HD and reinstall everything. I did and it did not work. One day I turned my laptop on and it connected no problem. Now it has kicked me off again. I tried resetting my IP address but that does not work either! Has anyone had this problem?

    Try this:
    Apple menu / System Preferences / Network.
    Click Location: and select Edit Locations..
    Click + (plus sign), and enter a name for the new location - anything will do.
    Apply this.

  • After upgrading to mountain lion i keep getting an error message saying my startup disc is full. it shouldnt be full because there is barely anything on there and i was running windows with bootcamp prior to this with no issues

    after upgrading to mountain lion i keep getting an error message saying my startup disc is full. it shouldnt be full because there is barely anything on there and i was running windows with bootcamp prior to this with no issues. my computer now freezes and programs close randomly. The usual command for opening windows with bootcamp doesnt work. once in restarted my computer after it froze and it rebooted in windows automatically. i really just want to know if there is a way to take the upgrade off my laptop because it is very annoying.

    Hi Memalyn
    Essentially, the bare issue is that you have a 500GB hard drive with only 10GB free. That is not sufficient to run the system properly. The two options you have are to move/remove files to another location, or to install a larger hard drive (eg 2TB). Drive space has nothing to do with SMC firmware, and usually large media files are to blame.
    My first recommendation is this: download and run the free OmniDiskSweeper. This will identify the exact size of all your folders - you can drill down into the subfolders and figure out where your largest culprits are. For example, you might find that your Pictures folder contains both an iPhoto Library and copies that you've brought in from a camera but are outside the iPhoto Library structure. Or perhaps you have a lot of purchased video content in iTunes.
    If you find files that you KNOW you do not need, you can delete them. Don't delete them just because you have a backup, since if the backup fails, you will lose all your copies.
    Don't worry about "cleaners" for now - they don't save much space and can actually cause problems. Deal with the large file situation first and see how you get on.
    Let us know what you find out, and if you manage to get your space back.
    Matt

  • I am using itunes 10 and trying to consolidate my files.  I keep getting the error "Copying files failed.  The file name was invalid or too long".  How can I indentify what file is causing this problem or resolve this issue?

    I am using itunes 10 and trying to consolidate my files.  I keep getting the error "Copying files failed.  The file name was invalid or too long".  How can I indentify what file is causing this problem or resolve this issue?

    BUMP
    Yes, I just get that message. I don't see how I could investigate this problem.
    I didn't mention that this happened when I was consolidating my library, not copying files to another computer.
    In other words, I'm using a "normal" itunes procedure, itunes won't complete it, and won't tell me exactly why or how to figure out how to fix it...
    Is there at least some easy way to tell which files were successfully copied to my itunes music folder so I can work on moving the uncopied files?
    Can anybody help me?

  • I keep getting an error message, error 7  windows error 127, I am using windows 8.1, have uninstalled installed but same issue have repaired apple application support

    any suggestions as to why i keep getting the message above, I now cannot open itunes or sync, I have updated all windows

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • I am trying to update an ipod version 2.2 with itunes but I keep getting an error (-1).  Is this an hardware issue according to Apple and if so is there any way to fix this.?

    I am trying to update an ipod version 2.2 with itunes but I keep getting an error (-1).  Is this an hardware issue according to Apple and if so is there any way to fix this.?

    Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.
    If you disabled yuor computer's security software then that indicates a hardware problem,
    I would say it is not workth fixint your old. likely a 1G. iPOd.

  • TS3297 I keep getting the error 306 cannot connect to the iTunes Network when downloading songs on iTunes. I've tried all the troubleshooting steps from the forums and my technical issues are still unresolved. I have Windows 7. Please help!!

    I keep getting the error 306 cannot connect to the iTunes Network when downloading songs on iTunes. I've tried all the troubleshooting steps from the forums and my technical issues are still unresolved. I have Windows 7. Please help!!

    iTunes Store loads partially or returns "Error 306" or "Error 10054"
    Proxies, parental control settings and software, security or filtering software, or a bad iTunes Store cache can cause this.
    To address proxies, Remove Internet Options proxy settings  ( http://support.apple.com/kb/TS1490 ) and connect to the Internet without a proxy.
    To reset iTunes Store cache:
    In iTunes, choose iTunes > Preferences (Mac) or Edit > Preferences (PC).
    Click the Advanced tab.
    Click the "Reset cache" button.
    Click OK and see if the issue is resolved.
    Adjust Parental Controls in iTunes:
    Open iTunes.
    Access iTunes preferences:
    On a Mac: From the iTunes menu, choose Preferences.
    On a Windows PC: From the Edit menu, choose Preferences.
    Click the Parental Controls tab.
    Remove restrictions on Parental Controls.
    For more information on parental controls or content filtering software, see iTunes 10.5 for Windows: May see performance issues and blank iTunes Store.
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • I am not able to open your answer for some reason my computer is not opening it in Explorer, it's not responding and I keep getting error messages and I don't know how to open it in another browser when Explorer experiencing issues. Heather

    I am not able to open your answer for some reason my computer is not opening it in Explorer, it’s not responding and I keep getting error messages and I don’t know how to open it in another browser when Explorer experiencing issues.
    Heather

    If you  have IE version 10 go to TOOLS and change the option to use Compatibility View

Maybe you are looking for