^That's probably the easiest way to do it. You can also change the resource string
CreateSessionPanel.CodeVisible (accessible on the appearance tab on the administration page) from true to
false. That way, the option for hosts to even create code sessions will be inaccessible, and the code box will never show up on the guest's page. But again, if you never intend to use a code session, there's no need to do anything else.
As for the scrollbar, if you're using an iframe for embedding as detailed in
HOWTO-0005, all you need to do is add the attribute
scrolling="no" to your iframe tag. So it would look something like this:
Code:<iframe src="http://live.screenconnect.com/?Theme=Embedded" style="width: 800px; height: 300px;" scrolling="no"></iframe>
Finally, for the links at the top, I'd recommend creating a new theme by duplicating the Embedded theme found in the App_Themes directory of your ScreenConnect installation, just in case. Then, in your
new theme's folder, open up
Default.css and add the following lines:
Code:.LinkPanel
{
display: none;
}
See
HOWTO-0009 for more information on modifying themes.
Save your work, switch to your new theme, and you won't see the links at the top of the page. If you're logged in, you'll probably see, "Welcome, Username," but since a guest is never logged in, he or she will never see that.
Hope that helps!
ScreenConnect Team