Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Mouse Tracker (makes pretty pictures from your mouses path)  (Read 4658 times)

0 Members and 1 Guest are viewing this topic.

Jallen

  • Newbie
  • *
  • Posts: 39
    • View Profile
http://jallenbah.co.uk/mousetracker.php
^ There's the page on my site for it.

It basically gets your mouse position using the Win API function GetMousePos() and adds a line to the image every 1/45th of a second between your current point and last point. The results can be both artistic and interesting.

Click for screen:
http://i48.tinypic.com/245im8j.jpg
(linked instead of tagged because it's 1280x1024)

Hugo

  • Jr. Member
  • **
  • Posts: 60
    • View Profile
a
« Reply #1 on: July 09, 2010, 06:36:23 pm »
MSVCP100.dll is missing from my system, apparently
so is MSVCR100.dll
i downloaded them, but it still wouldnt work, they must be the wrong version?
you need to fix this

Jallen

  • Newbie
  • *
  • Posts: 39
    • View Profile
Mouse Tracker (makes pretty pictures from your mouses path)
« Reply #2 on: July 13, 2010, 01:46:54 pm »
No I don't.

You need to get the VC++ 2010 redistributeable package, not just the dll.
The clue is in the name: MSVCR100.dll
MicroSoft Visual C++ Redistributeable

I added a part to the page telling where to get the packages.

Hugo

  • Jr. Member
  • **
  • Posts: 60
    • View Profile
Mouse Tracker (makes pretty pictures from your mouses path)
« Reply #3 on: July 13, 2010, 11:29:02 pm »
Okay I get it, but why do say you don't need to fix it, it is a problem that can affect your users, tell them to download visual cpp

Jallen

  • Newbie
  • *
  • Posts: 39
    • View Profile
Mouse Tracker (makes pretty pictures from your mouses path)
« Reply #4 on: July 14, 2010, 12:00:39 pm »
That's impossible to do in the program because they would need the VC++ 2010 redist to see the message in which I told them to get it.

I added info about the redist to the mouse tracker page, but it's not a bug so it doesn't need "fixing" as such.

VanEldo

  • Newbie
  • *
  • Posts: 12
    • View Profile
Mouse Tracker (makes pretty pictures from your mouses path)
« Reply #5 on: July 14, 2010, 02:51:43 pm »
Hi Jallen,

there is a possibility! You can link the msvcr statically to your binary. It may increase the size of it (300 -400kb), but in most cases it's worth it! Inexperienced users know nothing about the Redistributable Package and many of them won't even read your infos, so they will always think it has something to do with your game.

greetz, Eldo.