Jump to content

NUM LED blinkt bei Aufnahme


topline5

Recommended Posts

Hallo,

 

wäre es möglich durch ein Plugin oder Script den DVBViewer beizubringen,wenn eine Aufnahme läut das dann z.b. die NUM-LED auf der Tastatur anfängt zu blinken bis die Aufnahme beendet ist.

Das hätte dann den vorteil das man auch bei ausgeschaltetten Fernseher sieht ob grad eine Aufnahme läut oder nicht.

 

Hätte da jemand eine Idee ?

 

gruß

topline5

Link to comment

Softwaremäßig zum Blinken lässt sich die LED schon mal bringen, wie die angehängte Mini-Exe zeigt:

 

program Num_Blink;

uses
 Windows;

var
 i: Integer;

begin
 for i := 1 to 20 do
 begin
keybd_event(VK_NUMLOCK,$45,KEYEVENTF_EXTENDEDKEY,0);
keybd_event(VK_NUMLOCK,$45,KEYEVENTF_EXTENDEDKEY or KEYEVENTF_KEYUP,0);
Sleep(500);
 end;
end.

Num_Blink.zip

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...