Major issues after Lion update - need help fast (please!)

Following instructions learned on this discussion board I attempted to do a clean install of FCP X & Lion on a wiped drive.  I first cloned my main (Mac) drive onto another internal drive, then wiped the original Mac drive clean.  Next, I installed Lion on that drive and then was stymied at the Migration Assistant as it only gave the option to transfer ALL apps, and not specify which of those I would like to transfer.  I was under the impression that FCP 7 and FCP X should not reside on the same drive.  Therefore I manually copied all but the "FCP Studio" folder back onto the main drive and then used the Migration assistant to transfer all the rest of the files.  Trouble is that I now somehow have 2 user accounts, and they are both acting very differently:
- In the new user account FCP X opens with almost all files intact yet there is no audio and since Aperture doesn't appear on this account there are no stills in my project(s).
- In the old (orginal) user account FCP X opens with nothing more than my project names visible, yet Aperture (and all other apps) ARE visible on this account
My questions are as follows:
1. Is there a way to combine these accounts?
2. How do I recover audio files (these are primarily V/O tracks and Smart Sound music tracks)
3. Is there some other workaround or re-do that I should do?
Thanks in advance!

You might  want to post the user account issue in the Lion discussion group. Sounds like you created a user account when you installed Lion and then moved over a user account, which is why you have two accounts.
I believe you can work around this, but it would be best to get advice from a Lion OS X expert. Hence the other discussion group.

