S
Shurkien
Gast
Habs im G15 Applets Forum gefunden und werde hier mal die 3 Antworten reinzitieren:
Einfach in den Logitech G-Series Profiler gehen und dort folgendes Script einsetzen:
Hier als .lua Datei:
http://rapidshare.com/files/264122284/pulsieren_blau.lua
C :http://www.g15-applets.de/g19-beleuchtung-pulsieren-lassen-t6137.html#54106
Viel Spaß damit
Mfg
Script und DL Link aktualisiert!
Einfach in den Logitech G-Series Profiler gehen und dort folgendes Script einsetzen:
function OnEvent(event, arg)
OutputLogMessage("event = %s, arg = %s\n", event, arg);
if(event == "M_PRESSED" and arg == 3) then
Fade3();
end
if(event == "M_PRESSED" and arg == 2) then
Fade2();
end
if(event == "M_PRESSED" and arg == 1) then
Fade1();
end
end
function Fade3()
i = 0;
rofl = 0;
while rofl == 0 do
if(i == 1) then
for loop = 255, 0, -1 do
SetBacklightColor(0,loop,0);
Sleep(10);
end
if not (GetMKeyState() == 3) then break; end
end
i = 1;
for loop = 0, 255, 1 do
SetBacklightColor(0,loop,0);
Sleep(10);
end
end
end
function Fade2()
i = 0;
rofl = 0;
while rofl == 0 do
if(i==1) then
for loop = 255, 0, -1 do
SetBacklightColor(0,0,loop);
Sleep(10);
end
if not (GetMKeyState() == 2) then break; end
end
i = 1;
for loop = 0, 255, 1 do
SetBacklightColor(0,0,loop);
Sleep(10);
end
end
end
function Fade1()
SetBacklightColor(0,0,255);
end
Hier als .lua Datei:
http://rapidshare.com/files/264122284/pulsieren_blau.lua
C :http://www.g15-applets.de/g19-beleuchtung-pulsieren-lassen-t6137.html#54106
Viel Spaß damit
Mfg
Ergänzung ()
Script und DL Link aktualisiert!
Zuletzt bearbeitet: