LÖVE in the context menu
Posted: Mon Sep 22, 2008 9:58 am
Not sure if this will be useful to any of you, but I made a registry entry to add "LÖVE" to the context menu in XP. Now I can just right click on a directory to run in LÖVE.
Just save the code above in a file called whateveryouwant.reg, run it, then click yes when asked if you want to add to the registry.
I'm not 100% sure the registry is exactly the same in XP as Vista, but I don't imagine any of you Vista users would find it too difficult to modify accordingly.
This could be a nice feature done automatically when installing LÖVE. Just a thought! Hope you enjoy.
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\love]
@="LÖVE"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\love\command]
@="C:\\Program Files\\LOVE\\love.exe \"%1\""
I'm not 100% sure the registry is exactly the same in XP as Vista, but I don't imagine any of you Vista users would find it too difficult to modify accordingly.
This could be a nice feature done automatically when installing LÖVE. Just a thought! Hope you enjoy.