Similar Messages

  • My screen is completely white, i've tried holding lock and home buttons as seen on you tube something called 'white screen of death' its goes black (think it switches off) then back to the white screen need help fast please!

    my screen is completely white, i've tried holding lock and home buttons as seen on you tube something called 'white screen of death' its goes black (think it switches off) then back to the white screen need help fast please!

    If you have not done a factory reset on the device, I recommend doing a complete  factory reset.  
    Factory Reset  - Warning this will reset device back to original factory settings.
    This method will not erase any MDN/MIN information
    Turn off the phone 
    Press Power + Volume Up/Down at the same time and hold until display will show a triage android screen 
    Display will show: 
    Reboot system Now 
    Apply sdcard:update.zip 
    Wipe Data/Factory Reset 
    Wipe Cache Partition
    Use VOL Down key to scroll down to "Wipe Data/Factory Reset", press home icon to select option and wipe device. 
    Display shows "All user data will be wiped out", press VOLUME Up to continue or VOLUME Down to exit. 
    Press Volume Up 
    Press Home to select "Reset System Now" - device will reboot
    If the problem persist I recommend having a store technician take a look at the device.
    Copy and paste the link below into your browser's address bar for the store locator.  
    http://www.verizonwireless.com/b2c/storelocator/index.jsp

  • Need Help Fast Please

    Why does this code not do what I want to happen?
    I have a 7 non functional buttons above the buttons for the days in the month and I would like to be able to layout the buttons starting on the day that the month begins and ending where it ends.
    Like in the microsoft windows calander.
    Any ideas as to how I'd do this?
    I need help fast. Please.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    import java.util.*;
    public class MyDairy extends JFrame
         //Initilises Global Variables
         myHandler H = new myHandler();
         monthHandler J = new monthHandler();
         openHandler O = new openHandler();
         String monthName;
         JComboBox months;
         static String[] daysOfWeek = {"Sun", "Mon", "Tue", "Wed", "Thur", "Fri", "Sat"};
         static int[] daysInMonth = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; 
         JFileChooser box;
         public MyDairy()
              //Initilises the JComponents
              JMenuBar menuBar;
               JMenu menu;
              JMenuItem menuOpen;
              JMenuItem menuSave;
              JMenuItem menuExit;
              JButton dayName[] = new JButton[7];
              JButton day[] = new JButton[36];
              JPanel b;
              JPanel a;
              Calendar today = Calendar.getInstance();
              Calendar startOfMonth = Calendar.getInstance();
              startOfMonth.set(Calendar.DAY_OF_MONTH,1);
              startOfMonth.set(Calendar.DAY_OF_WEEK,7);
              System.out.print(startOfMonth);
              //Sets up the Layout
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Container c = getContentPane();   
              c.setLayout(new BoxLayout(c, BoxLayout.Y_AXIS));
              a = new JPanel();   
              a.setLayout(new GridLayout(0, 7));
              b = new JPanel();   
              b.setLayout(new GridLayout(5, 7));
              //Sets up and adds the menu bar   
              menuBar = new JMenuBar();   
              setJMenuBar(menuBar);  
              //Adds the File menu
              menu = new JMenu("File");   
              menuBar.add(menu);
              //Adds the menu items      
              menuOpen = new JMenuItem("Open");     
              menu.add(menuOpen);
              menuSave = new JMenuItem("Save");     
              menu.add(menuSave);
              menuExit = new JMenuItem("Exit");     
              menu.add(menuExit);
              //Produses the ComboBox
              String[] name={"January", "Feburary", "March", "April", "May", "June", "July", "Augest", "September", "October", "November", "December"};
              months = new JComboBox(name);
              int m = today.get(Calendar.MONTH);
              int d2 = today.get(Calendar.DAY_OF_WEEK);
              System.out.print(d2);
              months.setSelectedIndex(m);
              months.addActionListener(J);
              c.add(months);
              c.add(Box.createVerticalStrut(10));
              switch (months.getSelectedIndex())         
                       case 0: for (int i=1; i<36; i++)                          {                   
                         if(i<4)                
                            day[i] = new JButton();                  
                            day.setEnabled(false);               }               
    int k = 1;                
    day[i] = new JButton(" "+k);                b.add(day[i]);                
    day[i].addActionListener(H);               k++;               
    }break;          
    //other case statement up to 11 are simaliar          }                     
    c.add(a);
              //Produces an Array of Buttons
              for (int i=1; i<36; i++)
                   day[i] = new JButton(" "+i);
                   b.add(day[i]);      
                   day[i].addActionListener(H);               
              c.add(b);
              updateNameField();
              setSize(400,400);
              show();
         }//constructor
         private void updateNameField()
              monthName = (String) months.getSelectedItem();
         class myHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   new Text_Area(monthName);
         class openHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   File f1 = New File ("2003.dat");
                   simpleSerializer S = new simpleSerializer(f1);
                   MyDairy = S.readObjectFromFile();
         class monthHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   updateNameField();
         public static void main(String[] args)
              new MyDairy();

    Container c = getContentPane();
    c.setLayout(new BoxLayout(c, BoxLayout.Y_AXIS));don't code like above try something like...
    Box box=Box.createVerticalBox();
    c.add(box);
    ----so on
    Hope this will help...

  • Major issues after windows update

    Hi, 
    I have a HP G42-415DX running Windows 7. After a windows update I started have some major issues.
    - the sound died, it says there is no audio device installed
    - i'm getting an ATI error message saying that graphics aren't functioning 
    - windows takes a really long time to start up
    - it randomly freezes
    - plug n play does not start when windows start even though it is set to automatic
    i've tried updating the drivers, reinstalling the drivers, rolling the system back a week and running spybot. there is also no sound in safe mode
    any help would be greatly appreciated. thank you

        Thank you for completing troubleshooting gabbygal68. Let's review options! If there is no damage we can review warranty options. Please accept my follow request, follow me and send me a direct message. If there is any possible damage to the device you can then process an insurance claim here http://bit.ly/07CrqPK Thank you.
    TominqueBo_VZW
    Follow us on Twitter @VZWSupport 

  • BBM icon missing after update. need help asap please

    Hi I'm using a bb bold 9780 and my bbm is 5.0.1.45 and when I tried updating it, it hangs whenever it finishes installing. And when I tired a battery pull, my bbm icon goes missing. Any idea how to solve this issue? Could really need some help here cos its quite impt. Thank you in advance
    Solved!
    Go to Solution.

    When you get a chance, do a battery pull.  When the red light goes away on the front of the phone, hold down the back button the entire time while the phone is booting up.  When the boot is complete, the phone will enter safe mode.
    http://btsc.webapps.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB17877
    Try to delete it from there and do another battery pull / reinstall.
    Please click the Thumbs Up icon if this comment has helped you!
    If your issue is resolved, please click the solution button on the resolution!
    Every BlackBerry should have BlackBerry Protect, get it now! | Follow me on Twitter | Bring Back BBM Music!

  • I need help fast please an't render my full audio equalizer from adobe after effect

    I need help really fast i can't render my full audio equalizer from adobe after effect

    Without knowing any details about your comp or render settings, this is going nowhere. This could be anything from Quicktime acting up to having set the work area.... We don't even know what version of AE you use on what OS.
    Mylenium

  • P45 Platinum NEED HELP FAST PLEASE!

    As you may have read previously, I was going to and I got a P45 Zilent board along with other parts. Now I have a few problems. Firstly here are the system specs:
    MSI P45 Platinum (Zilent) BIOS v1.0
    Intel Core 2 Duo E8300
    A-DATA Vitesta 1066+ 2x1GB
    MSI R4850
    1XWD RAPTOR 74GB
    1XWD CAVIAR 200GB
    1XWD CAVIAR 500GB
    1XSAMSUNG SATA DVDRW 22x
    PSU: Cooler Master Real Power M520
    HANNS-G HI221DP (22" Widescreen connected with DVI-D Single Link Cable)
    So, when I installed everything, and turned on the PC the DOS looking environment that shows up before the OS is loaded is filled with exclamation marks on the background, and in the BIOS has dots on the background. I thought at first OMG my VGA is faulty, but then in Windows it shows perfectly good image quality and no problems what so ever...
    Second problem: My PC won't reboot. When it goes to reboot, it goes through the shutdown sequence properly, but after that when it needs to restart it just hangs and the 4 indicator lights are all red. Now when it starts normally there is no hang, all the lights are green and system is working fine. But every time it restarts it hangs there and nothing happens... :S
    And third on CPU Z my the PC multiplier varies and also the bus speed is too low... here is a screenshot:
    Now, even though the multiplier changes when PC under load, and I read it is some kind of power saving option, the BUS remains that low :S
    Please help me fast, please.

    Quote
    Now the multiplier problem remains, but I read somewhere it is a power saving feature, but still I want to disable it and make my multiplier at 8.5 all the time and my CPU speed at 2.83GHz (stock speed for the E8300). How can I do that, without messing up the settings in the BIOS that fixed the problems above?
    There is no real need to disable that function.  After all, it is a feature of your processor, you paid for it and the Multiplier should switch back to default as soon as you CPU gets something to do.  It will only drop to x6 when the system is IDLE to save power and keep the temperatures low.  There should not be any performance sacrifices. Keep in mind that the Core Voltage is reduced as well.  This is all intended to for the benefit of your Processor and therefore for you, after all.
    However, if you really think that you want to disable these functions, you may want a little info on what functions are actually involved:
    1) EIST = Enhanced Intel SpeedStep Technology -> The option is located in the Cell Menu.  You can actually disable EIST on the OS level (and keep in enabled in BIOS).  All you need to do is to turn off the Windows Power Saving Features and set everything to max. Performance.  This disables SpeedStep/EIST, even when the support is still enabled in BIOS. 
    2) C1E Support (C1E = Enhanced Halt State) -> This feature can only be disabled in BIOS.  Even if EIST is disabled (OS and/or BIOS), the C1E Feature will still be doing its job.  To disable it, look in the CPU Features Section of the BIOS.  You should find an option there.
    In any case, my suggestion would be to keep both functions enabled.  These features are actually rather good.
    Quote
    Also how do I set my memory to run at the preferred settings prescribed by the manufacturer, which are:
    CL: 5-5-5-15 2T
    2.2-2.3V
    1066MHz
    The standard DDR2 supply voltage is 1.8V +/-0.1V.  The fact that your memory modules need to be overvolted to have a chance to run at DDR2-1066 MHz shows that they are not "real" DDR2-1066 memory modules but actually just DDR2-800 sticks with a manufacturer's permission to overclock them.  Also, keep in mind that the P45 Chipset does not natively support DDR2-1066 memory modules, but DDR2-667 & DDR2-800 only.
    This said, you actually need to overclock both the memory controller and the modules, which is not necessarely stable.
    To increase the memory voltage, you need to manually adjust the FSB/DRAM Ratio in BIOS to 1:1.6 and manually increase the DRAM Voltage using the +/- keys of your numpad.  Spread Spectrum should be disabled at all times.

  • Lost sound after an update. need help please

    had some kind of system update. sound worked fine yesterday. did update today, and now nothing.
    heres what i have
    HP Pavilion HPE h8xt
    • Genuine Windows 7 Home Premium [64-bit]
    • Intel(R) Core(TM) i7-2600 quad-core processor with Turbo-Boost [up to 3.8GHz, 8MB cache]
    • 9GB DDR3-1333MHz SDRAM [3 DIMMs]
    • 1TB 7200 rpm SATA 3Gb/s hard drive
    • No additional office software
    • SAVE $20 on Norton Internet Security(TM) 2011 - 15 month
    • 2GB DDR3 NVIDIA GeForce GT 530 [DVI, HDMI, VGA adapter]
    • 460W Power supply
    • SuperMulti DVD Burner
    • Blu-ray player & DVD player
    • Premium Wireless-N LAN card and Bluetooth(R ) (2x2)
    • 15-in-1 memory card reader, 2 USB 2.0 (front), audio, 2 USB (top rear-facing)
    • No TV Tuner
    • Beats Audio (tm) -- integrated studio quality sound
    with these speakers... http://www.shopping.hp.com/webapp/shopping/product_detail.do?product_code=BR386AA%23ABL
    This question was solved.
    View Solution.

    Hi,
    Please follow these steps:
      http://windows.microsoft.com/en-US/windows/help/no-sound-in-windows
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I need help fast please!

    I downloaded a program and when I open it something pops up. Why does this happen and how can i fix this problem? Here it is:
    [IMG]http://i51.tinypic.com/efhspc.jpg[/IMG]

    Are you referring to...?
    _Conquer Online_ - main:
    http://co.91.com/index/
    CO Mac Beta Client - Conquer Online: Beta Test Version
    http://co.91.com/content/2011-04-07/20110407043308516.shtml
    • *Conquer - client for Mac*: +Version 1001, a 705MB D/L:+
    ftp://64.151.84.188/enzf/MACqonquerv1001.pkg.zip
    There are other download files, some end in .exc for windows.
    all Downloads - Client - Conquer Online - Free Kung Fu:
    http://co.91.com/downloads/client.shtml
    The main page appears to have a few help items, no support;
    unless you go into Contact and see if they reply to email.
    Another free Conquer game online, is *Conquer Club*:
    http://www.conquerclub.com/
    You may have to see if you downloaded the correct version for
    your Mac OS X system, and ask the company behind it, if they
    support Leopard 10.5.8 and JRE for Mac (java version.)
    The incorrect file type would not open nor could it run. Without
    replicating the issue, I'm not able to resolve the problem here.
    A maker's support page and Mac version user forum may exist.
    Sorry to not be of further help; if someone recognizes the game
    from the links I found (if that is the game you refer to) perhaps
    another Discussions member could answer your question.
    If the 'autoupdater' pertains to the +automatic patches+ the maker
    says would be applied when the application/game is first-run,
    you may have to see about getting them separately, if they apply.
    • The developer may have *undisclosed bugs in their Beta* version
    for Mac, so you need to try and contact them. As Mac users here,
    replies you may get would pertain to the Mac OS X & the Mac.
    Good luck & happy computing!
    +{ edited }+

  • Need help fast please KM2M Combo-L(MS-673

    What video cards can this handle? I want to get a new GF4 ti card but what will it runm I don't want to blow anything, and is there a special somthing I have to do or is it just put and in and works? KM2M Combo-L(MS-673 .. cheers, wanna order today so any help would be great.

    Hi..
    About the fact that 8x AGP cards in 4x agp slots... Not a problem.. U c, 8x agp is backwords compatible to 4x agp but 8x is not compatible with 2x agp.. So no prob for u there
    About the part where u wanna just plug it in and working.. I am not sure about it.. The G4Ti cards eat up so much power that u might (possibly) have to replace the power supply.. U should have a look at these two articles written by Bas before going ahed with the vga card.. As far as compatibillity goes.. No prob
    http://www.msi.com.tw/program/service/forum/index.php?threadid=1515&boardid=16&styleid=1&sid=5fae4c1fda1dd9be2141b5e39030ab06
    http://www.msi.com.tw/program/service/forum/index.php?threadid=1135&boardid=16&styleid=1&sid=5fae4c1fda1dd9be2141b5e39030ab06
    Hope this helps
    Regards
    Rasika

  • Forgotten password for iPhone 4s and done a remote lock via iCloud and now cannot get into phone! need help fast please!

    Look i really need to know how to get back in my phone as it is for buissness and very desparate please answer asap

    The manual expalins this.
    Restore the iphone.

  • MAJOR Wireless, Safari, Dock & Finder issues after latest updates

    I'm having major issues after the latest AirPort, Security Fix and Safari updates in 10.5.2: Safari keeps crashing every hour, Wireless connections time out and Airport occasionally crashes when I try to turn it off/on. Sometimes the systems gets stalled and has lag - I'm not sure if Safari crashing is causing this or it's the system that causes Safari to freeze and crash - often the dock becomes unresponsive too and makes me force shutdown and reboot. I've had to reboot like this more than 4 times today, something isn't right. My questions, therefore:
    1) Is there a way to restore my Mac to the state BEFORE the latest upgrades?
    2) I can't recall the exact names and versions of the updates, is there a way to access the update log files, so that I can take notes on what actually was updated and when?
    3) Is there any other way to access log files that may have more information on the crashes that I've had lately?
    Thanks in advance!

    Hi Reinis,
    In this situation, the first thing I would do is log into a different user account (if you do not have one, create one) and then see if the symptoms persist with the new user account. To directly answer your questions:
    1) Is there a way to restore my Mac to the state BEFORE the latest upgrades?
    Archive and Install using the OS DVD or by using Time Machine if you have it enabled.
    2) I can't recall the exact names and versions of the updates, is there a way to access the update log files, so that I can take notes on what actually was updated and when?
    Fire up System Preferences, click on the Software Update icon and then select the Installed Updates tab.
    3) Is there any other way to access log files that may have more information on the crashes that I've had lately?
    Console, which is in your Applications/Utilities folder.
    Kryten

  • Premiere Pro CC updated  - crashes almost immediately on my mac OS X Yosemite 10.10.3. Crashes at startup, crashes with media import, crashes when creating a sequence. NEED HELP FAST I have tried many troubleshooting solutions I found online nothing has

    Premiere Pro CC updated  - crashes almost immediately on my mac OS X Yosemite 10.10.3. Crashes at startup, crashes with media import, crashes when creating a sequence. NEED HELP FAST> I have tried many troubleshooting solutions I found online nothing has worked.

    Hi,
    Sorry to hear about the experience. Please provide your computer configuration details.
    Memory, Processor, Graphics card, Exact version of Premiere Pro, Error message that you are get. If you can post screenshots of the error report that would be helpful.
    Thanks,
    Rameez

  • Date format Issue after HRSP Update

    Hi,
    We are faced with a strange issue after HRSP update was applied on our client system (upgraded from SAP-KE-30 to SAP-KE-36).
    There is an outgoing interface which picks up all the the starters into the local government pension scheme and updates a B2A document. This is implemented via a z-program.
    When we look at the out put after the interface has run for the  vast majority of employees it shows their date of birth as 21.05.1968 when it should show it as 21051968. This only appears to have happen after the HRSP's have been applied.
    No modifications have been made to the z-program. What could be the reason for this issue. has anyone faced such an issue post HRSP update?
    Any pointers on how to further investigate and resolve the issue will be most helpful.
    Regards

    Hello Iside,
    In this case we can try to reload the software on the BlackBerry Smartphone to make sure it is running the latest version and there are no issues with the OS on the device.
    To do this we would need to back up the BlackBerry Smartphone. Please open the BlackBerry Desktop Manager and connect your device. Click on the Backup and Restore options and select Back Up. Please note the location where the backup is being saved as we will need to access it later to restore the BlackBerry Smartphone.
    Once you have backed up your BlackBerry Smartphone please follow the link below to complete a clean reload of the BlackBerry Smartphone software.
    Link: http://www.blackberry.com/btsc/KB11320
    Please test the date once the software is reloaded prior to restoring the backup.
    Thank you
    -DrP
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • My little brother messed up with my iPod touch 4th Gen by entering the wrong password , now all data is beeing erased what should I do.The iPod is just showing the Apple Logo and some buffering icon below it.Need help fast!I'm really worried!

    I really need help this has happend 5 hours ago and the ipod os still showing the apple logo and the buffering icon below it!
    It re booted several times till now.
    Need help fast!

    - I suspect that he went to Settings>General>Reset>Erase all content and settings.  For 1G or 2G iPod that can take hours and it will likely stall out if not connected to a charging source.
    Try the following:
    - A reset.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - The connect to computer and try to restore via iTunes.
    - Id something is still showing onthe screen, disconnect from computer/charging source and let the battery fully drain. After charging for an hour, Try the reset and restore.
    - If you can turn the iPod off, se if placing the iPod in recovery mode and then restore. For recovey mode:
    iPhone and iPod touch: Unable to update or restore

