RussellJNile
Programmer
We would like to be able to embed a link in a web page that actually can start up a macro. Ideally the macro can open up a window, login and then navigate to the appropriate screen. Any ideas on how we could to that?
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.
<script type="text/vbscript">
Sub Window_OnLoad
set objExtra = CreateObject("Extra.System")
set objSess = objExtra.ActiveSession
If objSess is Nothing then
MsgBox "No session available.",0,"Program Halted"
Else
set objScreen = objSess.Screen
objScreen.PutString "Text to input",1,1
End If
Set objScreen = Nothing
Set objSess = Nothing
Set objExtra = Nothing
End Sub</script>