Question
script ui palette / how to redraw?
(function (){
...
...
...
var bt = new BridgeTalk();
bt.target = BridgeTalk.appSpecifier;
bt.body = 'make();';
bt.onResult= function(resObj){
palette.show();// want to redraw
};
bt.send();
})();
I want to redraw scriptUI (palette).
I use BridgeTalk and run "make();" function,
and I want to show texts for the result of function.
