Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Programmieren allgemein (https://www.delphipraxis.net/40-programmieren-allgemein/)
-   -   Maus Pos (https://www.delphipraxis.net/144337-maus-pos.html)

jonsen2.0.0.9 5. Dez 2009 16:24


Maus Pos
 
Hallo,
wollte ma was schreiben was die position der maus nutzt und so einen ball immer in die richtung des zeigers bewegt...

Nun hab ich folgendes problem...ich weiss nich wie man die position der maus auf Form bekommt...ich bekomme nur die pos der maus auf dem bildschirm in pixeln brauche aber die angaben wie sie auch bei z.B. der kugel sind (z.B. left 10 top 5)

mein bisheriger TEXT:


Delphi-Quellcode:
procedure TForm1.Timer3Timer(Sender: TObject);
var
mauspos:TPoint;
begin
GetCursorPos(mausPos);
 if Ball.top<mauspos.y then
  b:=1;              //b ist die bewegung nach oben und unten
 if Ball.Top+Ball.Height>mauspos.Y then
  b:=-1;
 if Ball.left<mauspos.Y then
  c:=1;             //c ist die bewegung nach links und rechts
 if Ball.Left+Ball.Width>mauspos.Y then
  c:=-1;
Ball.Left:=Ball.Left+c;
Ball.Top:=Ball.Top+b;
end;

wäre toll wenn ihr mir da helfen könnt!

Bernhard Geyer 5. Dez 2009 16:25

Re: Maus Pos
 
Mit den TForm-Methoden ScreenToClient und ClientToScreen könnten die Koordinaten umgerechnet werden.

jonsen2.0.0.9 5. Dez 2009 16:39

Re: Maus Pos
 
kannste mir ma zeigen wie dat genau geht hab jetzt so:

Delphi-Quellcode:
GetCursorPos(mausPos);
ScreenToClient(Mauspos);
 if Ball.top<mauspos.y then
  b:=1;
 if Ball.Top+Ball.Height>mauspos.Y then
  b:=-1;
 if Ball.left<mauspos.Y then
  c:=1;
 if Ball.Left+Ball.Width>mauspos.Y then
  c:=-1;
Ball.Left:=Ball.Left+c;
Ball.Top:=Ball.Top+b;
was muss man noch ändern?
muss vor
Delphi-Quellcode:
ScreenToClient(Mauspos);
noch nen
Delphi-Quellcode:
Mauspos:=
oder so?

Bernhard Geyer 5. Dez 2009 17:11

Re: Maus Pos
 
Zitat:

Zitat von jonsen2.0.0.9
was muss man noch ändern?
muss vor
Delphi-Quellcode:
ScreenToClient(Mauspos);
noch nen
Delphi-Quellcode:
Mauspos:=
oder so?

Schau dir doch mal in der Onlinehilfe an wie die Methode so definiert ist.
Dann sollte es klar sein.


Alle Zeitangaben in WEZ +1. Es ist jetzt 19:43 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz