Good day,
I would like to suggest on making it possible to add an event handler for the sensor panel, especially one that would handle showing/hiding the sensor panel based on e.g. connected monitors and also handle a position update/check once the panel is visible.
Easiest way to describe what I have in mind would be via extremely simplified script:
register_event(Active_Monitor_Count_Updated) --AIDA64 needs to be triggered when the amount of active monitors or their configuration changes
on event
if getlist(Active_Monitors) == "Designated Monitor" --upon the registered event AIDA64 checks if a specific monitor (by name or ID) is active
then
SensorPanel:Show() --if the designated monitor is active, the SensorPanel will be active
SensorPanel:SetAnchor("Designated Monitor", 0, 0) --SensorPanel will be moved to the upper left (Pixel 0,0) of the monitor in case it "lost" it's location
else
SensorPanel:Hide() --if the designated Monitor is not active, the Sensor Panel is inactive
end
Why do I want that? I'm using a USB monitor as SensorPanel as part of my case and the monitor boots roughly 20-30s after the Windows LogIn, therefore moving the SensorPanel to the main Monitor as the designated monitor ain't active yet.
Also, for the love of god, make it possible to use .gifs for images used in the SensorPanel...
Thanks and best regards!