Multiple Client Machines

I have 2 client systems running on the project 1 on the third floor and 1 on the fourth floor.
How can I get the clients systems to know what floor they are on, or give me the ablity to log on to the third floor screens from the fourth floor or vise versa?

Through a startup script you can see what hostname or IP address the client is running on and open the appropriate windows. Here is an example startup script:[code]hostname = system.tag.read("[System]Client/Network/Hostname").value
ip = system.tag.read("[System]Client/Network/IPAddress").value

if hostname == “FourthFloor”:
system.nav.swapTo(“SomeMainWindow”)
system.nav.openWindow(“OpenDockedWindow”)
else:
system.nav.swapTo(“OpenOtherMainWindow”)[/code]You can use swapTo to open main screens and openWindow to open docked windows or popups. You should make sure that your windows are not set to open on startup since that is a static list of windows.