Problem trying to log on to my video library system

hello.
i am trying to log on to the video library system that i just developed. the LogOn program works to a certain extent (the appropriate programs are shown below). when i try to log onto my system time. a JOptionPane.ERROR_MESSAGE message appears on screen. when i press OK inside the message, the message disappears but the same one appears again. i press OK again + the JOptionPane messages stop appearing again. when i press ok after entering my login details in the text + password fields, a main menu (either an administrator menu or a user menu) should be displayed on screen. what should i do to make this problem go away?
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.border.*;
public class HomeEntertainment extends JPanel implements ActionListener{
   private JTabbedPane jtp = new JTabbedPane();
   private JPanel cP1 = new JPanel();
   private JPanel cP2 = new JPanel();
   private JPanel cP3 = new JPanel();
   private JPanel bP1 = new JPanel();
   private JPanel bP2 = new JPanel();
   private JPanel bP3 = new JPanel();
   private JButton jbAdministratorLogOn = new JButton("Log On");
   private JButton jbNewUserRegister = new JButton("Register");
   private JButton jbExistingUserLogOn = new JButton("Log On");
   private JButton jbAdministratorExitTheSystem = new JButton("Exit the system");
   private JButton jbNewUserExitTheSystem = new JButton("Exit the system");
   private JButton jbExistingUserExitTheSystem = new JButton("Exit the system");
   public HomeEntertainment(){
      cP1.setLayout(new BorderLayout());
      cP2.setLayout(new BorderLayout());
      cP3.setLayout(new BorderLayout());
      bP1.setBorder(new TitledBorder("Make a choice"));
      bP2.setBorder(new TitledBorder("Make a choice"));
      bP3.setBorder(new TitledBorder("Make a choice"));
      bP1.add(jbAdministratorLogOn);
      bP2.add(jbNewUserRegister);
      bP3.add(jbExistingUserLogOn);
      bP1.add(jbAdministratorExitTheSystem);
      bP2.add(jbNewUserExitTheSystem);
      bP3.add(jbExistingUserExitTheSystem);
      cP1.add(bP1, BorderLayout.SOUTH);
      cP2.add(bP2, BorderLayout.SOUTH);
      cP3.add(bP3, BorderLayout.SOUTH);
      jtp.addTab("Administrator", cP1);
      jtp.addTab("New User", cP2);
      jtp.addTab("Existing User", cP3);
      JFrame jf = new JFrame("Home Entertainment");          
      jf.getContentPane().add(jtp, BorderLayout.CENTER);
      jf.setSize(500, 500);
      jf.setVisible(true);
      jbAdministratorLogOn.addActionListener(this);
      jbNewUserRegister.addActionListener(this);
      jbExistingUserLogOn.addActionListener(this);
      jbAdministratorExitTheSystem.addActionListener(this);
      jbNewUserExitTheSystem.addActionListener(this);
      jbExistingUserExitTheSystem.addActionListener(this);
   public void actionPerformed(ActionEvent e){
      if(e.getSource() == jbAdministratorLogOn){
         LogOn logOn = new LogOn();
         logOn.setVisible(true);
      if(e.getSource() == jbNewUserRegister){
         RegistrationForm r = new RegistrationForm();
         r.setVisible(true);
      if(e.getSource() == jbExistingUserLogOn){
         LogOn logOn = new LogOn();
         logOn.setVisible(true);
      if(e.getSource() == jbAdministratorExitTheSystem){
         System.exit(0);
      if(e.getSource() == jbNewUserExitTheSystem){
         System.exit(0);
      if(e.getSource() == jbExistingUserExitTheSystem){
         System.exit(0);
   public static void main(String[] args){
      new HomeEntertainment();
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class LogOn extends JFrame{
   JPanel pnlBody, pnlFooter;
   JLabel unLabel = new JLabel("Username: ");
   JLabel pwLabel = new JLabel("Password: ");
   JTextField jtfUN = new JTextField(20);
   JPasswordField jtfPW = new JPasswordField(20);
   JButton jbOK = new JButton("OK");
   JButton jbCancel = new JButton("Cancel");
   Container contentpane;
   public LogOn(){
      super("Welcome to Home Entertainment");
      contentpane = getContentPane();
      contentpane.setLayout(new BorderLayout());
      pnlBody = new JPanel();
      pnlFooter = new JPanel();
      pnlBody.add(unLabel);
      pnlBody.add(jtfUN);
      pnlBody.add(pwLabel);
      pnlBody.add(jtfPW);
      pnlFooter.add(jbOK);
      pnlFooter.add(jbCancel);
      contentpane.add(pnlBody,BorderLayout.NORTH);
      contentpane.add(pnlFooter,BorderLayout.CENTER);
      pack();
      setVisible(true);
      jbOK.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
            String username;
            String password;
            String[] userUsernameArray = {"Ann Smyth", "John Murphy"};
            String[] userPasswordArray = {"1", "2"};
            String[] adminUsernameArray = {"Administrator"};
            String[] adminPasswordArray = {"0"};
            username = jtfUN.getText().trim();
            password = new String(jtfPW.getPassword());
            if(username.equals(userUsernameArray) && password.equals(userPasswordArray)){
               setVisible(false);     
               UserMainMenu umm = new UserMainMenu();
               umm.setVisible(true);
            else{
                 JOptionPane.showMessageDialog(null, "Error\n\nYou have entered an incorrect username and/or password\nPlease try again", null, JOptionPane.ERROR_MESSAGE);
            if(username.equals(adminUsernameArray) && password.equals(adminPasswordArray)){
               setVisible(false);     
               AdminMainMenu amm = new AdminMainMenu();
               amm.setVisible(true);
            else{
                 JOptionPane.showMessageDialog(null, "Error\n\nYou have entered an incorrect username and/or password\nPlease try again", null, JOptionPane.ERROR_MESSAGE);
      jbCancel.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
            setVisible(false);
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class AdminMainMenu extends JFrame{
   JPanel pnlBody;
   JButton btnOrderSystem = new JButton("Order System");
   JButton btnMaintenance = new JButton("Maintenance");
   JButton btnAdminLogOff = new JButton("Log Off");
   Container contentpane;
   public AdminMainMenu(){
      super("Main Menu");
      contentpane = getContentPane();
      contentpane.setLayout(new BorderLayout());
      pnlBody = new JPanel();
      pnlBody.add(btnOrderSystem);
      pnlBody.add(btnMaintenance);
      pnlBody.add(btnAdminLogOff);
      contentpane.add(pnlBody,BorderLayout.CENTER);
      pack();
      setVisible(true);
      btnOrderSystem.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
            setVisible(false);  
            //OrderSystem os = new OrderSystem();
            //os.setVisible(true);    
      btnMaintenance.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
            setVisible(false);  
            //Maintenance m = new Maintenance();
            //m.setVisible(true);    
      btnAdminLogOff.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
            int result;
            result = JOptionPane.showConfirmDialog(null, "Are you sure you want to log off?", null, JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
            if(result == JOptionPane.YES_OPTION){
               setVisible(false);
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class UserMainMenu extends JFrame{
   JPanel pnlBody;
   JButton btnUserProductMenu = new JButton("Product Menu");
   JButton btnUserMemberMenu = new JButton("Member Menu");
   JButton btnUserRentalMenu = new JButton("Rental Menu");
   JButton btnUserLogOff = new JButton("Log Off");
   Container contentpane;
   public UserMainMenu(){
      super("Main Menu");
      contentpane = getContentPane();
      contentpane.setLayout(new BorderLayout());
      pnlBody = new JPanel();
      pnlBody.add(btnUserProductMenu);
      pnlBody.add(btnUserMemberMenu);
      pnlBody.add(btnUserRentalMenu);
      pnlBody.add(btnUserLogOff);
      contentpane.add(pnlBody,BorderLayout.CENTER);
      pack();
      setVisible(true);
      btnUserProductMenu.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
            setVisible(false); 
            //UserProductMenu upm = new UserProductMenu();
            //upm.setVisible(true);    
      btnUserMemberMenu.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
            setVisible(false); 
            //UserMemberMenu umm = new UserMemberMenu();
            //umm.setVisible(true);  
      btnUserRentalMenu.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
            setVisible(false); 
            //UserRentalMenu urm = new UserRentalMenu();
            //urm.setVisible(true);  
      btnUserLogOff.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
            int result;
            result = JOptionPane.showConfirmDialog(null, "Are you sure you want to log off?", null, JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
            if(result == JOptionPane.YES_OPTION){
               setVisible(false);
}

See my answer in your other posting on this topic.
Please don't start new threads on the same problem; if you have new information (or a better code sample), just continue in the original thread.

Similar Messages

  • Problem trying to log in the database

    Hi im new using oralce i just had installed it in a P4 3.0Ghz 2GB Ram Windows XP SP3.
    And when i try to login i got this error:
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist

    Hi,
    As you have said, you have installed the oracle. Does you have create the database during the installation or you have done only installation of oracle. If you have done only installation of oracle software then you need to create a database. If you have create the DB, with out any issues then with respect to the following error which you have posted then can couple reasons for that.
    You can get the information if you google it any how the following are the reasons for that.
    ORA-01034 "ORACLE not available"
    Cause: Oracle was not started up. Possible causes include the
    following:
    - The SGA requires more space than was allocated for it.
    - The operating-system variable pointing to the instance
    is improperly defined.
    Action: Refer to accompanying messages for possible causes and correct the problem mentioned in the other messages. If Oracle has been initialized, then on some operating systems, verify that Oracle was linked correctly. See
    the platform specific Oracle documentation.
    Try to go through the ORACLE Documentation, you can resolve your issue with out any concerns.
    - Pavan Kumar N

  • I am trying to log into a website "Northern Carping" which until I installed Firefox I could log into with no problems and I can still log into this site on my laptop (which doesn't have Firefox)???

    I am a member of a forum www.northerncarping.co.uk/ in which I am experiencing problems trying to log in since I installed FireFox. I also have a laptop which I don't use FireFox on and have no problems. Could it be something to do with firefox?

    Check the date and time in the clock on your computer: (double) click the clock icon on the Windows Taskbar.
    * https://support.mozilla.com/kb/Secure+Connection+Failed
    You can retrieve the certificate and check who issued the certificate and other details like when it is valid.
    * Click the link at the bottom of the error page: "I Understand the Risks"
    Let Firefox retrieve the certificate: "Add Exception" -> "Get Certificate".
    * Click the "View..." button to inspect the certificate and check who is the issuer.

  • I'm trying to log onto app store, but I keep getting a message that my device or computer is unable to be verify. How do I verify it. However, when I use itunes, I have no problems in logging onto my account with the same apple ID

    I'm trying to log onto app store, but I keep getting a message the my device or computer is unable to be verified. How do I verify it when the app store will not allow me to log onto the account even when I use my Apple ID, which works with no problem on itunes. What is up and how do I correct it now!

    Check your mac's Serial Number.
    Some people have problems with missing serial numbers on their Macs and that's the message you get when this happens.
    Click on the Apple at the top left of the screen, open "About this Mac" and click on "More Info". You should see a list with information about your Macbook Air. Check that on the Serial Number field you have your Mac's Serial. If you have "SystemSerial#" written instead then that's your problem.
    You can re-enter your serial number if you have a USB CD drive, it's not very straightforward but I can walk you through it if you need it.
    Cheers

  • I have a MacBook Pro and OS10.6 and am trying to log into a site that requires me to enter a code from a picture ... problem is all I get on the screen is a white '?' in a blue box. What do I need to display the picture?

    I have a MacBook Pro and OS10.6 and am trying to log into a site that requires me to enter a code from a picture ... problem is all I get on the screen is a white '?' in a blue box. What do I need to display the picture?

    Reload the page. If it doesn't load, choose Activity from Safari's Window menu, find that picture in the list, and see what it says to the right; this may reveal what the problem is.
    (91827)

  • Hi,  Trying to log in with my user id and password at iocbc but was not able to access. Problem message shown : Applet not initialised or may not be supported. Please refresh the page or check the browser setting  Anyone can advise? or i need to download?

    Hi,
    i have the same problem?
    Trying to log in with my user id and password at iocbc but was not able to access.
    Problem message shown : Applet not initialised or may not be supported. Please refresh the page or check the browser setting
    Anyone can advise?

    You need to install Java for your Mac OS version, and/or make sure it's enabled in the Java Preferences application and your browser's preferences.

  • HT204409 I am trying to log onto my wireless connection but it keeps telling me I'm unable to locate any wireless network.  I know there are several networks nearby. Is this a problem with my phone or my router?

    I am trying to log onto my wireless connection but it keeps telling me I'm unable to locate any wireless network.  I know there are several networks nearby. Is this a problem with my phone or my router?

    I found a solution that has worked on both iPhone 4's I have that have had the same issues, and also including not being able to download updates in the App store.
    Go to Settings > WiFi and turn it OFF.
    Next go to General > Cellular > Cellular Data and turn it OFF
    Next go back to Settings > WiFi and turn it ON, (wait a few seconds for it to sync with your network)
    Finally go back to General > Cellular > Cellular Data and turn it ON.
    I had the same issues on both my wife's phone, and my own, and it fixed it immediately without changing any proxy settings or reboots, (which I did try on my phone and did not work, but did not try on my wife's phone)
    Hope this helps!

  • FCP acts weird when trying to Log Canon HV30 footage HDV

    Hi all,
    I have made my first recording with my new HV30 in HDV format with CINE mode. I had couple of tapes from my old DV Canon and i have rewinded a tape from the beginning and started to record over it. It worked fine an the image are great on the HV30.
    I want to use FCP for editing and i am trying to Log and Capture the recording. *My problem is that FCP capture is horrible slow. It does not update the capture window more then couple of time in a min. Sound is way off the video. If use Capture Now it starts capturing and then FCP freezes after one min and i think it does that just after the first scene shift.*
    I have tried to capture to USB and internal disk but no difference.
    Running Leopard 10.5.2 on a Core 2 Duo 3Ghz
    thanx

    Anyone ? It drivez me crazy that i can't log and capture with FCP.
    So far i have captured the video with iMovie then imported the footage in FCP.

  • Says I tried to log onto AIM too many times.

    I just upgraded my wife's G4 iBook to Leopard and am trying to get the iChat AV to work. I am using a USB cam with iChatUSB and Macam and the camera is working fine. I can get the camera to work over Bonjour to my G5 iMac (also just upgraded to leopard and also using a USB camera with the same set-up). When she tries to do a video or text chat over her AIM account we get an error message saying that she has tried to log on too many times in a short period and to try back later.
    Just to see if her account was locked I wen to the AIM web site and can log in with her ID and password with no problems.
    I have waited over an hour and we are still getting the message. Any suggestions on how to unlock this?
    Thanks,
    David

    I may have found a fix:
    When I went to my ichat pref. I found one difference between the account i was using and the other account I tried. In the sever settings section it lists this for the server slogin.oscar.aol.com the account i was trying to log onto didnt have the first "s" and the SSl box wasn't checked. I tried adding the "s" and checking the box and it fixed things.

  • Error ORA-12560 prompts when trying to log in to the Enterprise Manager

    Hi all,
    I am a newbie to Oracle.
    Just installed the Oracle 9i Database Enterprise Edition (9.0.1) into Windows Server 2003 Standard Edition. Problem is encountered when trying to log in to the Enterprise Manager Standalone mode using either system/oracle or scott/tiger as credentials. Error "ORA-12560: TNS:protocol adapter error" prompts.
    I tried to check with some configuration and see whether the services are started. Services of "OracleOraHome90TNSListener" and "OracleServiceORCL" have been started and the database exists in the dedicated directory. Environment variables of "ORACLE_HOME" and "ORACLE_SID" have been added manually as the SID is set to orcl, which I just follow what the instruction manual has stated. Moreover, I can't get access using command prompt typing "svrmgrl"; error returned stating " 'svrmgrl' is not recognized as an internal or external command, operable program or batch file."
    Another information is that there is no domain set in my server. Just a server with a name being assigned in a workgroup.
    Hence, would you mind please advice me what to do in order to get access into the Enterprise Manager? It's quite an urgent task.
    A million thx in advance!
    Best Regards,
    Karen

    Hi Jigneshrp,
    Thanks for your reply.
    It is checked that the listener is running and TNS name service exists. Following your advice, I did create a new listener and another name service and use them, but the same error turns out when trying to log in to the Enterprise Manager again.
    Additional information to take note for is that while reconfiguring the existing listener or creating a new listener, a mesage prompts stating "The information provided for this listener is currently in use by other software on this computer. You can proceed with the configuration as it is, but it will not be possible to start this listener until the conflict is resolved. Would you like to continue with the continue with the configuration anyway? Yes/No".
    As for the reconfiguration or the new creation of TNS names service, when I am trying to test for the connection, the results in the details pane states that "Connecting... ORA-12560: TNS:protocol adapter error. The test did not succeed...."
    Would you mind pls advice me on these?
    Furthermore, there exist 2 questions I am wondering is that it is stated in the instruction manual that prior to the installation, a static IP should be specified for it instead of the DHCP one; hence, I wanna ask after the complete insallation, is it that the server should be running in the network, i.e. allow it to get connected with the outside network?
    2nd question is that can Oracle 9i Database Server Standard Edition (9.0.1) be installed under a Windows Server 2003 Standard Edition and just a Window XP Professional?
    Thanks for your reply.
    Best Regards,
    Karen

  • Error message when trying to log on to Desk Top Manager

    I tried to log on to my Desktop manager last night and keep getting this same message.
    The WIndows Installer keeps coming up and it is looking for the file "Blackberry 7130e.msi".  The Blackberry that I had previous to the Curve was a 7130, but I have not had that BB for almost a year.  I have used desktop manager many times since I got the Curve with no problems.
    My service provider is U.S. Cellular and I have contacted them.  The data tech I talked with has never heard of this problem so was unable to help.
    I have completely uninstalled all versions of the desktop manager.  Reinstalled the most current version and still I am getting this message when I try to open the DT Manager.
    I then uninstalled 5.1.  The 4. is still showing up in my list of programs when I go to the windows Install/Unistall program.  I try to get rid of the 4. program and the windows installer comes up.  I click on cancel and it appears that the program uninstalled.  If I close Install/Uninstall and then reopen it the program is right there back on the list and has not uninstalled.
    I have also searched my whole computer and the installation disk that came with the 7130 and the Curve and the file it keeps requesting is no where to be found.
    I have also tried downloading the 7130e download from the BB website and I keep getting the same error message and nothing will install.
    I hope you have a solution as I have spent well over 3 hours trying to fix this just so I can use this program with my phone.  I am beginning to think I should have gotten an HTC Windows Mobile Device instead.

    Hi and welcome to the forums!
    A couple of places for you to visit: Blackberry 101    Tips & Tricks
    See if this kb helps:   http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=KB12847&slic...
    I'm not sure that you saw the error msg. included in the kb, but it discusses removing .msi files from previous installations of DM.   Post back and let us know how it goes.
    Happy to have you here!
    IrwinII
    Please remember to "Accept as Solution" the post which solved your thread. If I or someone else have helped you, please tell us you "Like" what we had to say at the bottom right of the post.

  • Error CNDP/005 when trying to log into a SAp System

    Hello everyone,
    when trying to log into a SAP System, i get the following dump:
    Error analysis
        Short text of error message:
        Control Framework: Data stream error. Transaction terminated.
        Long text of error message:
         Diagnosis
             The data stream from the frontend could not be interprete
         System Response
         Procedure
             This error is very probably due to an error in the fronte
             software installation or an obsolete version. Inform your
             administrator.
         Procedure for System Administration
             The frontend should have at least the same version as the
             release. Install the correct frontend. If the error conti
             occur, inform SAP.
        Technical information about the message:
        Message class....... "CNDP"
        Number.............. 005
        Variable 1.......... " "
        Variable 2.......... " "
        Variable 3.......... " "
        Variable 4.......... " "
    It occurs directly after inserting my User/Password and pressing enter.
    My SAP GUI: Version 710, Patchlevel 11
    The strange thing about that:
    Last week i didn't have this error and i didn't change anything.
    I already uninstalled, reinstalled and rebooted but it didn't work.
    I would appreciate some help.

    I upgraded to patchlevel 13, which solved the problem.

  • My ipod touch 4g isnt letting me download apps now whenever i try to it says cannot connect to itunes, i cant find anything that works, i logged out of my apple account and tried to log back in but it wont let me! Can anyone help me

    My ipod touch 4g isnt letting me download apps now whenever i try to it says cannot connect to itunes, i cant find anything that works, i logged out of my apple account and tried to log back in but it wont let me! Can anyone help me

    Likely Apple problem
    iTunes Store - 20% of users are affected
    Users are unable to make purchases.
    http://www.apple.com/support/systemstatus/

  • Bizarre problem trying to import .MTS (AVCHD) files into PSE7 Organizer

    Hi
    b Summary of problem:
    *I recently upgraded to PSE 7 / PRE 7
    *I am trying to import .MTS (AVCHD) files into the PSE7 Organizer
    *I get a "...did not contain any supported file types..." error on attempted import
    b HOWEVER...
    *I can edit same footage in PRE7
    *This footage is automatically added to the Organizer
    *I can play this footage in the PSE7 organizer but generating thumbnails takes ages
    *Camera: Sony HDR SR12 producing .MTS files (full 1920x1080i HD)
    *PC: Intel Core i7 940 CPU, 6GB RAM, RADEON HD 4870 512MB
    *OS: Vista 64 bit
    b Detail:
    I have recently upgraded my PRE/PSE bundle to ver 7 primarily because the new version of PRE boasts support for AVCHD.
    Having installed the new software I quickly tried editing footage in PRE7 with video taken on my Sony HDR SR12 camera (footage taken in full 1920x1080i HD) and it works! Hoorah! I can now finally edit AVCHD footage in it's native format using PRE. Thank you Adobe!
    But my joy was very shortlived because when I tried to import some other footage from the same batch into my PSE7 Video Catalog it wouldn't work. I got a pop up box containing the following error:
    i "Nothing was imported. The file(s) or folder(s) selected to import did not contain any supported file types, or the files are already in the catalog."
    Under this message is a list of the files that I tried to import. Next to each one there is a reason (it's the same reason for each clip):
    i "Reason: The file is damaged or is a format that cannot be included in the Organizer."
    To import files I use the following method: File / Get Photos and Videos / From Files and Folders
    HOWEVER, the files that I imported directly into PRE7 in order to edit them have (surprise, surprise!) automatically been added PSE7 Organizer's Catalog. It takes a quite a while to generate a thumbnail for each clip but it does eventually do it and when it does I can play that footage in PSE7.
    Just in case you're confused by this stage... If I try and manually add files to the PSE7 Organizer it doesn't work BUT if I edit that footage in PRE7 and then load the PSE7 Organizer I see the footage has been automatically added. This makes no sense whatsoever!
    Am I doing something really stupid here? Why oh why will the PSE7 Organizer not import .MTS (AVCHD) files?!
    NB: While searching for a solution to this problem I have, thanks to this Forum, found out about the K-Lite Codec Pack. I downloaded and installed the Basic pack v4.4.5 and now I can, at least, play my .MTS video files in Windows Media Player... I wish I had found out about that a couple of months ago because it would have saved me from buying Cyberlink PowerDVD 8!
    Please someone help before I lose the plot.
    Thanks
    Patrick
    b PC: Intel Core i7 940 CPU, 6GB RAM, RADEON HD 4870 512MB, Vista 64 bit
    b Camera: Sony HDR SR12 producing .MTS files (footage in full 1920x1080i HD)

    Hi
    I'd just like to add an update to this post.
    b Summary:
    *K-Lite Codec Pack clashes with Sony's Picture Motion Browser (PMB) software
    *Analysis of video in Sony's PMB is well worth doing!
    *You can Drag and Drop clips from Sony's PMB into PRE7
    b Detail:
    As you've probably gathered I have now settled on using Sony's Picture Motion Browser (PMB) to Catalog all my video. Sorry Adobe to talk about someone elses product but the Adobe Organizer just can't cope with AVCHD footage no matter how you manage to import it! It's far too sluggish and my PC has an Intel Core i7 940 CPU with 6GB RAM and a 10,000 RPM HDD!
    Anyway, in my first post you'll have read me raving about the K-Lite Codec Pack but sadly I've had to uninstall it because it kept on causing PMB to crash. PMB runs much smoother and quicker WITHOUT that codec pack. Something about it clashed with PMB. The once agile PMB became sluggish and unresponsive.
    Having now removed the codec pack PMB is back to being agile and generaly lovely.
    To view AVCHD footage outside of PMB I have reverted to using Cyberlink's PowerDVD 8 - there's always a pregnant pause between double-clicking on the clip and it playing but that's the only drawback.
    If you are going to use Sony's PMB for cataloging your video collection (and I recommend you do so BUT only if you have AVCHD footage - otherwise stick to Adobe's Organiser) then I can fully recommend "Analyzing" all of your footage. This takes time and a bit of patience because it kept stopping for no apparent reason but would readily start up again (without having to do anything else) BUT once it's done it'll reward you with the following:
    *Filter on any combination of Scenery, People, Smiles - e.g. with a click of a button you can isolate footage that contains smiles, etc
    *Face Search - if you select some or all of the footage in the right-hand pane it will then put a small thumbnail for all of the different faces in that selected footage in the bottom "Face Search" pane. If you then click on one of those thumbnails it will jump to the clip(s) that contain that face and grey out all the other clips
    *Expand Videos - This tool is brilliant! In normal viewing mode you get a thumbnail of the video whether you're in Folder view, Calender view or Detail List view. If, however, you select "Expand Videos" from the tool bar it will show you a series of frames contained within that clip. You can choose from "Highlights" or various regular intervals (5 secs, 10 sec, 30 sec, 1 min, etc). The Highlights option does a pretty good job of picking out the significant changes within the clip
    Lastly, I have discovered that you can drag a clip from Sony's PMB into PRE7. It won't let you put it directly onto the Timeline but it will let you drop it into the Project file list (found under the Edit tab).
    I do hope that this info has helped others like me who are trying to get to grips with editing and cataloging AVCHD footage.
    Patrick

  • I am trying to log onto a webinar. Their website says Adobe Flash Player is disabled. I have been on Adobe website and it has checked my computer, saying that my Flash Player is enabled. Where do I go now?

    I am trying to log onto a webinar. Their website says Adobe Flash Player is disabled. I have been on Adobe website and it has checked my computer, saying that my Flash Player is enabled. Where do I go now?

    Hi,
    Which OS and browser you are using and what is your flash player version? To check your flash player version visit Installation problems | Flash Player | Windows and click on check now button.
    Can you also please post a screenshot of the problem that you are facing using How to post a screenshot in the forum
    -Varun

Maybe you are looking for

  • A75-209 not seeing CD/dvd drive and laptop loggof few seconds after loggin

    Hello everybody, I got into a " self loggoff after loggin" issue, and I'm not able to restore the computer on any ways. Tried it on Safe Mode with no avail, it appears the window to loggin and after do it after few seconds it starts loggoff the compu

  • IPhone contacts won't sync anymore

    I'm having this issue where new contacts that I add on the iPhone are not added to the computer, even though in iTunes "Sync Address Book Contacts" is checked and "All Contacts" is checked under that section. Does anyone know how to deal with this? T

  • How to play book as slideshow in Photos or export it?

    Hello, In iPhoto I made several books and printed. Additionally I could play these book into slide show and export them as m4v into my Apple TV.  Now on the Photo I do not see option to create slideshow from book and/or export it? Does anyone know if

  • On Demand Application Processes

    Hi, I was trying to create a report like the one that was posted in the thread Question for Carl Backstro: http://apex.oracle.com/pls/otn/f?p=11933:13. Except that I had some problems with the creation of on-demand process, because when I go to creat

  • Can�t open array and object manager

    Hello, i�ve done a fresh install of SGD 4 on Fedora Core 3. Here I am not able to open array and object manager. I see them running in the webtop but get no display. I get the following logs: in wm_errors: X connection to unix:10.0 broken (explicit k