 Rank: Newbie Joined: 2/12/2016(UTC) Posts: 28  Location: Sunderland UK Thanks: 3 times
|
Does anyone know if theres a way to change the icons on the 'Access' screen. The little agent with a headset, server and client.
I've had a look through the appearance settings but cant find anything
|
|
|
|
 Rank: Administration Medals:  Joined: 10/2/2015(UTC) Posts: 329
Thanks: 1 times Was thanked: 71 time(s) in 63 post(s)
|
Originally Posted by: damtechmatt  Does anyone know if theres a way to change the icons on the 'Access' screen. The little agent with a headset, server and client.
I've had a look through the appearance settings but cant find anything
This would only be possible if you are using an on-prem installation of ConnectWise Control, since modifying the host/server/guest images would involve modifying the corresponding files in your base Control installation's Image directory. On 6.0.11622 and 6.0.11232, these images are as follows (all images are 128x128 px): Host: Images\Host.png Relay (server): Images\Relay.png Guest: Images\AccessGuest.png If you do modify these images, you will need to use the same naming convention. |
ScreenConnect Team |
|
|
|
 Rank: Newbie Joined: 2/12/2016(UTC) Posts: 28  Location: Sunderland UK Thanks: 3 times
|
Thanks Ben.
Yes it is an on-prem install sorry.
Are these based in the config, or in the machines file system?
Matt
|
|
|
|
 Rank: Newbie Joined: 2/12/2016(UTC) Posts: 28  Location: Sunderland UK Thanks: 3 times
|
Scratch that! Found them.
Just need to keep a note of the location as I assume they will change back when it updates?
Matt
|
|
|
|
 Rank: Administration Medals:  Joined: 10/2/2015(UTC) Posts: 329
Thanks: 1 times Was thanked: 71 time(s) in 63 post(s)
|
Originally Posted by: damtechmatt  Scratch that! Found them.
Just need to keep a note of the location as I assume they will change back when it updates?
Matt Correct, the image changes will not survive a server upgrade. Also, the pertinent image file names are likely to change in future releases of the product. |
ScreenConnect Team |
|
|
|
 Rank: Advanced Member Medals:   Joined: 9/14/2011(UTC) Posts: 360 Location: ON, Canada
Thanks: 31 times Was thanked: 14 time(s) in 11 post(s)
|
Originally Posted by: Ben B  Correct, the image changes will not survive a server upgrade. Also, the pertinent image file names are likely to change in future releases of the product. Could the permissions on those files be set in such a way that those individual files would be non-upgradeable?
|
|
|
|
 Rank: Administration Medals:  Joined: 10/2/2015(UTC) Posts: 329
Thanks: 1 times Was thanked: 71 time(s) in 63 post(s)
|
Originally Posted by: promptcare  Originally Posted by: Ben B  Correct, the image changes will not survive a server upgrade. Also, the pertinent image file names are likely to change in future releases of the product. Could the permissions on those files be set in such a way that those individual files would be non-upgradeable? I do not recommend changing the permissions for the files in the Image directory, as doing so will likely cause trouble at upgrade time. Furthermore, it's very likely that image file names (and existence) will change in subsequent releases of ConnectWise Control. You could also write an extension that achieves what you're trying to do. You will need to add the custom Guest, Relay, and Host image files to an Images directory in your custom extension's directory. To get you started, I've posted Manifest.xml and Style.css prototypes (I tested this against 6.1.12292) to include in a custom extension (the custom extension contains the following image files: Images/Guest.png, Images/Relay.png, and Images/Host.png): Manifest.xml: Code:
<?xml version="1.0" encoding="utf-8"?>
<ExtensionManifest>
<Version>1.0</Version>
<Name>Custom Host Page Images</Name>
<Author></Author>
<ShortDescription>Change guest, relay, and host images on the host page</ShortDescription>
<Components>
<StyleSheetReference SourceFile="Style.css" />
</Components>
</ExtensionManifest>
Style.css: Code:
.MainDetailPanel .DetailSelectionPanel .DetailTableContainer table .StatusDiagramPanel {
position: relative;
width: 100%;
height: 32px;
background-image: url(Images/Relay.png) !important;
background-size: 32px;
background-position: center;
background-repeat: no-repeat;
}
.MainDetailPanel .DetailSelectionPanel .DetailTableContainer table .StatusDiagramPanel.Access > div.Guest {
background-image: url(Images/Guest.png) !important;
}
.MainDetailPanel .DetailSelectionPanel .DetailTableContainer table .StatusDiagramPanel > div.Host {
left: 0px;
background-position: left;
background-image: url(Images/Host.png) !important;
}
.MainDetailPanel .DetailSelectionPanel .DetailTableContainer table .StatusDiagramPanel.Support > div.Guest,
.MainDetailPanel .DetailSelectionPanel .DetailTableContainer table .StatusDiagramPanel.Meeting > div.Guest {
background-image: url(Images/Guest.png) !important;
}
More information on how to create your own extensions can be found here: https://help.screenconne...nConnect_Extension_Guide |
ScreenConnect Team |
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.