Code: Select all
Procedure MyProcedure()
Debug "Hello world"
EndProcedure
; Call in SpiderBasic
; MyProcedure()
; Call using Javascript
!f_myprocedure();
Code: Select all
Uncaught ReferenceError: f_myprocedure is not defined(…)
Code: Select all
Procedure MyProcedure()
Debug "Hello world"
EndProcedure
; Call in SpiderBasic
; MyProcedure()
; Call using Javascript
!f_myprocedure();
Code: Select all
Uncaught ReferenceError: f_myprocedure is not defined(…)
at the moment 'Declare' is a dummy-function in SpiderBasic, so i think, it's a good idea to declaring JS-Functions with it.bbanelli wrote:BTW, you proposed Declare as solution or that is a solution?