| |
Neat idea, though probably not something that would be implemented anytime soon. Note that you could do this somewhat generically already using scripts.
e.g. (pseudo-code)
layout XML with
frame
elem1
elem2
elem3
...
then...
function flow(frame, anchor, offset, flow)
anchor elem1 to frame
for elem in elemN
anchor elem to last elem, based on the flow
end
end
|