MinervaXcel

Simple left-click application shortcuts

Jun 17th, 2014
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [Rainmeter]
  2. Update=200
  3.  
  4. [Variables]
  5. Application1=
  6. Application2=
  7. Application3
  8.  
  9. [Click1]
  10. Meter=Image
  11. Solidcolor=0,0,0,255
  12. X=0
  13. Y=0
  14. W=40
  15. H=40
  16. LeftMousedownAction=[#Application1#]
  17.  
  18. [Click2]
  19. Meter=Image
  20. Solidcolor=0,0,0,255
  21. X=0
  22. Y=10
  23. W=40
  24. H=40
  25. LeftMousedownAction=[#Application2#]
  26.  
  27. [Click3]
  28. Meter=Image
  29. Solidcolor=0,0,0,255
  30. X=0
  31. Y=20
  32. W=40
  33. H=40
  34. LeftMousedownAction=[#Application3#]
  35.  
  36. ;$ As you might have guessed, rainmeter works in pixels. So if you define a w=40 and h=40 then it will be 40x40 pixels.
  37. ;$ And since it contains no imagename, rainmeter will create square of the size (in this case, 40x40 pixels)
  38. ;$ Which, in the end means that it creates a 40x40 pixels large area for you to be able to click on.
  39.  
  40. ;$ When you are done with placing the meters correctly,
  41. ;$ replace the 0,0,0,255 value on "Solidcolor=0,0,0,255" with "Solidcolor=0,0,0,1" and the buttons will be invisible.
Advertisement
Add Comment
Please, Sign In to add comment