Messages - shmuel1 [ switch to compact view ]

Pages: prev1 2 3 [4] 5 6 7 8 9 10next
16
Post New Requests Here / Re: Power Cord Falling Out
« on: November 06, 2014, 04:50 AM »
I was having the same problem with my laptop so I wrote this small script. I attached the script here as an .exe. Let me know if you need changes.

Code: AutoIt [Select]
  1. #include <WinAPISys.au3>
  2. Dim $return
  3.  
  4. While 1 ; infinite loop
  5.    $return = _WinAPI_GetSystemPowerStatus()
  6.    If $return[0] = 0 Then ; the first value in the returned array is 0 if the laptop is not plugged in
  7.           ToolTip(@CRLF & @CRLF & @CRLF & @CRLF & @CRLF & "     Power cable unplugged!     " & @CRLF & @CRLF & @CRLF & @CRLF & @CRLF & " ", @DesktopWidth/2 - 75, @DesktopHeight/5)
  8.    Else
  9.           ToolTip("") ; close ToolTip
  10.    EndIf
  11.    Sleep(1000)

17
Post New Requests Here / Re: Remember where I got the Download
« on: July 22, 2013, 11:24 AM »
I made a simple program for you. Let me know if you need any help with it or modifications. Attached is the program and the AutoIt source code (in the ZIP file).


19
Skrommel's Software / AutoClip Problem
« on: July 07, 2013, 09:41 AM »
I can't get AutoClip to automatically replace the text with my clip. It replaces the text with a space. When I click on the item in the menu, it inserts the clip, but it does not work with auto-replace.

Any ideas?

I'm running Windows 7 SP1, 64-bits.

20
Post New Requests Here / Re: IDEA: Generic savĂ­ng reminder
« on: September 05, 2012, 02:23 AM »
For these options I need to know the window class:
- show the total amount of currently opened ATH_Notes in the message
- experimental option: closing the message box will automatically
  send ctrl-S to all opened ATH_Note windows.

Pages: prev1 2 3 [4] 5 6 7 8 9 10next
Go to full version