Jump to content

Eepi

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by Eepi

  1. I just found out that if you add an hotkey to open the program and press it when LockPC is open it will "close" it. The program is still running and I couldn't open it again nor could open Program manager. I had to shut it with Process Explorer. Is it possible to prevent that?
  2. Didn't find a way to edit my post.. I would also like to see an option to disable all sounds while locked. For example messenger. Not sure what UDF is. (Haven't been on the forums much.) But I found {MEDIA_NEXT} {MEDIA_PREV} {MEDIA_STOP} {MEDIA_PLAY_PAUSE} from another topic.
  3. Could you add an option to play/pause Winamp? It would be great if it would resume playing IF you had it playing when you opened LockPC. BUT if you had it on pause it wouldn't do anything. If thats even possible.
  4. Oh... Sorry.. I thought I checked all of the options.. Maybe I need to buy new glasses. Anyway, thank you very much for the help!
  5. Soo.. I would like to hide my Winamp button from taskbar because I use MMD3 skin ("minimized" to top of screen). The only program is that Winamp changes its name to show the music/video file its playing, for example: "1. Artist - Song name - Winamp". I tried to use CyberSlug's $window = WinGetHandle("Username's Buddy List Window") $newParent = WinGetHandle("Program Manager") DllCall("user32.dll", "hwnd", "SetParent", "hwnd", $window, "hwnd", $newParent) from Looking to hide taskbar Button(s) but it can't hide Winamp because of the name changing by songs.. Is there any other ways to hide the button from taskbar? Thanks in advance and sorry for bad spelling etc.!
  6. Hi, this is my first post and first ever made script. So, I was going to make a script that would press "1" to send chat message and "SPACE" to prevent going AFK in WoW while its minimized (on background) but I can't get it working. I got it first to click "1" but not "SPACE" and vice versa but can't get them working together. And I'm not sure how I can make the script work while minimized. So here is what I have atm: WinWaitActive("World of Warcraft") HotKeySet("{PAUSE}", "Start") HotKeySet("!{PAUSE}","Quit") TogglePause() func Start() HotKeySet("{PAUSE}") HotKeySet("{PAUSE}", "TogglePause") ToolTip('AutoClicking Started.',0,0) While 1 Send("{1}") Sleep(Random(250,1000)) Send("{SPACE}") Sleep(Random(12000,24000)) WEnd EndFunc Func TogglePause() ToolTip('AutoClicking Stopped.',0,0) HotKeySet("{PAUSE}") HotKeySet("{PAUSE}", "Start") While 1 sleep(100) WEnd EndFunc func Quit() Exit EndFunc So what should I do now to get it work on background and send "1" and "SPACE" into WoW? Thanks in advance!
×
×
  • Create New...