ACPI button/lid problem

Hello all,
I have been running Arch on this laptop for quite some time now. Recently though I had to do a reinstall of it because I messed it up while trying to do something. Anyway, I got everything working except for the lid problem, i have the age old when I close it, it freezes. I have installed ACPI and it recognizes the Lid event, however it is still frozen I checked the /var/log/messages.log and this is what showed up:
Jun 19 11:33:12 UsbArch logger: ACPI group/action undefined: video / VID1
Jun 19 11:33:12 UsbArch logger: ACPI group/action undefined: video / VID
All I can tell is that it doesnt recognize the laptop screen or something. On the last install acpi worked like a charm, I dont know why it is not working now. Any help would be much appreciated. Thank you, Levi.

I bet it does not freeze.
Test it, follow these steps exactly as they are written:
Start xwindows
open a terminal
close the lid
open the lid
wait for a second
then type this
xset dpms force on
then press enter
Your monitor should come back on.
If this works you will need to edit your /etc/acpi/actions/lm_lid.sh file
also make sure that you install laptop_mode and acpid
here is the content of my lm_lid.sh
#!/bin/sh
test -f /usr/sbin/laptop_mode || exit 0
#lid button pressed/released event handler
#From: http://gentoo-wiki.com/HOWTO_Automatically_turn_off_your_monitor
if grep -q open /proc/acpi/button/lid/LID/state
then
XAUTHORITY="$( ps -C xinit f|sed 's/.*-auth \(.*\)serverauth.*/\1Xauthority/p' )" /usr/bin/xset -display :0.0 dpms force on
/usr/sbin/laptop_mode auto
/usr/bin logger dpms force on
else
XAUTHORITY="$( ps -C xinit f| sed -n 's/.*-auth \(.*\)serverauth.*/\1Xauthority/p' )" /usr/bin/xset -display :0.0 dpms force off
/usr/bin logger dpms force off
fi
Last edited by timetrap (2008-06-20 20:20:51)

