Global variable not seen in procedure
Posted: Thu Jul 28, 2016 9:22 am
A global variable filled from native javascript is not seen in
a procedure - is this correct ?
Regards
Wolfgang
a procedure - is this correct ?
Code: Select all
Global sip.s=""
Global test.s=""
! var v_sip = location.host;
test = "hello"
Debug sip + " - " + test
Procedure vartest()
Debug sip + " - " + test
EndProcedure
Debug sip + " - " + test
vartest()
Debug sip + " - " + test
Wolfgang