i make my browser using SWT.browser.
i like to hide my browser(invisible backgroud) but i dont know how to do?
------
shell = new Shell(display, SWT.NONE);
shell.setLayout(new FillLayout());
shell.setSize(1024, 768);
shell.setVisible(false); // not work
shell.setLocation(10, 20);
browser = new Browser(shell, SWT.NONE);
browser.setJavascriptEnabled(true);
browser.setVisible(false); // not work
------