Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Sessions As Object
Public System As Object
Public Sess0 As Object
Public Sess1 As Object
dim Sess as object
'Extra Objects
Set System = CreateObject("EXTRA.System") ' Gets the system object
If (System Is Nothing) Then MsgBox "Could not create the EXTRA System object. Stopping macro playback.": Stop
Set Sessions = System.Sessions
If (Sessions Is Nothing) Then: MsgBox "Could not create the Sessions collection object. Stopping macro playback.": Stop
Set Sess0 = System.ActiveSession
If (Sess0 Is Nothing) Then MsgBox "Could not create the Session object. Stopping macro playback.": Stop
for each sess in sessions
if sess.name <> Sess0.name then
set Sess1 = sess
end if
next
...Macro Magic happens here...
Set Sessions = Nothing
Set System = Nothing
Set Sess0 = Nothing
Set Sess1 = Nothing
sSessName = "XXX-AB1"
for each sess in sessions
if sess.name <> sSessName then
set Sess1 = sess
exit for
end if
next
'now manipulate the screen in this session