I am encountering an issue while programming in JMP's JSL language. When I use the `Add Graphics Script()` function to customize a Graph Builder, outer-scope variables are not passed to the script as values at the time of addition, which leads to errors. I have tried using the `Eval()` function to convert variables into their values, but `Add Graphics Script()` passes the `Eval()` call itself into the Graph Builder, and the error persists. Is there a proper way to inject the current values of external variables into the script so that they are evaluated correctly within the Graph Builder context?
Names Default To Here( 1 );
rpt = Current Report();
cc = 1;
rpt[Frame Box( 1 )] << Add Graphics Script(
1,
Description( "" ),
Text( Center Justified, {0, 0}, cc )
);

Name Unresolved: cc in access or evaluation of 'cc' , cc/*###*/