Ignition view switch to intouch view

With intouch viewer and ignition vision running on a computer, how to switch between the two programs via a script ?

Assuming you're using windows

you could use AppActivate from powershell

Add-Type -AssemblyName Microsoft.VisualBasic
[Microsoft.VisualBasic.Interaction]::AppActivate("Notepad")

This won't do you any good if the windows are minimzed. Restoring them from minimized takes more work, but it should work to swap them if they are both up using AppActivate.

I’d use AutoHotkey for this.

3 Likes

Thanks, I will try.