Copy link to clipboard
Copied
Dear fellow FrameMaker scripting geeks,
I am creating graphic objects (rectangles) in FrameMaker to make the content look 'boxed' without having to revert to 1-cell tables. My script is creating rectangles on the page with the right location and dimensions to make the content look boxed. So far, so good. But when I have a filled box, I need to push it to the back after creating it. And although I can do this for a single box using the Fcode for the GraphicsSendToBack command, this turns out to be very unreliable when I have a number of boxes in the same document.
Does anyone know an alternative method to make the new rectangles move to the back of the page so that the actual content becomes visible again after creating the boxes ?
Many thanks for any ideas you might have.
Jang
Assuming that your rectangle is represented by a "graphic" variable, it is one of these two:
graphic.PrevGraphicInFrame = 0;
graphic.NextGraphicInFrame = 0;
I think it is the first one.
Copy link to clipboard
Copied
Assuming that your rectangle is represented by a "graphic" variable, it is one of these two:
graphic.PrevGraphicInFrame = 0;
graphic.NextGraphicInFrame = 0;
I think it is the first one.
Copy link to clipboard
Copied
Doesn't that mess with the current lowest object on the page ? Or does Fm automatically adjust the current lowest one ?
Copy link to clipboard
Copied
It should behave like the fcode does and adjust the rest of them.
Copy link to clipboard
Copied
Tried it and it works. Thanks. If only all tricks were this easy 🙂