Delaying buttons

Hi all.
Quick question concerning buttons. I like to have my menus transition onto the screen. (you know, they either fade on or slide on.. etc..) I'll usually make a quick video in motion where the background will fade in and the writing for the buttons will write on or fade on. The problem I hit is that when I create my actual buttons in DVDSP, the buttons are there the whole time.. (it looks really stupid when the background is black and there's a white dot on the screen.) I know a quick solution is to just make two videos, one that's the intro and then one that's the actual background in which I place my buttons, but then I hit a problem if I want to use sound in my intro that I want to carry through the menu.
Is there a way to get buttons to delay appearing until the appropriate time? Or is there a better method I could use to get the effect I'm wanting? I'm fairly new at these Mac programs (as I'm used to PC), so any advice I can get, the better.

Yes, there is...
The usual way is to set the loop point for the menu in the proerty inspector to be at a point where the text has faded up completely. You then need to add a simple overlay file to define the button highlights. When you add this to the menu it gets attached to the loop point marker and so the buttons only appear once the loop point is reached.
Read up in the manual about setting the loop point - it should help clarify all this.

Similar Messages

  • Delaying button's appearance

    Is there any way to cause the buttons on a menu to delay before appearing on the menu screen?

    Definitely works in DVD-SP 2 (just did it the other day) but as "Houghts" says it may be that you need to use the Simple overlay method (whhich is what we do)
    The only thing that doesn't work properly is returning to the loop point if you menu out of what's playing (I think I'm right in saying it defaults back to the beginning of the menu). We usually create two versions of the menu - one with the loop and delayed buttons appearing - for when the disc is first played - then one which has the buttons load straight away from the loop point.
    Hope that makes sense (kind of)
    Steve Kirkham

  • Delayed button activation

    In all of the DVD's I've made so far, I've noticed that it takes one cycle of the animated menu before the buttons are active. For example, if the play time of the menu is 20 seconds, it takes 20 seconds before the buttons are active. This happens both if the menu is set as 'first play' and/or the menu is accessed using the remote's 'menu' button. I noticed this doesn't happen in the 'Simulator'. Could this delay possibly be a 'feature' of DVD players, or am I missing a setting some place.
     20" Intel iMac (2.0GB RAM, 500GB HD + 1.5TB external, 20" Cineama Display)   Mac OS X (10.4.7)   All tools, no talent!

    Hi:
    I've noticed that it takes one cycle of the animated menu before the buttons are active.
    Look at the Loop Pointsetting. In animated menus, the buttons overlays appear when the Loop Point time arives. That could be a reason for such behaiour, ... but ussually you must see that in simulator too!
    Did you build the animated menu by yourself or are using a template?
      Alberto

  • Delaying Buttons for menu

    I have made a motion menu in AE and I bring in my play and chapter buttons. I wanted to lay down a button symbol next to the text but don't want it to come up until the play and Chapter texts have come into the menu. How do I delay a button from coming up. Any help would be nice. Dave

    Just make the overlay delayed until you want it to appear by setting the loop point - AE or Motion or Final Cut are just making backgrounds video
    Look at 14. 15 in
    http://dvdstepbystep.com/motion.php
    and last two images (booth 14, whoops) here
    http://dvdstepbystep.com/useelements.php

  • Delayed button

    all of sudden now with my S5 when I am texting or dialing a phone number there is a delay.  I press the button and instead of it showing on the screen it takes a split second which seems like eternity when your trying to text.

        fdupdike1,
    I am so sorry to hear about the delay on your phone. I do understand how frustating a delay can be when you are trying to get a message or call out quickly. When did this start happening? Have you downloaded any new applications or device software around the time this began? If so please power cycle your device. Also, please test the device in "Safe Mode" and see if the issues persist. http://vz.to/1hQYxZ0
    LindseyT_VZW
    Follow us on Twitter @VZWSupport

  • Delayed button display

    I created a menu in motion. It consists of video and audio and artwork of a prescription pad from a pharmacist. The pad eventually comes full, about 20 seconds in. How do I not allow the viewer to activate the buttons until the pad is full and the motion generated text is revealed basically about :30 into the menu. Is there a way to delay the buttons from showing up or being able to be activated. The buttons are being generated in DVD studio pro. All software is updated most recent.

    http://creativemac.digitalmedianet.com/articles/viewarticle.jsp?id=27738

  • I want to display live video in LV, with the option to click on "delay" button, to view what happened N s. ago (i.e., a variable video delay)?

    Hi. I have a standard video camera + PCI 1408. I can nicely show the current image, using LL Ring examples. I want a boolean switch so I can switch from watching the live video to the video recorded N seconds ago. My initial hope was to use LL Ring, with
    lots of buffers, and copy/extract either latest buffers or a buffer several acquisitions ago. However, this seems to add no delay at all. Suggestions please? Thanks Patrick

    Patrick,
    What I start with is the sequence acquisition. I change it from one time to continuous, and simplify it a little bit.
    I have included an example that shows how to set up a buffer and display delayed video.
    One thing you have to do is open MAX and change the maximum number of buffers for IMAQ to something larger than 50. I usually select around 2000 buffers so that I never run out.
    Bruce
    Bruce Ammons
    Ammons Engineering
    Attachments:
    Delayed_Video.vi ‏66 KB

  • Problem with JFrame and busy/wait Cursor

    Hi -- I'm trying to set a JFrame's cursor to be the busy cursor,
    for the duration of some operation (usually just a few seconds).
    I can get it to work in some situations, but not others.
    Timing does seem to be an issue.
    There are thousands of posts on the BugParade, but
    in general Sun indicates this is not a bug. I just need
    a work-around.
    I've written a test program below to demonstrate the problem.
    I have the problem on Solaris, running with both J2SE 1.3 and 1.4.
    I have not tested on Windows yet.
    When you run the following code, three JFrames will be opened,
    each with the same 5 buttons. The first "F1" listens to its own
    buttons, and works fine. The other two (F2 and F3) listen
    to each other's buttons.
    The "BUSY" button simply sets the cursor on its listener
    to the busy cursor. The "DONE" button sets it to the
    default cursor. These work fine.
    The "SLEEP" button sets the cursor, sleeps for 3 seconds,
    and sets it back. This does not work.
    The "INVOKE LATER" button does the same thing,
    except is uses invokeLater to sleep and set the
    cursor back. This also does not work.
    The "DELAY" button sleeps for 3 seconds (giving you
    time to move the mouse into the other (listerner's)
    window, and then it behaves just like the "SLEEP"
    button. This works.
    Any ideas would be appreciated, thanks.
    -J
    import java.awt.BorderLayout;
    import java.awt.Cursor;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class BusyFrameTest implements ActionListener
    private static Cursor busy = Cursor.getPredefinedCursor (Cursor.WAIT_CURSOR);
    private static Cursor done = Cursor.getDefaultCursor();
    JFrame frame;
    JButton[] buttons;
    public BusyFrameTest (String title)
    frame = new JFrame (title);
    buttons = new JButton[5];
    buttons[0] = new JButton ("BUSY");
    buttons[1] = new JButton ("DONE");
    buttons[2] = new JButton ("SLEEP");
    buttons[3] = new JButton ("INVOKE LATER");
    buttons[4] = new JButton ("DELAY");
    JPanel buttonPanel = new JPanel();
    for (int i = 0; i < buttons.length; i++)
    buttonPanel.add (buttons);
    frame.getContentPane().add (buttonPanel);
    frame.pack();
    frame.setVisible (true);
    public void addListeners (ActionListener listener)
    for (int i = 0; i < buttons.length; i++)
    buttons[i].addActionListener (listener);
    public void actionPerformed (ActionEvent e)
    System.out.print (frame.getTitle() + ": " + e.getActionCommand());
    if (e.getActionCommand().equals ("BUSY"))
    frame.setCursor (busy);
    else if (e.getActionCommand().equals ("DONE"))
    frame.setCursor (done);
    else if (e.getActionCommand().equals ("SLEEP"))
    frame.setCursor (busy);
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.print (" finished");
    else if (e.getActionCommand().equals ("INVOKE LATER"))
    frame.setCursor (busy);
    SwingUtilities.invokeLater (thread);
    else if (e.getActionCommand().equals ("DELAY"))
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (busy);
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.print (" finished");
    System.out.println();
    Runnable thread = new Runnable()
    public void run()
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.println (" finished");
    public static void main (String[] args)
    BusyFrameTest f1 = new BusyFrameTest ("F1");
    f1.addListeners (f1);
    BusyFrameTest f2 = new BusyFrameTest ("F2");
    BusyFrameTest f3 = new BusyFrameTest ("F3");
    f2.addListeners (f3); // 2 listens to 3
    f3.addListeners (f2); // 3 listens to 2

    I've had the same problems with cursors and repaints in a swing application, and I was thinking of if I could use invokeLater, but I never got that far with it.
    I still believe you would need a thread for the time consuming task, and that invokeLater is something you only need to use in a thread different from the event thread.

  • Smart Plug Connection Issues when adding to your system.

    I just got my new smart plugs in the mail, and there was an issue setting them up. The pairing was not happening. We tried for a good 20 mins following the instruction for pairing the devices. I got them to finally pair when instead of doing a 2-3 second button press i switched to a double tap quick press. The devices were dicovered right away. Looks like the instruction for the devices dont seem to match up with what the support is told to do to pair those smart plugs. I wanted to share so you guys could look into this as the rep that helped me today said these are always tricky for them to get connected.  Recap Doing 2-3 second delayed button presses did not work. Doing 2 quick presses of the button made the smart plug start clicking. I could hear it turning on and off.

    I don't want to create another user in the business system for this purpose, does anybody
    know what other configurations should I do for retrieve the message details automatically without
    any login information like retrieving the message list.
    Check if you can apply Single-Sign-On....
    Refer this link from help:
    http://help.sap.com/saphelp_nwpi71/helpdata/en/32/1c1041a0f6f16fe10000000a1550b0/frameset.htm
    Section from the link:
    Since the Runtime Workbench communicates with AS ABAP, the Java logon ticket key pair must
    be modified, and the corresponding certificate must be exported from AS Java and imported to AS ABAP.
    Hope it helps...
    regards,
    Abhishek.

  • Picture duration longer than 4sec not possible? Always gets set to 10min instead.

    Hi,
    I am using iMovie 11 (9.0.4). At some point in my project, I want to show a single photo, but not for the default 4 seconds, but rather for 30 seconds. So I double-click on the clip and in Clip->Duration I try to change the 4,0s to something else.
    First thing which is stange is that I cannot simple set my cursor behind the 4 and hit backspace. Even entering something after the 4 (e.g. 42) is not possible. The only thing which I can do, is setting the cursor behind the 's' and delete everything. Only then am I able to actually enter something in this edit field. Well, I enter 30, but without the 's', because pressing the 's' key on the keyboard is again not possible. Strange? If I hit Enter, 30 get immediatley replaced by 10:00 and now my clip is 10 minutes long. No matter what I enter in this field, it always gets set to 10 minutes.
    Does anyone has a solution for this?

    You simply cannot - repeat cannot - go from one menu to another menu without breaking up the soundtrack. It is not possible under DVD-Video specifications. DVD-Video is graphically dominant, which means when you switch from one menu to another, or from a timeline to a menu, or from a menu to a timeline, the audio
    i must change to the next item's audio stream.
    There is no way around this.
    I have LOST season 1, and will check it out for you & get back to you later on.
    You CAN have continuous audio from the movie into when the highlight layer (subpicture) appears by delaying the appearance of the buttons. The whole thing then becomes one long Motion Menu, with delayed buttons. This can have one long audio stream. Clever timing will make it appear that Audio is seamless if it goes from Motion to Static. I will check this out on Season 1 though.
    Slideshows.
    Best way to do these is to not actually create a slideshow, but instead create a video timeline at a very low bitrate for the video. Set up your stills as & where you want them in relation to your Audio, in your NLE (Premiere Pro?) and export to a 3Mb/sec MPEG-2 clip instead. You may - depending on the pictures - get away with 2.5 or even 2Mb/sec.
    Chapters.
    What you want to do can only be done via scripting.
    Text.
    Subpicture overlays can contain a maximum of 4 colours, including background as colour #1. Blu Ray & HD DVD both get around this and increase the allowed colours in subpicture overlays. What this means to you is that you cannot use drop shadowing or anything other than primitive anti-aliasing. The best you can do is to set the main text colour as the base, and then use the 2 highlight colours at 66% & 33% respectively. It takes practise but can be quite effective.

  • Premiere Pro HotKey Problems With Wacom

    I currently purchased the small Intuos 4 to use with Premiere Pro and AFX, and have ran into some problems with setting up hot key combinations on the Wacom express keys.
    This only happens in Premiere Pro. I've already tested this out to see if it's the tablet, but FCP does the command correctly, and I set up the same command with TypeEdit and it gave me the correct order that I made the command.
    So here's the Hot Key Combination I have set up
    e (mark in), b (move to next edit), r (mark out), opt+x (lift), 7(move to gap), ctrl+v(paste)
    Using this in Final Cut, it works exactly as it's written from left to right. In Premiere Pro, the Move To Next Edit function goes out of order, so it reads it as follows:
    e, r, b, opt+x, and so on
    The Mark In and Mark Out functions happen faster than the Move To Next Edit Function, and instead of moving an entire cut clip, it only moves 1 frame.
    So my question is, is there some kind of way to fix this problem at all? Sounds crazy, but can the Mark In and Mark Out functions be slowed down somehow?
    I've already tried using delayed buttons to try and separate the Mark In and Mark out from the Move To Next Edit, but it works whenever the program feels like making it work.
    I've also already tried different buttons, and that doesn't work either...
    This would really help out my workflow if there's a way to fix this!

    The macro is
    Marking In where the CTI is, Moving to the Next Edit point, setting a Mark Out, Copying the selection between the Mark In and Mark Out, Lifting (or ripple deleting) the clip, Moving to the Previous Gap, and Pasting the Clip.
    Basically it's just taking a clip from one point in the timeline, copying it, and then moving it to a gap in the timeline to continue my edit. I do my work by placing all the footage on the timeline, watching all clips, and then constructing the video from the very left, leaving 1 gap separating the actual video with the remaining footage. This way I can find footage and do the shortcut above on the keyboard without zooming out etc. Making it into one button though would definitely help save time.
    It's a 7 step keystroke so bringing it down to 1 keystroke on the express keys on a Wacom Tablet would help save a lot of time.
    Everything works, except the Mark In and Mark Out shortcuts. They happen faster than the Move To Next Edit shortcut, so instead of Marking an In point, and moving to the next edit, it sets a Mark In point first, and then a Mark out point which only selects one frame, and then continues with the rest of the keystroke.
    Again, the hot keys happen like this:
    Mark In, Mark out, Move To Next Edit Point, Lift, Move To Previous Gap, Paste
    INSTEAD of this
    Mark In, Move To Next Edit Point, Mark Out, Lift, Move To Previous Gap, Paste
    Completely two different keystrokes with different outcomes.

  • "Midi Events" Environment, floating window. How to repeat in next project?

    This is proving a slightly bizarre, lovely but rather annoying issue.
    I have searched high and low on the web today for an answer, I cannot find it. allow me to explain, I've just upgraded to Logic Pro 9, and after enjoying the Thievery Corporation demo I set to work on scoring a video doc of mine, as really I'm an ex musician who now works ostensibly in Final Cut, on my Mac Pro.
    Anyway my first Logic project is going well, lots of plugin purchased, first 5mins complete, now here's the thing, when I open my first project a floating window also appears with it, and it is listed separately from arrangement on the window tab, in this case arrangement is called "imtro" and the floating window is called "imtro:Tempo". It opens and closes with the project, if I hit the top corner of the floating window to close it goes and closes, and cannot be re opened unless I close the project.
    I thougt it was a new feature in Logic 9, as it operates as a lovely appregiator inside of Logic. It had 4 boxes (orange) Midi Effects (On/Off), Arp Starts (immediately/on first 1/1, 1/2, 1/4 etc) then a 1/16 appregiator, and 1/8 appregiator button, both with all the varaitions you could imagine, and finally a Delay button. And put simply when I select any track in the arrange window, and swith to Midi Effects to On, it plays wonderfully appreg..., in record it creates all the notes in the piano scroll and event list as I'm playing.
    Trouble, once dismissed, I cannot recall it without closing the project, reopening the project.
    Worse yet on starting new project for the next piece of music in video doc' I've discovered, it's not a feature I can find anywhere, what's going on?
    Back in the original project if I pull the window by the right corner there's a whole bunch of boxes, and it turns out this is an Environment. The trouble is in any other project I open the Environment window from the window tab, and Midi Effects environment is nowhere to found. So I learnt how to import environments from my first project into this project, but cannot seem to get the environment to float over the project where clicking on track in the Arrange window allows the Midi Event float to effect the track I'm playing, yes you can reassign the header of the track to it but it doesn't work as well.
    Now have I just stumbled on a new feature, I heartily recommend for Logic 10, or am I missing something? Or is this some kind of glitch or corruption, which just appears to be a good one? I certainly can't read about anywhere, and I can't repeat it by just calling it up in the project? What am I missing? I wonder if Tempo being in it's name is significant, as a floating window, when imorted in Midi effects it appears as the "project name:Enviroment: rather than "project name:Tempo".
    Anyone?

    The layers in the env. are accessed by the drop down menu at the upper left of the env. window. It has a text field and a downward facing triangle. You may need to go into the view menu, and enable the inspector - it's at the top of that. You can also just hit "I" (as in the letter 'eye').
    When you are importing, you should select the 'total replace' option. There are connections that are not made if you just import that layer.
    Edit: I should add that 'total' replace will get rid of any instruments you already have, so use it with caution. If you have a bunch of work done, investigate merging.
    Message was edited by: seeren

  • Pull tab menu navigation issue

    I've been running into some issues within pull tabs. It’s currently being used for the navigation within the folio (see attached PNGs).
    There seems to be a .125 second to even a .5 second delay on the interactivity with the buttons. The rate at which they respond is reacting differently each time they're touched but all are approximately within the interval .125 - .5 seconds. The navigation itself is a PNG and the interactivity is implemented through 8 rectangle frames converted into button forms placed over the top of their associated buttons. Have you ever heard of someone experiences issues concerning usability when converting frames into button forms?
    I’m thinking that it’s got to be something to do with DPS not being able to respond to the created button forms appropriately or it’s a bug within the pull tab that delays button sensitivity implementing the lag when the user initiates it's action.
    Any help on this would be greatly appreciated!

    My apologies, that portion was copied from an email I sent to a colleague regarding the matter.
    I always convert no fill/stroke frames to buttons on top of the artwork - not the artwork itself. My co-worker who's been working with DPS for years does it differently. Wanted to confirm that.
    Still having issues on response time..

  • IPhone 4s Voice Memo App has 5 second delay when the record button is pressed. When it starts recording, it goes from 0 seconds to 5 or so seconds recorded. This happens randomly and often and sometimes has the delay but starts at zero. Solution Anyone?

    After iOS 7 update, my iPhone 4s Voice Memo App has 5 second delay when the record button is pressed. When it starts recording, it goes from 0 seconds to 5 or so seconds that it shows has recorded. This happens randomly and often, sometimes it will have the 5+ second delay but starts recording at zero seconds. Besides the delay it has been working fine as far as saving and playback is concerned. I have plenty of storage on the phone itself and it NEVER had this problem before I updated to iOS 7. I've reset the phone a couple times by holding down the power and home buttons at the same time. The reason I have an issue with this is that I'm always recording song ideas, melodies, and scratch takes; what I'm saying is when I come up with an idea I need to be able to know that when I hit record it will start right then so I don't forget anything that has just popped in my mind.
    Does anyone have a solution or suggestion?
    Thanks

    After iOS 7 update, my iPhone 4s Voice Memo App has 5 second delay when the record button is pressed. When it starts recording, it goes from 0 seconds to 5 or so seconds that it shows has recorded. This happens randomly and often, sometimes it will have the 5+ second delay but starts recording at zero seconds. Besides the delay it has been working fine as far as saving and playback is concerned. I have plenty of storage on the phone itself and it NEVER had this problem before I updated to iOS 7. I've reset the phone a couple times by holding down the power and home buttons at the same time. The reason I have an issue with this is that I'm always recording song ideas, melodies, and scratch takes; what I'm saying is when I come up with an idea I need to be able to know that when I hit record it will start right then so I don't forget anything that has just popped in my mind.
    Does anyone have a solution or suggestion?
    Thanks

  • Left touchpad button delay in web browsers

    I'm at a loss to figure out what could be causing my left button on my touchpad to delay intermittently. On both Google Chrome (whether stable, beta or dev) and Firefox, the left button when pressed may not respond for up to a few seconds. This is most noticeable when using Google Street View and Google Maps, which refuse to change viewpoint when holding down the left button. It isn't a Flash fault because there is also a delay when highlighting text.
    I can rule out the possibility of any hardware fault as the left button on the touchpad works fine elsewhere, within KDE (ie. drag and dropping works without delay or fault) and other applications.
    Output of my X log:
    [ 5.365]
    X.Org X Server 1.14.1
    Release Date: 2013-04-17
    [ 5.365] X Protocol Version 11, Revision 0
    [ 5.365] Build Operating System: Linux 3.8.7-1-ARCH x86_64
    [ 5.365] Current Operating System: Linux TGHE 3.8.10-1-ARCH #1 SMP PREEMPT Sat Apr 27 12:36:59 CEST 2013 x86_64
    [ 5.365] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=99d5896f-0144-4c5c-8c54-c11229ef01eb ro quiet
    [ 5.365] Build Date: 17 April 2013 02:37:06PM
    [ 5.365]
    [ 5.365] Current version of pixman: 0.28.2
    [ 5.365] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 5.365] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 5.365] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Apr 28 21:34:03 2013
    [ 5.367] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 5.368] (==) No Layout section. Using the first Screen section.
    [ 5.368] (==) No screen section available. Using defaults.
    [ 5.368] (**) |-->Screen "Default Screen Section" (0)
    [ 5.368] (**) | |-->Monitor "<default monitor>"
    [ 5.368] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 5.368] (==) Automatically adding devices
    [ 5.368] (==) Automatically enabling devices
    [ 5.368] (==) Automatically adding GPU devices
    [ 5.369] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 5.369] Entry deleted from font path.
    [ 5.370] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 5.371] Entry deleted from font path.
    [ 5.371] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 5.371] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 5.371] Entry deleted from font path.
    [ 5.371] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 5.371] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 5.371] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 5.371] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 5.371] (II) Loader magic: 0x7fcc20
    [ 5.371] (II) Module ABI versions:
    [ 5.371] X.Org ANSI C Emulation: 0.4
    [ 5.371] X.Org Video Driver: 14.1
    [ 5.371] X.Org XInput driver : 19.1
    [ 5.371] X.Org Server Extension : 7.0
    [ 5.373] (--) PCI:*(0:1:0:0) 10de:0dcd:1028:04b7 rev 161, Mem @ 0xd4000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/524288
    [ 5.498] Initializing built-in extension Generic Event Extension
    [ 5.498] Initializing built-in extension SHAPE
    [ 5.498] Initializing built-in extension MIT-SHM
    [ 5.498] Initializing built-in extension XInputExtension
    [ 5.498] Initializing built-in extension XTEST
    [ 5.498] Initializing built-in extension BIG-REQUESTS
    [ 5.498] Initializing built-in extension SYNC
    [ 5.498] Initializing built-in extension XKEYBOARD
    [ 5.498] Initializing built-in extension XC-MISC
    [ 5.498] Initializing built-in extension SECURITY
    [ 5.498] Initializing built-in extension XINERAMA
    [ 5.498] Initializing built-in extension XFIXES
    [ 5.498] Initializing built-in extension RENDER
    [ 5.498] Initializing built-in extension RANDR
    [ 5.498] Initializing built-in extension COMPOSITE
    [ 5.498] Initializing built-in extension DAMAGE
    [ 5.498] Initializing built-in extension MIT-SCREEN-SAVER
    [ 5.498] Initializing built-in extension DOUBLE-BUFFER
    [ 5.498] Initializing built-in extension RECORD
    [ 5.498] Initializing built-in extension DPMS
    [ 5.498] Initializing built-in extension X-Resource
    [ 5.498] Initializing built-in extension XVideo
    [ 5.498] Initializing built-in extension XVideo-MotionCompensation
    [ 5.498] Initializing built-in extension XFree86-VidModeExtension
    [ 5.498] Initializing built-in extension XFree86-DGA
    [ 5.498] Initializing built-in extension XFree86-DRI
    [ 5.498] Initializing built-in extension DRI2
    [ 5.498] (II) LoadModule: "glx"
    [ 5.499] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 5.560] (II) Module glx: vendor="NVIDIA Corporation"
    [ 5.560] compiled for 4.0.2, module version = 1.0.0
    [ 5.560] Module class: X.Org Server Extension
    [ 5.560] (II) NVIDIA GLX Module 313.30 Wed Mar 27 15:51:21 PDT 2013
    [ 5.560] Loading extension GLX
    [ 5.560] (==) Matched nouveau as autoconfigured driver 0
    [ 5.560] (==) Matched nvidia as autoconfigured driver 1
    [ 5.560] (==) Matched nv as autoconfigured driver 2
    [ 5.560] (==) Matched vesa as autoconfigured driver 3
    [ 5.560] (==) Matched modesetting as autoconfigured driver 4
    [ 5.560] (==) Matched fbdev as autoconfigured driver 5
    [ 5.560] (==) Assigned the driver to the xf86ConfigLayout
    [ 5.560] (II) LoadModule: "nouveau"
    [ 5.562] (WW) Warning, couldn't open module nouveau
    [ 5.562] (II) UnloadModule: "nouveau"
    [ 5.562] (II) Unloading nouveau
    [ 5.562] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 5.562] (II) LoadModule: "nvidia"
    [ 5.563] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 5.569] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 5.569] compiled for 4.0.2, module version = 1.0.0
    [ 5.569] Module class: X.Org Video Driver
    [ 5.570] (II) LoadModule: "nv"
    [ 5.571] (WW) Warning, couldn't open module nv
    [ 5.571] (II) UnloadModule: "nv"
    [ 5.571] (II) Unloading nv
    [ 5.571] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 5.571] (II) LoadModule: "vesa"
    [ 5.571] (WW) Warning, couldn't open module vesa
    [ 5.571] (II) UnloadModule: "vesa"
    [ 5.571] (II) Unloading vesa
    [ 5.571] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 5.571] (II) LoadModule: "modesetting"
    [ 5.571] (WW) Warning, couldn't open module modesetting
    [ 5.571] (II) UnloadModule: "modesetting"
    [ 5.571] (II) Unloading modesetting
    [ 5.571] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 5.571] (II) LoadModule: "fbdev"
    [ 5.571] (WW) Warning, couldn't open module fbdev
    [ 5.571] (II) UnloadModule: "fbdev"
    [ 5.571] (II) Unloading fbdev
    [ 5.571] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 5.571] (II) NVIDIA dlloader X Driver 313.30 Wed Mar 27 15:33:21 PDT 2013
    [ 5.571] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 5.572] (++) using VT number 7
    [ 5.596] (II) Loading sub module "wfb"
    [ 5.596] (II) LoadModule: "wfb"
    [ 5.596] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 5.597] (II) Module wfb: vendor="X.Org Foundation"
    [ 5.597] compiled for 1.14.1, module version = 1.0.0
    [ 5.597] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 5.597] (II) Loading sub module "ramdac"
    [ 5.597] (II) LoadModule: "ramdac"
    [ 5.597] (II) Module "ramdac" already built-in
    [ 5.598] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 5.598] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 5.598] (==) NVIDIA(0): RGB weight 888
    [ 5.598] (==) NVIDIA(0): Default visual is TrueColor
    [ 5.598] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 5.599] (**) NVIDIA(0): Enabling 2D acceleration
    [ 6.276] (WW) NVIDIA(GPU-0): Unable to read EDID for display device DFP-2
    [ 6.283] (II) NVIDIA(0): NVIDIA GPU GeForce GT 555M (GF106) at PCI:1:0:0 (GPU-0)
    [ 6.283] (--) NVIDIA(0): Memory: 3145728 kBytes
    [ 6.283] (--) NVIDIA(0): VideoBIOS: 70.06.32.00.03
    [ 6.283] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 6.521] (--) NVIDIA(0): Valid display device(s) on GeForce GT 555M at PCI:1:0:0
    [ 6.521] (--) NVIDIA(0): DFP-0
    [ 6.521] (--) NVIDIA(0): DFP-1
    [ 6.521] (--) NVIDIA(0): LGD (DFP-2) (connected)
    [ 6.521] (--) NVIDIA(0): DFP-3
    [ 6.521] (--) NVIDIA(0): DFP-0: 165.0 MHz maximum pixel clock
    [ 6.521] (--) NVIDIA(0): DFP-0: Internal Single Link TMDS
    [ 6.521] (--) NVIDIA(0): DFP-1: 165.0 MHz maximum pixel clock
    [ 6.521] (--) NVIDIA(0): DFP-1: Internal Single Link TMDS
    [ 6.521] (--) NVIDIA(0): LGD (DFP-2): 480.0 MHz maximum pixel clock
    [ 6.521] (--) NVIDIA(0): LGD (DFP-2): Internal DisplayPort
    [ 6.521] (--) NVIDIA(0): DFP-3: 480.0 MHz maximum pixel clock
    [ 6.521] (--) NVIDIA(0): DFP-3: Internal DisplayPort
    [ 6.521] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 6.521] (**) NVIDIA(0): device LGD (DFP-2) (Using EDID frequencies has been
    [ 6.521] (**) NVIDIA(0): enabled on all display devices.)
    [ 6.530] (==) NVIDIA(0):
    [ 6.530] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 6.530] (==) NVIDIA(0): will be used as the requested mode.
    [ 6.530] (==) NVIDIA(0):
    [ 6.530] (II) NVIDIA(0): Validated MetaModes:
    [ 6.530] (II) NVIDIA(0): "DFP-2:nvidia-auto-select"
    [ 6.530] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
    [ 6.534] (--) NVIDIA(0): DPI set to (128, 130); computed from "UseEdidDpi" X config
    [ 6.535] (--) NVIDIA(0): option
    [ 6.535] (--) Depth 24 pixmap format is 32 bpp
    [ 6.535] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 6.535] (II) NVIDIA: access.
    [ 6.637] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 6.637] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 6.637] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 6.637] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 6.637] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 6.637] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 6.637] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 6.637] (II) NVIDIA(0): Config Options in the README.
    [ 6.657] (II) NVIDIA(0): Setting mode "DFP-2:nvidia-auto-select"
    [ 6.747] Loading extension NV-GLX
    [ 6.788] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 6.788] (==) NVIDIA(0): Backing store disabled
    [ 6.788] (==) NVIDIA(0): Silken mouse enabled
    [ 6.789] (==) NVIDIA(0): DPMS enabled
    [ 6.789] Loading extension NV-CONTROL
    [ 6.789] Loading extension XINERAMA
    [ 6.789] (II) Loading sub module "dri2"
    [ 6.789] (II) LoadModule: "dri2"
    [ 6.789] (II) Module "dri2" already built-in
    [ 6.789] (II) NVIDIA(0): [DRI2] Setup complete
    [ 6.789] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 6.789] (--) RandR disabled
    [ 6.794] (II) Initializing extension GLX
    [ 6.891] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 6.891] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 6.891] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 6.891] (II) LoadModule: "evdev"
    [ 6.891] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 6.892] (II) Module evdev: vendor="X.Org Foundation"
    [ 6.892] compiled for 1.14.0, module version = 2.8.0
    [ 6.892] Module class: X.Org XInput Driver
    [ 6.892] ABI class: X.Org XInput driver, version 19.1
    [ 6.892] (II) Using input driver 'evdev' for 'Power Button'
    [ 6.892] (**) Power Button: always reports core events
    [ 6.892] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 6.892] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 6.892] (--) evdev: Power Button: Found keys
    [ 6.892] (II) evdev: Power Button: Configuring as keyboard
    [ 6.892] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
    [ 6.892] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 6.893] (**) Option "xkb_rules" "evdev"
    [ 6.893] (**) Option "xkb_model" "evdev"
    [ 6.893] (**) Option "xkb_layout" "gb"
    [ 6.936] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 6.936] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 6.936] (**) Video Bus: Applying InputClass "Keyboard Defaults"
    [ 6.936] (II) Using input driver 'evdev' for 'Video Bus'
    [ 6.936] (**) Video Bus: always reports core events
    [ 6.936] (**) evdev: Video Bus: Device: "/dev/input/event7"
    [ 6.936] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 6.936] (--) evdev: Video Bus: Found keys
    [ 6.936] (II) evdev: Video Bus: Configuring as keyboard
    [ 6.936] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2b/LNXVIDEO:00/input/input7/event7"
    [ 6.936] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 6.936] (**) Option "xkb_rules" "evdev"
    [ 6.936] (**) Option "xkb_model" "evdev"
    [ 6.936] (**) Option "xkb_layout" "gb"
    [ 6.937] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 6.937] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 6.937] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 6.937] (II) Using input driver 'evdev' for 'Power Button'
    [ 6.937] (**) Power Button: always reports core events
    [ 6.937] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 6.937] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 6.937] (--) evdev: Power Button: Found keys
    [ 6.937] (II) evdev: Power Button: Configuring as keyboard
    [ 6.937] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
    [ 6.937] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 6.937] (**) Option "xkb_rules" "evdev"
    [ 6.937] (**) Option "xkb_model" "evdev"
    [ 6.938] (**) Option "xkb_layout" "gb"
    [ 6.939] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 6.939] (II) No input driver specified, ignoring this device.
    [ 6.939] (II) This device may have been added with another device file.
    [ 6.939] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 6.939] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 6.939] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
    [ 6.939] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 6.939] (**) Sleep Button: always reports core events
    [ 6.939] (**) evdev: Sleep Button: Device: "/dev/input/event2"
    [ 6.939] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 6.939] (--) evdev: Sleep Button: Found keys
    [ 6.939] (II) evdev: Sleep Button: Configuring as keyboard
    [ 6.939] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
    [ 6.939] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 6.939] (**) Option "xkb_rules" "evdev"
    [ 6.939] (**) Option "xkb_model" "evdev"
    [ 6.939] (**) Option "xkb_layout" "gb"
    [ 6.941] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event14)
    [ 6.941] (II) No input driver specified, ignoring this device.
    [ 6.941] (II) This device may have been added with another device file.
    [ 6.941] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event15)
    [ 6.941] (II) No input driver specified, ignoring this device.
    [ 6.941] (II) This device may have been added with another device file.
    [ 6.942] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event16)
    [ 6.942] (II) No input driver specified, ignoring this device.
    [ 6.942] (II) This device may have been added with another device file.
    [ 6.942] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event17)
    [ 6.942] (II) No input driver specified, ignoring this device.
    [ 6.942] (II) This device may have been added with another device file.
    [ 6.943] (II) config/udev: Adding input device Laptop_Integrated_Webcam_2HDM (/dev/input/event6)
    [ 6.943] (**) Laptop_Integrated_Webcam_2HDM: Applying InputClass "evdev keyboard catchall"
    [ 6.943] (**) Laptop_Integrated_Webcam_2HDM: Applying InputClass "Keyboard Defaults"
    [ 6.943] (II) Using input driver 'evdev' for 'Laptop_Integrated_Webcam_2HDM'
    [ 6.943] (**) Laptop_Integrated_Webcam_2HDM: always reports core events
    [ 6.943] (**) evdev: Laptop_Integrated_Webcam_2HDM: Device: "/dev/input/event6"
    [ 6.943] (--) evdev: Laptop_Integrated_Webcam_2HDM: Vendor 0x408 Product 0x2fb1
    [ 6.943] (--) evdev: Laptop_Integrated_Webcam_2HDM: Found keys
    [ 6.943] (II) evdev: Laptop_Integrated_Webcam_2HDM: Configuring as keyboard
    [ 6.943] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb2/2-1/2-1.4/2-1.4:1.0/input/input6/event6"
    [ 6.943] (II) XINPUT: Adding extended input device "Laptop_Integrated_Webcam_2HDM" (type: KEYBOARD, id 10)
    [ 6.943] (**) Option "xkb_rules" "evdev"
    [ 6.943] (**) Option "xkb_model" "evdev"
    [ 6.943] (**) Option "xkb_layout" "gb"
    [ 6.944] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event10)
    [ 6.944] (II) No input driver specified, ignoring this device.
    [ 6.944] (II) This device may have been added with another device file.
    [ 6.945] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event11)
    [ 6.945] (II) No input driver specified, ignoring this device.
    [ 6.945] (II) This device may have been added with another device file.
    [ 6.945] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event12)
    [ 6.945] (II) No input driver specified, ignoring this device.
    [ 6.945] (II) This device may have been added with another device file.
    [ 6.946] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event13)
    [ 6.946] (II) No input driver specified, ignoring this device.
    [ 6.946] (II) This device may have been added with another device file.
    [ 6.946] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 6.946] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 6.946] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
    [ 6.946] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 6.946] (**) AT Translated Set 2 keyboard: always reports core events
    [ 6.946] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 6.946] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 6.946] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 6.946] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 6.946] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 6.946] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 6.946] (**) Option "xkb_rules" "evdev"
    [ 6.946] (**) Option "xkb_model" "evdev"
    [ 6.946] (**) Option "xkb_layout" "gb"
    [ 6.947] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event9)
    [ 6.947] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 6.947] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 6.947] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 6.947] (II) LoadModule: "synaptics"
    [ 6.947] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 6.948] (II) Module synaptics: vendor="X.Org Foundation"
    [ 6.948] compiled for 1.14.0, module version = 1.7.0
    [ 6.948] Module class: X.Org XInput Driver
    [ 6.948] ABI class: X.Org XInput driver, version 19.1
    [ 6.948] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 6.948] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 6.948] (**) Option "Device" "/dev/input/event9"
    [ 6.967] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 6.967] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5398 (res 42)
    [ 6.967] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4728 (res 70)
    [ 6.967] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 6.967] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 6.967] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 6.967] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 6.967] (**) Option "VertEdgeScroll" "on"
    [ 6.967] (**) Option "TapButton1" "1"
    [ 6.967] (**) Option "TapButton2" "2"
    [ 6.967] (**) Option "TapButton3" "3"
    [ 6.967] (**) Option "CoastingSpeed" "0"
    [ 6.967] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 6.967] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 6.986] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input9/event9"
    [ 6.997] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 6.997] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 6.997] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 6.997] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.039
    [ 6.997] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 6.998] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 6.998] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 6.998] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 6.998] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 6.998] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 6.998] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 6.999] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 6.999] (II) No input driver specified, ignoring this device.
    [ 6.999] (II) This device may have been added with another device file.
    [ 7.000] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event8)
    [ 7.000] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 7.000] (**) Dell WMI hotkeys: Applying InputClass "Keyboard Defaults"
    [ 7.000] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
    [ 7.000] (**) Dell WMI hotkeys: always reports core events
    [ 7.000] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event8"
    [ 7.000] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
    [ 7.000] (--) evdev: Dell WMI hotkeys: Found keys
    [ 7.000] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
    [ 7.000] (**) Option "config_info" "udev:/sys/devices/virtual/input/input8/event8"
    [ 7.000] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 13)
    [ 7.000] (**) Option "xkb_rules" "evdev"
    [ 7.000] (**) Option "xkb_model" "evdev"
    [ 7.000] (**) Option "xkb_layout" "gb"
    [ 24.896] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 24.896] (**) NVIDIA(0): device LGD (DFP-2) (Using EDID frequencies has been
    [ 24.896] (**) NVIDIA(0): enabled on all display devices.)
    And my 50-synaptics.conf file (ignore the do not edit this file warning, it's been copied and pasted into the /etc/X11/xorg.conf.d/ directory):
    # Example xorg.conf.d snippet that assigns the touchpad driver
    # to all touchpads. See xorg.conf.d(5) for more information on
    # InputClass.
    # DO NOT EDIT THIS FILE, your distribution will likely overwrite
    # it when updating. Copy (and rename) this file into
    # /etc/X11/xorg.conf.d first.
    # Additional options may be added in the form of
    # Option "OptionName" "value"
    Section "InputClass"
    Identifier "touchpad catchall"
    Driver "synaptics"
    MatchIsTouchpad "on"
    Option "TapButton1" "1"
    Option "TapButton2" "2"
    Option "TapButton3" "3"
    Option "VertEdgeScroll" "on"
    Option "CoastingSpeed" "0"
    # This option is recommend on all Linux systems using evdev, but cannot be
    # enabled by default. See the following link for details:
    # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
    MatchDevicePath "/dev/input/event*"
    EndSection
    Section "InputClass"
    Identifier "touchpad ignore duplicates"
    MatchIsTouchpad "on"
    MatchOS "Linux"
    MatchDevicePath "/dev/input/mouse*"
    Option "Ignore" "on"
    EndSection
    # This option enables the bottom right corner to be a right button on
    # non-synaptics clickpads.
    # This option is only interpreted by clickpads.
    Section "InputClass"
    Identifier "Default clickpad buttons"
    MatchDriver "synaptics"
    Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
    # To disable the bottom edge area so the buttons only work as buttons,
    # not for movement, set the AreaBottomEdge
    # Option "AreaBottomEdge" "82%"
    EndSection
    # This option disables software buttons on Apple touchpads.
    # This option is only interpreted by clickpads.
    Section "InputClass"
    Identifier "Disable clickpad buttons on Apple touchpads"
    MatchProduct "Apple|bcm5974"
    MatchDriver "synaptics"
    Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
    EndSection
    Thanks in advance

    Hello kal33,
    Welcome to the HP Forums!
    I understand the left part of the clickpad is not working. To assist you, please try all of the steps in this HP document: Using and Troubleshooting the TouchPad or ClickPad (Windows 8)
    If these steps do not help, then there could be a hardware issue. Since the computer is in warranty, I would contact HP phone support for hardware assistance. You can utilize this website to learn how to contact HP appropriately, based on your region: Contact HP Worldwide
    Please let me know if you have any other questions or concerns. Thanks for bringing this issue to the HP Forums. Have a great day!
    Mario
    I worked on behalf of HP.

Maybe you are looking for

  • Sy-tabix

    one can set the value of sy-tabix dynamically(in a program) or not?

  • Haswell MBPR buggy volume control

    It's two days old haswell mbpr. Whenever i change the volume with keyboard, the system become laggy and buggy and momentarily freezes. why is that? should i just go exchange??? i have nothing installed but office 2011.

  • Nothing in iWork 08 works for me!

    Everything I try to use in iwork 08 hides my text and you can only see when you drag your mouse over it and it highlights purple I have tried to uninstall and redownload the disc but no change.help!!!

  • Variable of copied Query changes the original  Query - variable

    Team: I have a Query "A". Then, I made a copy "B". Both Queries are the same definition, including the variables. In the Query A, there is a variable "ZWWW" that checks the date entered by the user. In the user exit I_step = 3, we check for the valid

  • Web.show_document - mailto

    Hi, I am using this command to send e-mail within Forms. web.show_document('mailto:[email protected]&subject=test&body=Hello','blank'); This command opens an outlook window message and the user have to press send to send the e-mail. Is it possible, u