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.
main proc
; disable stop script option
; NOTE: this also stops a user from exiting Procomm
set aspect control on
; instruct procomm to intercept all keyboard input
; NOTE: this requires any keyboard input to be
; handled by the script itself
set aspect keys on
; your script code
; clear the key input buffer before returning keyboard
; processing to normal
keyflush
; instruct procomm to continue processing keyboard input
; normally
set aspect keys off
; enable stop script option
; NOTE: this allows users to exit procomm
set aspect control off
endproc