ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

IDEA: Volume buttons (and others) pressed on keyboard are displayed on screen

<< < (2/9) > >>

mrpd:
Yes as in the reply above me how can I position it lower on the screen and make it longer left to right I know that there is size=40 but that makes it bigger over all I just want to be able to have the size=40 but make it longer to fit from the left edge of the screen to the right. Also I have 3 buttons on my multimedia keyboard that don't work I tried looking on this site to see if there is some information but had no luck the keys are suspend, microsoft word button, and excel. Is there a way to map these somehow?

Your are the man! GreenOSD.ahk was just what I was looking for.

DesertEagle:
I know that there are programs that display volume up or down on screen but I am looking for one that would display the volume going up or down in green color with bars. Just free floating on the screen not in a box or background that also maybe could be user adjustable for the width and height , it kinda would look like this .....

Vol +  l l l l l l l l l l l l l l l l l l l l l l l l
-mrpd (July 19, 2006, 01:23 AM)
--- End quote ---

Audio Sliders (http://www.codesector.com/mixer.asp) can do exactly what you say, see screenshot: http://www.codesector.com/screenshots/osd.gif

You just need to check option "Popup when volume changes" in the OSD settings.

mrpd:
Hey Thanks DesertEagle that looks like a good program but i kinda like the GreenOSD.ahk that skrimmel made. So I ask again, how can I position greenOSD.ahk lower on the screen and make it longer left to right I know that there is size=40 but that makes it bigger over all I just want to be able to have the size=40 but make it longer to fit from the left edge of the screen to the right. Also I have 3 buttons on my multimedia keyboard that don't work I tried looking on this site to see if there is some information but had no luck the keys are suspend, microsoft word button, and excel. Is there a way to map these somehow?


Thanks

DesertEagle:
Also I have 3 buttons on my multimedia keyboard that don't work I tried looking on this site to see if there is some information but had no luck the keys are suspend, microsoft word button, and excel. Is there a way to map these somehow?
-mrpd (July 28, 2006, 02:54 AM)
--- End quote ---

These keys needs to be remapped with a special software, like JetStart Pro, again from http://www.codesector.com. Or search for the other remapping programs.

mrpd:
Hey I found another Volume OSD Script by a person called - Rajat but I can't find them in here it is a fairly good script but one problem I noticed is that when you press the volume up or down a ghost box appears in the middle of the screen can someone take a look at the code and see if there is a fix for this problem.

Thanks


Code-

--- ---;_________________________________________________
;_______Volume OSD Script   - Rajat_______________
;_________________________________________________


;_________________________________________________
;_______User Settings_____________________________

;Make customisation only in this area


;change characters for empty & full bar here
Full = |
Empty = -

;set bar position here (relative to desktop)
setenv, PosX, 922
setenv, PosY, 720



;Customise Hotkeys here
;HotKey, Volume_Up, VolUp
;HotKey, Volume_Down, VolDn

;HotKey, ^#Up, wVolUp
;HotKey, ^#Down, wVolDn

HotKey, Volume_Up, VolUp       ; ^Volume_Up
HotKey, Volume_Down, volDn
HotKey, +Volume_Up, wvolUp       ; Shift+^Volume_Up
HotKey, +Volume_Down, wvolDn



;___________________________________________
;_____Auto Execute Section__________________

; DON'T CHANGE ANYTHING HERE!!
; (unless u know what u're doing)

SetFormat, float, 0.0
SetTimer, splashoff, 100
CoordMode, ToolTip, Screen
SoundGet, currsnd1
SetTimer, CheckMute, 100


;Building Empty Bar
Loop, 25
  EmptyBar = %EmptyBar%%Empty%
 
Exit

Display:
   IfNotEqual, Type, W, SoundGet, currsnd
   IfEqual, Type, W, SoundGet, currsnd, Wave
   if currsnd1 <> %currsnd%
   {
      IfNotEqual, Type, W, ToolTip, Vol %currsnd%`% %curr%, %PosX%, %PosY%
      IfEqual, Type, W, ToolTip, Wave %currsnd%`% %curr%, %PosX%, %PosY%
      currsnd1 = %currsnd%
   }
   Type =

   setenv, presstime, %A_MDay%%A_hour%%A_Min%%A_Sec%
   envadd, presstime, 2
   SetTimer, SplashOff, On
return


Splashoff:
  setenv, presstime2, %A_MDay%%A_hour%%A_Min%%A_Sec%
  ifgreaterorequal, presstime2, %presstime%
  {
    ToolTip
    SetTimer, SplashOff, off
  }
return



;___________________________________________
;_____Hotkey Customisation Section__________

; User defined hotkeys here


wVolUp:
   Type = W
VolUp:
   #MaxHotkeysPerInterval 50
   
   IfNotEqual, Type, W
   {
      SoundSet, +4       
      SoundGet, currsnd
   }
   
   IfEqual, Type, W
   {
      SoundSet, +4, Wave
      SoundGet, currsnd, Wave
   }
   
   mark=0
   curr=%EmptyBar%
   loopup:
   mark += 4
   iflessorequal,mark, %currsnd%,StringReplace, curr, curr,%Empty%,%Full%
   iflessorequal,mark, %currsnd%, goto, loopup
   gosub, display
return


wVolDn:
   Type = W
VolDn:
   #MaxHotkeysPerInterval 50
   
   IfNotEqual, Type, W
   {
      SoundSet, -4       
      SoundGet, currsnd
   }
   
   IfEqual, Type, W
   {
      SoundSet, -4, Wave
      SoundGet, currsnd, Wave
   }
   
   mark=0
   curr=%EmptyBar%
   loopdown:
   mark += 4
   iflessorequal,mark, %currsnd%,StringReplace, curr, curr,%Empty%,%Full%
   iflessorequal,mark, %currsnd%, goto, loopdown
   gosub, display
return

;___________________________________________

;__________MUTE DETECTION BY COMPUBOY_R


CheckMute:
SoundGet,checkmute,,MUTE
   if checkmute = On
   {
      TrayTip,Volume,MUTE,,1
      mutetray = yes
   }

   else
   {
      if mutetray = yes
      {
      TrayTip
      mutetray = no
      }

   }

return
Edited to wrap the script in [code] tags - lanux128

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version