paperlined.org
apps > GameMaker
document updated 15 years ago, on Feb 1, 2009
You can find out what each object on the screen is, just by pointing your mouse at it!  Just add
this to the watch:

    object_get_name(instance_position(mouse_x,mouse_y,all).object_index)
    object_get_name(object_get_parent(instance_position(mouse_x,mouse_y,all).object_index))
    object_get_name(object_get_parent(object_get_parent(instance_position(mouse_x,mouse_y,all).object_index)))
    object_get_name(object_get_parent(object_get_parent(object_get_parent(instance_position(mouse_x,mouse_y,all).object_index))))