I'm about to demonstrate my lack of knowledge, but hey...

I looked through that example, and I can understand what's going on (I think), except for how you'd call/integrate an instance of that new class in the overall layout. (This might be a case where I display my confusion with Squirrel, too.)
Where I used something like this:
local snapcont=fe.add_artwork("snap", 0, 0, 720, 720);
would I now use something like:
local snapcont=FillArt("snap", 0, 0, 720, 720);
?
Wait, that can't be right, because I haven't specified what "ref" is (or is it understood, or is it "surface" passed directly in the constructor?). Or would there be a different way to instantiate it?
Wait (part 2: electric boogaloo)! I'd instantiate it on, say, snapCanvas like this, right?
local snapcont=FillArt("snap", 0, 0, 720, 720, snapCanvas)
?
Except in the constructor, you've got ref=surface.add_artwork(x, y, w, h) but no reference to the art itself?
I apologize for putting my ignorance on display, but I keep thinking about how I'd do things in ActionScript, and, well, Flash is pretty much dead (and I don't want to write yet another fe from the ground up anyway! Wouldn't even know where to begin!). Thanks for your patience!