In fact, this is possible in a limited subset of cases (but the ones that I needed!). The following code is Haxe, but hopefully anyone coming from an AS3 background should be able to translate it with minimal difficulty.
public function getPixel(x:Int, y:Int, sprite: Starling.display.Sprite) : UInt {
var sw: Int = stage.stageWidth;
var sh: Int = stage.stageHeight;
var support:RenderSupport = new RenderSupport();
RenderSupport.clear(flash.Lib.current.stage.color, 1.0);
support.setOrthographicProjection(0, 0, sw, sh);
Fathom.starling.stage.render(support, 1.0);
support.finishQuadBatch();
var result:BitmapData = new BitmapData(sw, sh, true);
Starling.context.drawToBitmapData(result);
return result.getPixel(Std.int(sprite.x) + x, Std.int(sprite.y) + y);
}
What this code does is render every object that's being displayed in a 3D context to the result BitmapData. Then, we grab a pixel from that BitmapData at the location where the sprite is.
This isn't perfect - it doesn't consider things like rotations, scales, etc. It also doesn't consider if sprite does not have the highest depth. However it is helpful for testing, and it might also come in handy if you need to take a screenshot of the current state of the app/game.