Help with Preferences... fresh install of 3.01, but only one preference?

If I click on Soundtrack Pro > Preferences, only one option appears in the pop-up window: 'Video Out'. Same result when typing 'Cmd-,'. This is a new install of STP 3.01. Any idea what I'm doing wrong?

Apparently the 'Preference' file was scrambled. Deleted it and all is well.

Similar Messages

  • Help on locking MySQL tables (many can read, but only one can write) Java

    Hi there,
    I have a question regarding locking of tables so that only one person can write to the file, but many are able to read the files (or tables entities).
    I am not sure if I need to lock the tables in my Java code or do I lock the tables within the MySQL syntax. I'm just a little confused on the matter.
    This java code is a working prototype of inserting a customer data into the database and that works fine. I just don't know how to implement it so that only one person can update the table at a time.
    Here is the Customer.java code that I have written.
    Help would be greatly appreciated, thanks so much.
    package business;
    //~--- non-JDK imports --------------------------------------------------------
    import shared.info.CustomerInfo;
    //~--- JDK imports ------------------------------------------------------------
    import java.sql.*;
    * @author
    public class Customer {
        static Connection    con  = DBConnection.getConnection();
        private CustomerInfo info = new CustomerInfo();
        private String               customerID;
        private String               firstName;
        private String               lastName;
        private String               email;
        private String               addressID;
        private String               homePhone;
        private String               workPhone;
        private String               unitNum;
        private String               streetNum;
        private String               streetName;
        private String               city;
        private String               provinceState;
        private String               country;
        private String               zipPostalCode;
        public Customer(String id) {
            try {
                PreparedStatement pstmt = con.prepareStatement("SELECT * FROM " +
                        "Customer NATURAL JOIN Address WHERE CustomerID = ?");
                pstmt.setString(1, id);
                ResultSet rs = pstmt.executeQuery();
                while (rs.next()) {
                    customerID    = rs.getString("CustomerID");
                    firstName     = rs.getString("FirstName");
                    lastName      = rs.getString("LastName");
                    homePhone     = rs.getString("HomePhone");
                    workPhone     = rs.getString("WorkPhone");
                    email         = rs.getString("Email");
                    city          = rs.getString("City");
                    provinceState = rs.getString("ProvinceState");
                    country       = rs.getString("Country");
                    zipPostalCode = rs.getString("ZipPostalCode");
                    unitNum       = rs.getString("UnitNum");
                    streetNum     = rs.getString("StreetNum");
                    streetName    = rs.getString("StreetName");
                    addressID     = rs.getString("AddressId");
            } catch (SQLException e) {
                e.printStackTrace();
            info.setCustomerID(customerID);
            info.setFirstName(firstName);
            info.setLastName(lastName);
            info.setHomePhone(homePhone);
            info.setWorkPhone(workPhone);
            info.setEmail(email);
            info.setCity(city);
            info.setProvinceState(provinceState);
            info.setCountry(country);
            info.setZipPostalCode(zipPostalCode);
            info.setUnitNum(unitNum);
            info.setStreetNum(streetNum);
            info.setStreetName(streetName);
            info.setAddressID(addressID);
        public static void addCustomer(CustomerInfo cust) {
            try {
                int id = -1;
                PreparedStatement pstmt = con.prepareStatement("INSERT INTO Address" +
                        "(UnitNum, StreetNum, StreetName, City, ProvinceState, Country," +
                        " ZipPostalCode) VALUES(?, ?, ?, ?, ?, ?, ?)");
                pstmt.setString(1, cust.getUnitNum());
                pstmt.setString(2, cust.getStreetNum());
                pstmt.setString(3, cust.getStreetName());
                pstmt.setString(4, cust.getCity());
                pstmt.setString(5, cust.getProvinceState());
                pstmt.setString(6, cust.getCountry());
                pstmt.setString(7, cust.getZipPostalCode());
                pstmt.executeUpdate();
                ResultSet rs = pstmt.getGeneratedKeys();
                rs.next();
                id = rs.getInt(1);
                pstmt = con.prepareStatement("INSERT INTO Customer" +
                        "(FirstName, LastName, HomePhone, WorkPhone, Email, AddressID)"
                        + "VALUES(?, ?, ?, ?, ?, ?)");
                pstmt.setString(1, cust.getFirstName());
                pstmt.setString(2, cust.getLastName());
                pstmt.setString(3, cust.getHomePhone());
                pstmt.setString(4, cust.getWorkPhone());
                pstmt.setString(5, cust.getEmail());
                pstmt.setInt(6, id);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
        public void setFirstName(String newName) {
            try {
                PreparedStatement pstmt = con.prepareStatement("UPDATE Customer"
                                              + " SET FirstName = ? WHERE CustomerID = ?");
                pstmt.setString(1, newName);
                pstmt.setString(2, customerID);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            firstName = newName;
        public void setLastName(String newName) {
            try {
                PreparedStatement pstmt = con.prepareStatement("UPDATE Customer"
                                              + " SET LastName = ? WHERE CustomerID = ?");
                pstmt.setString(1, newName);
                pstmt.setString(2, customerID);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            lastName = newName;
        public String getFirstName() {
            return firstName;
        public String getLastName() {
            return lastName;
        public void setHomePhone(String number) {
            try {
                PreparedStatement pstmt = con.prepareStatement("UPDATE Customer"
                                              + " SET HomePhone = ? WHERE CustomerID = ?");
                pstmt.setString(1, number);
                pstmt.setString(2, customerID);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            homePhone = number;
        public String getHomePhone() {
            return homePhone;
        public void setWorkPhone(String number) {
            try {
                PreparedStatement pstmt = con.prepareStatement("UPDATE Customer"
                                              + " SET WorkPhone = ? WHERE CustomerID = ?");
                pstmt.setString(1, number);
                pstmt.setString(2, customerID);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            workPhone = number;
        public String getWorkPhone() {
            return workPhone;
        public void setEmail(String email) {
            try {
                PreparedStatement pstmt = con.prepareStatement("UPDATE Customer" + " SET Email = ? WHERE CustomerID = ?");
                pstmt.setString(1, email);
                pstmt.setString(2, customerID);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            this.email = email;
        public String getEmail() {
            return email;
        public void setUnitNum(String num) {
            try {
                PreparedStatement pstmt = con.prepareStatement("UPDATE Address" + " SET UnitNum = ? WHERE AddressId = ?");
                pstmt.setString(1, num);
                pstmt.setString(2, addressID);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            unitNum = num;
        public String getUnitNum() {
            return unitNum;
        public void setCity(String city) {
            try {
                PreparedStatement pstmt = con.prepareStatement("UPDATE Address" + " SET City = ? WHERE AddressId = ?");
                pstmt.setString(1, city);
                pstmt.setString(2, addressID);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            this.city = city;
        public String getCity() {
            return city;
        public void setStreetNum(String num) {
            try {
                PreparedStatement pstmt = con.prepareStatement("UPDATE Address" + " SET StreetNum = ? WHERE AddressId = ?");
                pstmt.setString(1, num);
                pstmt.setString(2, addressID);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            streetNum = num;
        public String getStreetNum() {
            return streetNum;
        public void setStreetName(String name) {
            try {
                PreparedStatement pstmt = con.prepareStatement("UPDATE Address"
                                              + " SET StreetName = ? WHERE AddressId = ?");
                pstmt.setString(1, name);
                pstmt.setString(2, addressID);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            streetName = name;
        public String getStreetName() {
            return streetName;
        public void setZipPostalCode(String code) {
            try {
                PreparedStatement pstmt = con.prepareStatement("UPDATE Address"
                                              + " SET ZipPostalCode = ? WHERE AddressId = ?");
                pstmt.setString(1, code);
                pstmt.setString(2, addressID);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            zipPostalCode = code;
        public String getZipPostalCode() {
            return zipPostalCode;
        public CustomerInfo getInfo(){
            return info;
        static void deleteCustomer(String customerId) {
            try{
                PreparedStatement pstmt = con.prepareStatement("DELETE FROM Customer" +
                        " WHERE CustomerId = ?");
                pstmt.setString(1, customerId);
                pstmt.executeUpdate();
            }catch(SQLException e){
                e.printStackTrace();
        static void updateCustomer(CustomerInfo custInf) {
            try{
                PreparedStatement pstmt = con.prepareStatement("UPDATE customer" +
                        " SET firstName = ?, SET lastName = ?," +
                        " SET homePhone = ?, SET workPhone = ?, SET email = ?" +
                        " WHERE CustomerId = ?");
                pstmt.setString(1, custInf.getFirstName());
                pstmt.setString(2, custInf.getLastName());
                pstmt.setString(3, custInf.getHomePhone());
                pstmt.setString(4, custInf.getWorkPhone());
                pstmt.setString(5, custInf.getEmail());
                pstmt.setString(6, custInf.getCustomerID());
                pstmt.executeUpdate();
                pstmt = con.prepareStatement("UPDATE address" +
                        " SET unitNum = ?, SET StreetNum = ?, SET StreetName = ?," +
                        " SET city = ?,SET Province = ?,SET country = ?,SET ZipPostalCode = ?" +
                        " WHERE AddressId = ?");
                pstmt.setString(1, custInf.getUnitNum());
                pstmt.setString(2, custInf.getStreetNum());
                pstmt.setString(3, custInf.getStreetName());
                pstmt.setString(4, custInf.getCity());
                pstmt.setString(5, custInf.getProvinceState());
                pstmt.setString(6, custInf.getCountry());
                pstmt.setString(7, custInf.getZipPostalCode());
                pstmt.setString(8, custInf.getAddressID());
                pstmt.executeUpdate();
            }catch(SQLException e){
                e.printStackTrace();
    }In addition, here is my customer sql table.
    -- Table structure for table `customer`
    DROP TABLE IF EXISTS `customer`;
    CREATE TABLE `customer` (
    `CustomerID` mediumint(9) NOT NULL auto_increment,
    `FirstName` varchar(20) NOT NULL,
    `LastName` varchar(20) NOT NULL,
    `HomePhone` varchar(11) NOT NULL,
    `WorkPhone` varchar(11) default NULL,
    `Email` varchar(20) NOT NULL,
    `AddressID` mediumint(9) default NULL,
    PRIMARY KEY (`CustomerID`),
    KEY `AddressID` (`AddressID`),
    CONSTRAINT `customer_ibfk_1` FOREIGN KEY (`AddressID`) REFERENCES `address` (`AddressID`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    -- Dumping data for table `customer`
    LOCK TABLES `customer` WRITE;
    /*!40000 ALTER TABLE `customer` DISABLE KEYS */;
    /*!40000 ALTER TABLE `customer` ENABLE KEYS */;
    UNLOCK TABLES;

    to the best of my knowledge, this is something related to the database and not the programming. If you'd want to be the only user to read and edit the table, speicify only one user with that privilege and make it password protected. User must enter the password to write to the tables.

  • Help with iCloud contacts. Need to bring in only one particular group of contacts into an iPad 2.

    I have just updated an iPad 2 which belongs to my father but which has always synced with my Macbook. On my mac, I have set up a "group" of his own contacts, but since upgrading to iOS 5 it keeps pulling in my entire contacts list. I have tried turning off "Contacts' on the iPad's icloud menu, but it has removed all of my father's contacts and when I plug the device into the Macbook and try to sync the way I always had been, it won't let me just sync particular groups, I can only choose to sync "all" contacts. Does anyone know how to make the Macbook, itunes sync allow me to pick and choose what groups of contacts I want on this device?
    Any help appreciated.

    you can go back to sync with itunes 10.5 just like you did in iOS4 before.
    If you want to continue your use/sync of iCloud Email ( most users want their @me.com ) :
    On Mac Lion go  -> System Settings -> icloud , leave only the wanted sync options active, like Mail, turn off Adressbook sync plus all other unwanted items.
    Power on your iOS device, tap "Settings" -> icloud and set it up to match exactly the same items like for the Mac.
    Then on your next connection of the device to iTunes on Mac, you can select the various items that shall be managed using iTunes sync and not the cloud. Adressbook is under the "Info(rmation)" section.

  • Network issues with Leopard fresh install

    I have an iBook that I was running Leopard on with no issues yesterday. It is no longer my main computer, so I wanted to wipe everything and start from scratch with a fresh install of Leopard. The install went smoothly. I did an Erase & Install setup from a Leopard Upgrade disc (but already had Leopard on my system so upgrade verified OK). When I booted up for the first time, it appeared everything was working normally.
    I went online, downloaded a couple pieces of software I frequently use, and then started to set things up. This is when I ran into issues. I could browse the web without a problem. I could set up email with POP access, but not IMAP. AIM with Adium connects just fine. Tweetie won't connect. Dropbox won't connect. It's like some ports are being blocked, but others aren't, and I can't figure out why.
    I have tried/verified:
    OSX firewall is off
    Restarted router/cable several times
    iBook is in router's DMZ- outside of router firewall
    Repaired permissions
    Reset PRAM
    Anyone have any suggestions or other troubleshooting ideas?

    Here are the steps to selling*:
    http://www.macmaps.com/selling.html
    Mac Pros that shipped with Leopard should install from the Mac Pro labelled discs. Those that came with pre-Leopard, you should still include the Mac Pro discs, though if you desire to install Leopard on them, you should also include the Leopard discs that are retail. Leopard retail looks like * and do not say Upgrade, DropIn, or OEM.
    - * Links to my pages may give me compensation.

  • Can anyone help with facetime? im getting missed calls but it doesnt actually tell me i have an incoming call....and the person im trying to contact gets exactly the same.....just missed calls?

    can anyone help with facetime? im getting missed calls but it doesnt actually come up with an incoming call.....the person im trying to contact just gets missed calls also?

    I've noticed that once you miss a call on FaceTime on a desktop Mac, it won't work properly again until you restart the machine.
    I sent in Feedback so we'll see how that goes.

  • Hi, I need help with my iphone four bought in England but I live in Italy, I upgraded IOS six and now I can not read more than the Italian card, how can I contact a service center via email?

    Hi, I need help with my iphone four bought in England but I live in Italy, I upgraded IOS six and now I can not read more than the Italian card, how can I contact a service center via email?

    Only the carrier it is locked to can authorize unlocking it. Sounds like the phone was hacked to unlock it originally. Find out what carrier it is locked to, and look up their contact information using google or the search engine of your choice.

  • I need help with my iPad I live in Canada, but I think my computer thinks I'm in US please help!

    I need help with my iPad I live in Canada, but I think my computer thinks I'm in US please help!

    So what is your iPad doing, specifically?  Are you having a problem when you try to sync it or back it up on iTunes?  I think we need more information here before we can help...
    Thanks,
    L.

  • Installing Boot Camp - There is only one partition available for Windows

    I have a brand new Mac Mini. Ran Boot Camp assistant and created Windows partition - 80 GB. Then when instructed, inserted Windows XP install disc. It went through some install steps then came to screen where you chose the partition to install Windows. There was only one partition showing - Partition 1. I think that's the Mac partition, so I quit install, removed partition with Boot Camp and tried again, this time setting Windows partition at 32GB. Insert Windows install disc, same result - only Partition 1. I called Apple support, we did it all again - same result. They had me completely reformat my Mac disc with the OSX discs, then run Boot Camp assistant and set partition to 32 GB. Same result - only Partition 1 is available. The Windows install disc I am using is the same disc I used to put Windows on my son's MacBook about 9 months ago.
    I need this Mac Mini to run both OS. What to do?

    Use NTFS for Windows and buy Paragon NTFS for OS X
    You can also try Paragon HFS for Windows
    As long as you are using for data and backups, you can leave the drive as GPT too.
    I would recommend strongly to always have a 2nd bootable Mac OS drive, only need 30GB partition. System maintenance. Though LIon Recovery Mode finally makes it less but not totally unneeded.
    And yes you can use Windows to create a partition.
    Boot Camp is too broad. Do you want or mean BC Assistant? not needed but probably possible.
    MBR has trouble with 3TB drives.

  • Drag and Drop with mulitiple drag sources but only one correct answer?

    I've created two drag sources (in a Type group) for one drop target. I want to be able to drag only one or the other onto the drop target. I changed the correct answers from 2 to 1, but I can still drag both onto the drop target. Is there a way to reject the second drag source?
    Is there a way to select the same drag sources and have the same situation for a different drop target?
    Plus, if I have the drop target set to not visible, is there a way to change it to visible once a drag source is dropped on it?
    Sorry for the newbie questions. Thanks for any help.

    No, I made the target invisible, not the drag object.
    I have sample text (a paragraph missing periods). I created an image file of the period (essentially, a dot within a square with the same color background as my slide). The reason I created the image (and not just a round filled shape) is because if I can get this to work, I'd like to use other punctuation mark images. I imported the period image and made 3 copies of it (4 separately named images). Two of the images (the drop targets) I placed where they belong in the sample paragraph and made them invisible. The other two images are visible and would be the drag sources. I want students to be able to choose either copy of the drag source and place them on either of the drop targets (no specific order, but only one being able to be dropped onto one target). With the correct answer, I'd like to make the target visible. In the drag settings, I unchecked "send back to original location" and then set it to absolute. This is so the student would be able to place the period in other areas of the sample paragraph (but not be able to "find" the active areas that would automatically pull them into place over the target. Sorry, I don't have access to the program at this minute, so I can't remember what the other setting was instead of absolute that "pulled" the drag source onto the target.) Anyway, if set to absolute, the dropped items do not line up properly (because they land where they were dropped, obviously). So, I'm looking for a way to then make the target (that was invisible) visible when one correct period is dropped onto it, plus then reject any other periods being dropped onto it.
    I'm open to suggestions if there is a better way to do this.

  • Install windows 8.1 in only one partition ( GPT )

    Is possible to install windows 8.1 in only one partition (GPT ) ( There are at least three in a default installation ).
    Thank you !

    Its simple, I am listing steps below, feel free to ask for clarification if you need assistance. 
    1. boot into winpe and clean the disk if it has some other partition. (boot from media and then at wekcome prompt press shift F10)
    2. open diskpart.
    3 select the disk and create partition for EFI. (create partition efi size=350)
    4 format this partition with FAT32, (format fs=FAT32 quick)
    5. create second partition with NTFS, (create partition primary and then format it with NTFS file system assign it letter c:)
    6. In windows DVD, locate install.wim, it should be by default under x:\sources\
    7. Apply the wim file on the image, 
    Dism /apply-image /imagefile:x:\sources\install.wim /index:1 /ApplyDir:C:\
    8. Run the command to copy the boot files to this new EFI partition. 
    bcdboot c:\windows
    boot up! 
    regards
    Mayank Sharma Support Engineer at Microsoft working in Enterprise Platform Support.

  • I have a video made with two cameras, in two tracks. Sometimes only one camera is running (because t

    I have a video made with two cameras, in two tracks. Sometimes only one camera is running (because they both turn off at certain clip lengths). I'm trying to cut them together using the multicamera window, but I get no audio from track 2. How can I get audio from track 2. (My kludge is to cut the original audio from track 2 and move it into track 1.)

    Good Grief!  Now that I know the answer, I can find it all over the place.  But before, I got so many google references that just told me it couldn't be done!  That made me think the answer must be obscure -- when it was really simple, and should have been obvious to me.
    The lesson seems to be: do more work looking around the panels and menus of the program itself before trying to look in "help" or "google".
    Thanks, again, Jerry, for your consideration.

  • How can you use iMessage between 3 iPads with 3 different users but only one Apple ID?

    how can you use iMessage between 3 iPads with 3 different users but only one Apple ID?

    No you do not need separate Apple ID's in order to use 3 devices with one Apple ID. I use 4 devices to Message and FaceTime and all use the same Apple ID. You do need to add additional email addresses for the other devices.
    Look at this very informative video for the instructions.
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l

  • Hi, i have purchased iPhone 5 about 15 days ago, its working well but only one problem that it has is that some time its losting signal and appear as no serves. would you please help me in this reqard. thanks

    Hi, i have purchased iPhone 5 about 15 days ago, its working well but only one problem that it has is that some time its losting signal and appear as no serves. would you please help me in this reqard. thanks

    Well, it could be that your carrier doesn't have a signal when it looses its signal.  You could try resetting network settings which might help - Settings/General/Reset/Reset Network Settings.  You'll need to set up any wi-fi networks you connect too again. If you're still having issues, contact your carrier.
    Good luck!

  • Hi...I have 4 folders in my MobileMe Gallery.....but only one is shown in Aperture under WEB. Anybody who can help? best, Per

    Hi...I have 4 folders in my MobileMe Gallery.....but only one is shown in Aperture under WEB. Anybody who can help? best, Per

    Hello Per,
    did you create the other Mobile Me galleries in iPhoto? If I remember correctly. you can manage each web album only in one application, either Aperture or iPhoto. I cannot test it any longer, since I upgraded to iCloud, but it used to be possible to assign the application (iPhoto or Aperture) for each album when you log into Mobile Me and select the album.
    Regards
    Léonie

  • Why do PDF files in email open in safari with a quick time logo but only one page shows and I can't scroll through the following pages?

    Why do PDF files in email open in safari with a quick time logo but only one page shows and I can't scroll through the following pages?

    Try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.

Maybe you are looking for