Adding FrameBox Content to a Datatable as an image.
How do I take the output from Graphbuilder, grab the main FRAMEBOX as an image, resize it and add it to a datatable? I make my output using Graph builder and then run the following.obj = GB << Get Scriptable Object;
r= obj << Report;
myImage = r[FrameBox(1)];
myImage << setSize(100, 100);
DT:GFA[1] = myImage; //Row 1 of column 'GFA' (Expression Column) in a Table called 'DT'
I think my issues is ...