In this page on the bottom there's this code:
Oh and another one:
On the top there's also this code:
Can you explain what these commands do:
I suppose they are javascript commands but when I googled them I couldn't find any explanations. It would be best if you could also explain every line.
Thank you very much
.
Code:
Dim imacros, iret, i Set imacros = CreateObject("imacros")
iret = imacros.iimInit()
For i=0 To 4
' You have to convert the value into a string!
iret = imacro.iimSet("myloop", CStr(i))
iret = imacros.iimPlay("mymacro")
Next
Oh and another one:
Code:
iret = imacro.iimSet("greeting", "hello") iret = imacros.iimPlay("1st-macro")
iret = imacro.iimSet("greeting", "hello")
iret = imacros.iimPlay("2nd-macro")
On the top there's also this code:
Code:
int ret_code = iimSet ( String VARNAME, String VARVALUE )
Can you explain what these commands do:
- int ret_code
- iret
- Set imacros = CreateObject("imacros")
- Init()
- Dim imacros, iret, i
- imacro.iimSet("myloop", CStr(i)) pls explain the word in bold
I suppose they are javascript commands but when I googled them I couldn't find any explanations. It would be best if you could also explain every line.
Thank you very much