Tips we have learned collectively while working remotely will be put here…
LabConnect
None so far
Citrix
Running in Chrome is easy, but the graphics (at least on my machine) were interesting.
The resolution was sometimes fuzzy (Citrix sends rapid screenshots to your local machine - that is how the GUI works). By dragging the right window edge left and letting it recalibrate and then dragging it right again and letting it recalibrate the fuzziness could be eliminated.
Some things fall off the bottom of the screen and are hidden
The typical way to run a .tcl file is to right-click it and select “Run” from the bottom of the popup window. On some machines that popup window goes off the edge of the screen. The alternative is to “source” the file. That is, you can execute it as command in the Tcl Console. The Tcl Console understands many shell commands such as:
pwd - what directory am I in?
cd - go to a different directory
Example: cd B:/220Labs/Decoder (go to a specific directory)
Example: cd .. (go up one directory level)
dir - show the files in the current directory
Using these you can navigate to your project directory and then you can execute: source mytclfile.tcl (or whatever you named it)
Finally, when working with the Tcl Console don't forget that Up-Arrow on the keyboard will let you cycle back through previous commands, making it easy to repeatedly run 1000ns or something.