Like the question says, I want to have a bar at the complete bottom while still have the taskbar not being in "auto-hide" mode when I alt-tab out of Intouch viewer.
Like the question says, I want to have a bar at the complete bottom while still have the taskbar not being in "auto-hide" mode when I alt-tab out of Intouch viewer.
Hi Marc-Andre, would you please attach a short video, annotated screenshot or drawing that explains visually what you are trying to accomplish?
Thanks,
Klaus
Goal:
Currently:
See how the banner is too high and overlapping the other screen?
It even goes up when I disable the auto-hide function of the windows taskbar
Thanks. What version of System Platform/InTouch are you using? What version of Windows are you using?
AVEVA Dev Stidio 2023 version 23.0.002 6500.1213.8312.3
Windows Server 2022 Standard 20348.1487
Thanks Marc-Andre. We will investigate.
Hi Marc,
Currently in OMI we do not support this, However In InTouch we allow you to script the position to be above the taskbar. The only caveat (base on your requirement) is in InTouch the ShowGraphic() support only 'TopMost' and not 'AlwaysOnTop', so initially it will show on top of the taskbar, but once it loses its focus or taskbar get focus it will change the z-order and to bring it back you will need to re-launch the graphic or other technic to activate that window.
Here is small script sample:
Dim graphicInfo as aaGraphic.GraphicInfo;
graphicInfo.Identity = "Graphic_001";
graphicInfo.GraphicName = "Graphic_001";
graphicInfo.HasTitleBar=false;
graphicInfo.WindowRelativePosition=aaGraphic.WindowRelativePosition.DesktopXY;
graphicInfo.TopMost=true;
graphicInfo.KeepOnMonitor=false;
graphicInfo.X=200;
graphicInfo.Y=1060;
ShowGraphic( graphicInfo );
Please enter enhancement request for OMI