I bet it would but I'm still very new to programming so I'll have to convince him that I made it myself
As long as you understand what's happening in the code you did your self.
So back to my first question.
If you know, x,y of a point and center pos of a circle and its radius, do you know how to determine if it's within the circle or outside of it?
(hint: it's more of math, than programming)
I've been searching everywhere on the internet for the last 30 min on how to use it, but I can't find it
do you mind explaining on how to use Tag?
Sure, whenever you click on TImage. OnClick (or MouseUp/MouseDown) event is fired.
In the event handler there's "Sender"parameter. This Sender is actually the TImage that has been pressed.
So you can cast it and get the value of tag, like this:
v := TImage(Sender).Tag;
So if you assign tag value to your multiplier image as 10. You'll know that you hit the multiplier. ... each piece of the dartboard will come with its own image.