Maybe you are looking for

  • How can two users have separate libraries in iTunes?

    I have a library in iTunes for my 20 GB iPod, and now someone else in the house has an iPod shuffle. How is the shuffle installed into iTunes without overriding my library? Will it become obvious when the shuffle software is downloaded? Will I be for

  • Iweb problem - auto creation of subfolders when uploading website

    when i originally uploaded my website the uploads went straight to the url <stgeorges.co.uk>. (done via ftp, don't use mobile me) now when i am updating the site, iweb seems to be automatically creating a subfolder to put updates in <stgeorges.co.uk/

  • Removing Space Between Web Parts causes Horizontal Bar in Modals

    Hello all, I used the following to remove space between Web Parts, but am now getting a horizontal bar in my modals. Please assist: http://www.ashokraja.me/tips/How-To-Remove-Extra-Space-Around-the-Web-Part-In-SharePoint-2013 Thanks! Kelly Personal B

  • Pressing enter instead of clicking on a button

    Hey all, this is rather simple but the search term 'enter' is very common so i'm having a hard time searching for my solution! I'm basically writing a search program that finds customers, at the moment I have a screen where the user types in a name t

  • Serialization of XI's outgoing messages (IDocs)

    Hi guys, We have a file->IDoc scenario. Each line of source file produces an IDoc. What values should we put to SERIAL node of target message (IDoc) to ensure correct proessing? Should it be a numeric value? Alfanumeric? Thank you, Olian