Switch to full style
Discussions about Coollector.
Post a reply

Key scanning

Thu Mar 31, 2011 8:41 pm

In an attempt to get my all the movie images to download I made a small program to keep pressing PgDn at short intervals. My intention is to leave it in my movie encyclopedia overnight.

The problem right now is that it works with every program I've tried so far except coollector. Any ideas why?

Re: Key scanning

Thu Mar 31, 2011 8:45 pm

The active code:

while (1)
{
keybd_event(VK_NEXT, 0, 0, 0);
Sleep(10);
keybd_event(VK_NEXT, 0, KEYEVENTF_KEYUP, 0);

Sleep(1500);
}

Re: Key scanning

Thu Mar 31, 2011 8:56 pm

If I give you ftp access to one of our image servers, would you volunteer to create the zip files we talked about, for the benefit of everyone ?

Re: Key scanning

Thu Mar 31, 2011 8:58 pm

Sure, why not

Re: Key scanning

Thu Mar 31, 2011 9:20 pm

I wrote a new one that works better a few minutes ago but I'll still do what I can to help.

Re: Key scanning

Thu Mar 31, 2011 9:29 pm

kakashi wrote:I wrote a new one that works better a few minutes ago but I'll still do what I can to help.

Kakashi, you're amazing, as always :w00t:

It could have been a long time before I do it myself :roll:
Post a reply