Similar Messages

  • Cannot resume from suspend when done with acpi (close lid)

    This is my /etc/acpi/handler.sh
    #!/bin/sh
    # Default acpi script that takes an entry for all actions
    # NOTE: This is a 2.6-centric script. If you use 2.4.x, you'll have to
    # modify it to not use /sys
    minspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq`
    maxspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq`
    setspeed="/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
    set $*
    case "$1" in
    button/power)
    #echo "PowerButton pressed!">/dev/tty5
    case "$2" in
    PWRF) logger "PowerButton pressed: $2" ;;
    *) logger "ACPI action undefined: $2" ;;
    esac
    button/sleep)
    case "$2" in
    SLPB) echo -n mem >/sys/power/state ;;
    *) logger "ACPI action undefined: $2" ;;
    esac
    ac_adapter)
    case "$2" in
    AC)
    case "$4" in
    00000000)
    echo -n $minspeed >$setspeed
    #/etc/laptop-mode/laptop-mode start
    00000001)
    echo -n $maxspeed >$setspeed
    #/etc/laptop-mode/laptop-mode stop
    esac
    *) logger "ACPI action undefined: $2" ;;
    esac
    battery)
    case "$2" in
    BAT0)
    case "$4" in
    00000000) #echo "offline" >/dev/tty5
    00000001) #echo "online" >/dev/tty5
    esac
    CPU0)
    *) logger "ACPI action undefined: $2" ;;
    esac
    button/lid)
    #echo "LID switched!">/dev/tty5
    /usr/sbin/pm-suspend
    logger "ACPI group/action undefined: $1 / $2"
    esac
    The only thing I added was the /usr/sbin/pm-suspend.
    When I run /usr/sbin/pm-suspend from a terminal, the suspend works fine, but when I try to use the close lid suspend I have trouble resuming. When I open the lid, the laptop starts making noises and lights up (as if it were to resume), but after a while it goes and suspends again.
    Pushing the power button to try to resume (this is how I successfully resumed from the commandline suspend) causes the same behavior to happen, so I ended up just holding down the power button and rebooting.
    I tried commenting the /usr/sbin/pm-suspend, and uncommented the default echo line. This caused "LID switched!" to be displayed 3 times on /dev/tty5; each one on the next line further to the right. I'm not sure if that is supposed to be normal behaviour.

    Hi, sorry my fault. I should have been more specific. Here my full handler.sh
    #!/bin/sh
    # Default acpi script that takes an entry for all actions
    # NOTE: This is a 2.6-centric script. If you use 2.4.x, you'll have to
    # modify it to not use /sys
    minspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq`
    maxspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq`
    setspeed="/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
    set $*
    case "$1" in
    button/power)
    #echo "PowerButton pressed!">/dev/tty5
    case "$2" in
    PWRF) logger "PowerButton pressed: $2"
    /usr/sbin/pm-suspend ;;
    *) logger "ACPI action undefined: $2" ;;
    esac
    button/sleep)
    case "$2" in
    SLPB) logger "SleepButton pressed: $2"
    /usr/sbin/pm-suspend ;;
    *) logger "ACPI action undefined: $2" ;;
    esac
    ac_adapter)
    case "$2" in
    AC)
    case "$4" in
    00000000)
    echo -n $minspeed >$setspeed
    #/etc/laptop-mode/laptop-mode start
    00000001)
    echo -n $maxspeed >$setspeed
    #/etc/laptop-mode/laptop-mode stop
    esac
    *) logger "ACPI action undefined: $2" ;;
    esac
    battery)
    case "$2" in
    BAT0)
    case "$4" in
    00000000) #echo "offline" >/dev/tty5
    00000001) #echo "online" >/dev/tty5
    esac
    CPU0)
    *) logger "ACPI action undefined: $2" ;;
    esac
    button/lid)
    #echo "LID switched!">/dev/tty5
    logger "ACPI lid switched $1 $2"
    if grep -q closed /proc/acpi/button/lid/LID0/state
    then
    logger "ACPI lid closed"
    /usr/sbin/pm-suspend
    else
    logger "ACPI lid opened"
    echo -n 2 > /proc/acpi/video/EGFX/LCD0/brightness
    fi
    logger "ACPI group/action undefined: $1 / $2"
    esac
    HTH.

  • Button/lid (no /proc/acpi/events?)

    I must be missing something obvious but it seem that when I close my laptop's lid, the button/lid section of handler.sh is not triggered. I have acpi running fine, it even seems that other events are successfully triggered (like ac_adapter), but not button/lid. Essentially I'm trying to run 'powersave -u' when I close the lid.
    Help please?

    Thanks for the reply. It seems like this might be part of a bigger problem though, because I don't seem to have a /proc/acpi/event. What I have in /proc/acpi are ac_adapter, battery, button, embedded_controller, fan, power_resource, processor, thermal_zone, and video.
    Also, when I start my computer, Arch says that the acpi daemon started successfully. But if I stop it (also successfully) and then try to start it again, it always fails with "acpid: can't open /proc/acpi/event: Device or resource busy".
    Here's some sample output from /var/log/acpid which doesn't seem to be very useful. The exiting lines are probably me manually stopping acpid, although it never starts up again unless I reboot..
    [Fri Feb 17 10:59:02 2006] starting up
    [Fri Feb 17 10:59:02 2006] 2 rules loaded
    [Fri Feb 17 10:59:07 2006] client connected from 2788[82:82]
    [Fri Feb 17 10:59:07 2006] 1 client rule loaded
    [Fri Feb 17 10:59:39 2006] exiting
    [Fri Feb 17 11:01:34 2006] starting up
    [Fri Feb 17 11:01:34 2006] 2 rules loaded
    [Fri Feb 17 11:01:39 2006] client connected from 2729[82:82]
    [Fri Feb 17 11:01:39 2006] 1 client rule loaded
    [Fri Feb 17 11:02:12 2006] received event "thermal_zone C176 00000081 00000000"
    [Fri Feb 17 11:02:12 2006] notifying client 2729[82:82]
    [Fri Feb 17 11:02:12 2006] executing action "/etc/acpi/handler.sh thermal_zone C176 00000081 00000000"
    [Fri Feb 17 11:02:12 2006] BEGIN HANDLER MESSAGES
    cat: /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq: No such file or directory
    cat: /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq: No such file or directory
    [Fri Feb 17 11:02:12 2006] END HANDLER MESSAGES
    [Fri Feb 17 11:02:12 2006] action exited with status 0
    [Fri Feb 17 11:02:12 2006] executing action "/etc/acpi/handler.sh thermal_zone C176 00000081 00000000"
    [Fri Feb 17 11:02:12 2006] BEGIN HANDLER MESSAGES
    cat: /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq: No such file or directory
    cat: /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq: No such file or directory
    [Fri Feb 17 11:02:12 2006] END HANDLER MESSAGES
    [Fri Feb 17 11:02:12 2006] action exited with status 0
    [Fri Feb 17 11:02:12 2006] completed event "thermal_zone C176 00000081 00000000"
    [Fri Feb 17 11:08:30 2006] exiting
    Now I'm really confused.

  • /proc/acpi/button does not exist.

    /proc/acpi/button does not exist. Any ideas?
    or, anyone knows which module is the owner of /proc/acpi/button?
    Thanks!

    I am having the same problem, even with a stock kernel. There is no power button
    device and therefore acpi_listen does not detect putton press events. I am on a
    Thinkpad T420s, which used to work until a recent reinstall. Here are the
    outputs that were originally requested (most of them look quite similar to
    enicham's):
    % lsmod | grep evdev
    evdev 11784 27
    % ls /dev/input
    by-id event10 event14 event2 event6 mice
    by-path event11 event15 event3 event7 mouse0
    event0 event12 event16 event4 event8 mouse1
    event1 event13 event17 event5 event9 mouse2
    % cat /proc/bus/input/devices
    I: Bus=0011 Vendor=0001 Product=0001 Version=ab54
    N: Name="AT Translated Set 2 keyboard"
    P: Phys=isa0060/serio0/input0
    S: Sysfs=/devices/platform/i8042/serio0/input/input0
    U: Uniq=
    H: Handlers=sysrq kbd event0
    B: PROP=0
    B: EV=120013
    B: KEY=402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe
    B: MSC=10
    B: LED=7
    I: Bus=0003 Vendor=046d Product=c52b Version=0111
    N: Name="Logitech Unifying Device. Wireless PID:101b"
    P: Phys=usb-0000:00:1a.0-1.2:1
    S: Sysfs=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input2
    U: Uniq=
    H: Handlers=mouse0 event1
    B: PROP=0
    B: EV=17
    B: KEY=ffff0000 0 0 0 0
    B: REL=143
    B: MSC=10
    I: Bus=0003 Vendor=046d Product=c52b Version=0111
    N: Name="Logitech Unifying Device. Wireless PID:4002"
    P: Phys=usb-0000:00:1a.0-1.2:2
    S: Sysfs=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.2:1.2/0003:046D:C52B.0003/0003:046D:C52B.0005/input/input3
    U: Uniq=
    H: Handlers=sysrq kbd event2
    B: PROP=0
    B: EV=12001f
    B: KEY=837fff072ff32d bf54444600000000 1 30f948b17c007 ffff73fad941dfff febeffdfffefffff fffffffffffffffe
    B: REL=40
    B: ABS=100000000
    B: MSC=10
    B: LED=1f
    I: Bus=0019 Vendor=0000 Product=0005 Version=0000
    N: Name="Lid Switch"
    P: Phys=PNP0C0D/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input4
    U: Uniq=
    H: Handlers=event3
    B: PROP=0
    B: EV=21
    B: SW=1
    I: Bus=0019 Vendor=0000 Product=0003 Version=0000
    N: Name="Sleep Button"
    P: Phys=PNP0C0E/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5
    U: Uniq=
    H: Handlers=kbd event4
    B: PROP=0
    B: EV=3
    B: KEY=4000 0 0
    I: Bus=0019 Vendor=0000 Product=0001 Version=0000
    N: Name="Power Button"
    P: Phys=LNXPWRBN/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
    U: Uniq=
    H: Handlers=kbd event5
    B: PROP=0
    B: EV=3
    B: KEY=10000000000000 0
    I: Bus=0019 Vendor=0000 Product=0006 Version=0000
    N: Name="Video Bus"
    P: Phys=LNXVIDEO/video/input0
    S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input7
    U: Uniq=
    H: Handlers=kbd event6
    B: PROP=0
    B: EV=3
    B: KEY=3e000b00000000 0 0 0
    I: Bus=0019 Vendor=17aa Product=5054 Version=4101
    N: Name="ThinkPad Extra Buttons"
    P: Phys=thinkpad_acpi/input0
    S: Sysfs=/devices/platform/thinkpad_acpi/input/input8
    U: Uniq=
    H: Handlers=kbd rfkill event7
    B: PROP=0
    B: EV=33
    B: KEY=18040000 0 10000000000000 0 1501b00102004 c000000001104000 e000000000000 0
    B: MSC=10
    B: SW=8
    I: Bus=0003 Vendor=04f2 Product=b221 Version=0752
    N: Name="Integrated Camera"
    P: Phys=usb-0000:00:1a.0-1.6/button
    S: Sysfs=/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input9
    U: Uniq=
    H: Handlers=kbd event8
    B: PROP=0
    B: EV=3
    B: KEY=100000 0 0 0
    I: Bus=0010 Vendor=001f Product=0001 Version=0100
    N: Name="PC Speaker"
    P: Phys=isa0061/input0
    S: Sysfs=/devices/platform/pcspkr/input/input10
    U: Uniq=
    H: Handlers=kbd event9
    B: PROP=0
    B: EV=40001
    B: SND=6
    I: Bus=0001 Vendor=14f1 Product=506e Version=0001
    N: Name="HDA Digital PCBeep"
    P: Phys=card0/codec#0/beep0
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/input/input12
    U: Uniq=
    H: Handlers=kbd event10
    B: PROP=0
    B: EV=40001
    B: SND=6
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA Intel PCH Headphone"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input14
    U: Uniq=
    H: Handlers=event11
    B: PROP=0
    B: EV=21
    B: SW=4
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA Intel PCH Mic"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input13
    U: Uniq=
    H: Handlers=event12
    B: PROP=0
    B: EV=21
    B: SW=10
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA NVidia HDMI/DP,pcm=8"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
    U: Uniq=
    H: Handlers=event13
    B: PROP=0
    B: EV=21
    B: SW=140
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA NVidia HDMI/DP,pcm=7"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
    U: Uniq=
    H: Handlers=event14
    B: PROP=0
    B: EV=21
    B: SW=140
    I: Bus=0000 Vendor=0000 Product=0000 Version=0000
    N: Name="HDA NVidia HDMI/DP,pcm=3"
    P: Phys=ALSA
    S: Sysfs=/devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
    U: Uniq=
    H: Handlers=event15
    B: PROP=0
    B: EV=21
    B: SW=140
    I: Bus=0011 Vendor=0002 Product=0007 Version=01b1
    N: Name="SynPS/2 Synaptics TouchPad"
    P: Phys=isa0060/serio1/input0
    S: Sysfs=/devices/platform/i8042/serio1/input/input11
    U: Uniq=
    H: Handlers=mouse1 event16
    B: PROP=9
    B: EV=b
    B: KEY=6420 30000 0 0 0 0
    B: ABS=260800011000003
    I: Bus=0011 Vendor=0002 Product=000a Version=0000
    N: Name="TPPS/2 IBM TrackPoint"
    P: Phys=synaptics-pt/serio0/input0
    S: Sysfs=/devices/platform/i8042/serio1/serio2/input/input18
    U: Uniq=
    H: Handlers=mouse2 event17
    B: PROP=0
    B: EV=7
    B: KEY=70000 0 0 0 0
    B: REL=3
    % pacman -Qi linux
    Name : linux
    Version : 3.14.5-1
    Description : The Linux kernel and modules
    Architecture : x86_64
    URL : http://www.kernel.org/
    Licenses : GPL2
    Groups : base
    Provides : kernel26=3.14.5
    Depends On : coreutils linux-firmware kmod
    mkinitcpio>=0.7
    Optional Deps : crda: to set the correct wireless channels
    of your country
    Required By : nvidia
    Optional For : None
    Conflicts With : kernel26
    Replaces : kernel26
    Installed Size : 71950.00 KiB
    Packager : Tobias Powalowski <[email protected]>
    Build Date : Sun 01 Jun 2014 01:40:01 AM EDT
    Install Date : Sat 07 Jun 2014 02:21:14 PM EDT
    Install Reason : Explicitly installed
    Install Script : Yes
    Validated By : Signature
    % journalctl | grep dev/input
    Jun 07 19:14:16 unmensch systemd-logind[286]: Watching system buttons on /dev/input/event6 (Power Button)
    Jun 07 19:14:16 unmensch systemd-logind[286]: Watching system buttons on /dev/input/event3 (Video Bus)
    Jun 07 19:14:16 unmensch systemd-logind[286]: Watching system buttons on /dev/input/event4 (Lid Switch)
    Jun 07 19:14:16 unmensch systemd-logind[286]: Watching system buttons on /dev/input/event5 (Sleep Button)
    Jun 07 19:14:16 unmensch systemd-logind[286]: Watching system buttons on /dev/input/event7 (ThinkPad Extra Buttons)

  • IOS 6.1.3 WIFI button disable problem on iPhone4S - It is definitely a BUG

    Hi Apple Fans
    I have a full house of Apple products from iPhone -> iPAD -> iPod -> Mac -> AirPort, and I am suffering from WIFI button disable problem after upgrade to iOS 6.1.3, without any clue after calling Apple Support, factory reset and reload iPhone for more than 10 times.  I also try all tips on Apple Support Communicties except put it into a freezer, still no any luck.  Apple Support suggests that my iPhone may be factly!
    Tonight, I can get my WIFI back in below sequence:
    1. Switch to English language from Chinese
    2. Turn Cellular Data Option to off
    3. Reset Network Setting
    After the phone reset, the WIFI row show 'Not Connected', and I can select my home WIFI (Airport Express) without trouble.  To prove my finding is workable to all case, can you try the same and update here if it works for you?
    Good Luck!
    PS: I always believe it is a BUG.

    Hi,
    I sympathise with you as my iPhone 4s is 7 months old and is also greyed out.  I tried everthing except the potentially stupid one of putting the iphone in a freezer!  I took the phone back to the vendor who sent it away and repaired it.  But alas after a month it is greyed out again.  I have again returned to the vendor and he will repair it again.  I asked him how and he told me it is a software conflict and he has to spend around 9 hours downloading a patch repair.  Apple are aware of this issue and I feel completely let down because they have not posted a fix on the net.  Presently I am living and working in Dubai, back in the UK I am sure my iPhone would have been exchanged for a new one.  I need my iPhone for my work and cannot afford to just buy a new one so I have been let down and despite for years being a supporter of Apple and their products I shall think twice before investing in any more Apple products.

  • Standard button image problem

    Hi,
    I've got a problem when I try to set Image to the button from standard components.. I can set it up, but than I didn't see the image in the browser.
    With the button from basic components there is everything working fine, unfortunately I need that component from standard.. any advice?
    thx.

    Hi,
    I've got a problem when I try to set Image to the button from standard
    components.. I can set it up, but than I didn't see the image in the browser.
    With the button from basic components there is everything working fine,
    unfortunately I need that component from standard.. any advice?
    thx.Standard button has problems with images due to a JSF issue. To work around the issue, remove leading / from the buttons image property and re-deploy. This should cause the standard button image to display correctly.
    Hope it helps,
    Lark

  • Facing duplicate button press problem.

    Hi,
    I am a beginner to JSF technology. I am working on a project that uses JSF 1.1 specification. I am facing "*duplicate button press problem*". Most of the links and submit buttons do not respond. With a lot of search I found that this problem was fixed in JSF 1.2.
    I want to know whether upgrading to JSF 1.2 will work or not ? Also will it require code changes in existing code or simply upgrade will do?
    - Sax

    I'm not sure why you are focused on 1.1 vs 1.2 on this issue. For both versions you need the POST-REDIRECT-GET pattern, facilitated by the <redirect/> directive in the navigation rules.

  • TS3274 If my iPad home button got problem?

    If my iPad home button have problem but my iPad still under warranty can i use the warranty to take service for my iPad?

    Yes the home button problem would be covered by the warranty as long as you didn't do something accidentally to cause the home button to fail. If it is a hardware failure - it will be covered under the warranty.
    Is the home button no longer working? Have you tried to calibrate the home button?
    Calibrate the home button
    1. Open a stock iOS app, such as Contacts
    2. Press & hold the sleep/wake button at the top of your device until the red slider control appears.
    3. Immediately release the sleep/wake button and press & hold the home button. Hold until the red slider disappears.

  • IPhone 5 on off button having problem

    my iPhone 5 on off button having problem which sometimes i have to press several times, and sometimes i have to press it hard. Did anyone having the same problem here? beacause i just use for 5 months

    Take a Visit to an Apple Store or AASP (Authorized Apple Service Provider) and have the Device evaluated...
    Be sure to make an appointment first...

  • Acpi HP6710b lid close bug

    Common problem with HP6710b is to froze on lid close.
    I found on arch wiki solution for this crap....
    echo "1" >  /proc/acpi/video/C098/DOS
    I need to place this command on startup.... but where?
    During run rc.local  /proc/acpi/video/C098/DOS does not exists

    Would surprise me. Does it work when your computer is up and running? Replacing the C098 by an asterisk should do the job too I think, since that value can differ between models. Even better is replacing that value by the one your system uses .

  • Dv9000 lid problem (but not the one you're thinking of)

    I've encountered a problem with my dv9000 lid that as far as I can tell is pretty unique. (My unit has already experienced the left hinge cracking problem, but it was repaired earlier this year.)
    Two nights ago, I closed the lid of my computer after normal use.  When I returned to the unit a short while later, I found that pressing the lid latch release button only released the left latch!  Furthermore, the button did not provide any resistance until pushed to peak displacement.  After a few minutes of repeatedly pressing the button in vain, the left latch stopped releasing as well.
    Thankfully, I was eventually able to get the lid open again using paperclips to push back the spring-loaded mechanims holding the latches in place.  My current workaround to let me close the lid is that I have surrounded both latches with duct tape so the mechanisms in the base don't hold the lid shut anymore.
    Clearly, this is not an ideal solution, so I was wondering if anyone else has encountered this issue, and if so, how have you resolved it.  Any other comments would be welcome as well.

    I had the same problem...my problem was actually a bent cable connecting the motherboard to the wireless switch on the front left bottom of the laptop.  Opened it up and replaced the bent white maybe 6" flat cable and the lid opens and closes just fine now.

  • Screen goes blank with slightest movement of the lid; problem related to hidden sensor

    I posted this in the display section but got no answer. Because it's hardware related, I am giving it a try here;
    The problem occurs in the following 3 ways:
    - Vista: when the lid is moved back and forth a *little* bit, the screen goes blank/black; restore is possible by first closing lid, waiting a few seconds till the lid light dims; then quickly bringing the lid back in position and press any button brings it back to life
    - Windows 7: almost identical, exept no button press is needed; this could be a settingin power scheme, I didn't check because it's not so relevant
    - Linux: same but no way to bring it back to life again; reboot system is only possibility
    This means the magnetic sensor in the bezel that deactivates the system when the lid is closed is still working, but I don't understand why the screen becomes black when it is slightly moved back/forth ? I have read about  some sensor hidden behind the hinge depending on the model but very little info how to solve the problem
    Could someone explain what is happening and how to find the cause ?

    If only I could understand what's going on that would help me A LOT. I understand this is difficult, but there must be some HP expert who knows about this issue. Understanding the problem is the first step.
    What could be useful for me to know is where exactly is that sensor, how to locate it, how to test it, what is the module or part to replace it if needed etc.
    Here are the notebook and its specs:
    http://www.cnet.com/products/hp-pavilion-dv7-1299eb-17-core-2-duo-p8600-vista-home-premium-4-gb-ram-...

  • Simple button background problem

    Good day,
    I'm new to flex and MXML. I've gone through the initial difficulties of getting familiar with the IDE and programming language. Now that this is done, I'm really starting to enjoy it.
    I'm currently facing what is probably a basic problem. I've created an MXML Button component. When I instanciate it somewhere in another component, it comes up with a weird square background under my button, like this :
    My button is a single line component, like this :
    <s:Button label="Measure" skinClass="skins.MeasureDistanceSkin" width="70" height="25" click="OnClick(event);" creationComplete="Init(event);" />
    My button instanciation line looks like this :
    <MeasureButton map="{map}" left="110" top="42" width="80" height="33" id="MyButton" />
    Can anyone give me a hand with this?
    Thanks,
    Bruno

    You couldn't have made trillions of buttons that work using that code in AS3.  It would have to be something more like the following to work in AS3...
    stop();
    btn_page2.addEventListener(MouseEvent.CLICK, gotoPage2);
    function gotoPage2(e:MouseEvent):void {
         gotoAndPlay(99);
    Switched places in the btn_page2 line and changed Void (AS2) to void (AS3)

  • 10.5.2 wake/sleep and closed-lid problems

    As of 10.5.2 my MBP no longer works correctly in closed lid mode using a hardware
    setup that previously worked flawlessly. After plugging in power and video, plugging
    in the USB keyboard seems to wake the system, but no video. I then must open the
    lid, unplug the USB and video and try to get the system to respond. I often must cycle
    the power to reset the system--very disturbing to do that.
    Also as of 10.5.2, I have had to power-cycle the machine when it has refused to wake
    in open-lid mode and this weekend I the entire machine froze (no mouse movement,
    no expose, etc) in the middle of work using a graphics-intensive program and I had
    to reboot by cycling the power.
    A friend also reported similar issue in which the system would not respond after the
    screensaver became active.
    Are others seeing problems like these? I am beginning to suspect that the post-10.5.2
    graphics update has problems.

    I just wiped my HD and reinstalled everything besides the Graphics Update. I can now close the lid of my MBP and use my external monitor alone. The Graphics Update had made that impossible.
    Further, I am in the habit of putting my MCP to sleep and putting it in a backpack in the morning, meeting friends for breakfast, and re-awakening it at the office. When I did get to my office, I found (as another user had on another thread) that the MBP, even closed, had woken itself up and was hot as heck. I am uncertain that sleep will work properly under 10.5.2, but I know that the display wackiness of the Graphics Update was driving me nuts. I will not install it until Apple fixes it.
    I looked around for awhile for a way to uninstall the Graphics Update, but could not find it...I suspect it exists somewhere.
    The 10.5.2 Combo update (343MB download) DOES NOT include the Graphics Update, and at this time, I seem quite ok with everything else updated.

  • Not the end of the world, multi button mouse problem.

    Hi there, I have a Microsoft multi button mouse which works fine in Leopard. I have configured 2 of the buttons for Command+H (Hide), and Command+W (Close). The buttons work fine everywhere except one place, and that's System Preferences.
    I have added a custom configuration for System Prefs, but that doesn't seem to solve the problem either. It isn't the end of the world, but it would be nice if it did work.
    Thanks,
    Anil.

    Hi Topher,
    I am using the latest driver from Microsoft, and the mouse works fine everywhere else except System Prefs. I haven't tried USB Overdrive because the Microsoft driver has a very nice front end which makes configuring the mouse very easy.
    Thanks,
    Anil.

Maybe you are looking for