How to get information on what object was clicked on an Impress presentation?

I’m currently trying to implement a scoreboard in a Jeopardy Impress template I’m creating (first version w/o said scoreboard pending moderation approval on the official extensions website!), but I’m having a hard time figuring out how to make it so that each of the arrow buttons only trigger a change in value for their associated score:


I was able to implement the removal of answered questions using Basic macros and the presentation controller class, which is able to get the current index, but I’m not sure how to get the “last clicked object.” Frankly, even just the ability to get the coordinates of the moues when the macro is run would suffice! I already know I can read the current score and then add to it, so the only bottleneck here is reliably getting the right object on the presentation slide. If anyone has any idea how to do this, I’d greatly appreciate any pointers! :grin:

use a different macro name to identify each source of interaction
t1up(), t1down(), t2...

see also

1 Like

I cannot believe I didn’t think to just make different macros for each one… such an obvious solution! Thanks!