What happens if for SpriteA I go
-- Pick farthest from SpriteB.X, SpriteB.Y
will it just pick the farthest SpriteA from the first instance of SpriteB? or does it choose a random SpriteB when I do that event?
Develop games in your browser. Powerful, performant & highly capable.
Random, you must pick SpriteB also.
It won't refer to a random one, it'll be the first created object. That means it consistently refers to one object instance, but it may as well be any of them. Read this article for more information, especially the expression rule.
cheers