I have a sprite "sprite1" where I have defined an image point that I have called "pointA".
I'm trying to reference it in an event
system->object overlaps point->sprite1.ImagePointX(Imagepoint),sprite1.ImagePointY(Imagepoint)
what I am supposed to write in the parenthesis?
I have tried
sprite1.ImagePointX(pointA)
sprite1.ImagePointX('pointA')
sprite1.ImagePointX("pointA")
none of these work, so what is the correct way to reference an image point that I have created?