interfacetest parametercount6 tspstring mystring valueteststring tspstring myotherstring valueother test tspboolean myboolean valuetrue tspinteger myinteger minimum0 maximum100 value15 tsplist mylist listfirst choice,second,third valuesecond tsplongstring mylongstring valueThis is to demonstrate how the parameters can be used with the plugins. This is a second paragraph. You may have to scroll down to see all parameters. dim text as string dim nl as string nl = getnewline print "mystring = " + getparameter("mystring") + nl print "myotherstring = " + getparameter("myotherstring") + nl print "myboolean = " + getparameter("myboolean") + nl print "myinteger = " + getparameter("myinteger") + nl print "mylist = " + getparameter("mylist") + nl print "mylongstring = " + getparameter("mylongstring") + nl