I want to add menu items to native JMP platforms without having to encasing it in a outline box or something like that.
Like below
Names default to here(1);
dt = open("$SAMPLE_DATA\Big Class.jmp");
biv = dt << Bivariate(Y(:height), X(:weight));
bivr = report(biv);
bivr << Set Menu Script({"something", print("something")});
//doesn't work unless I do this and then it gets rid of all of the native platform scripts
bivr << Set Scriptable Object(Empty());
//I want to be able to do something like
bivr << Add Menu Script(index, "name", script);