Javascript Edit object in toolbar component

Is any possible method to access object in toolbar from javascript page? for example to enable or disable refresh button. Thank you.

Yes, that’s possible. Use the method described here:
https://www.htmlexe.com/help/callscript#using-javascript
And then in HEScript code, add

procedure MyScript1;
begin
 SetUIProp('breload', 'Enabled', '0');
end;