Hi,
I'm running a loop with script. Iteration frequency and values to be used in a loop is determined by output table.
For example,
####################################################
~~~~~
set TABLE.output_mode=Screen
execute TABLE
var count_c
set count_c=TABLE.output.row_count
for c from 1 to ^count_c
var value_c
set value_c=value TABLE.output at ^c 2
create selectnode at ^c*100 100
set selectnode.custom_name = ^value_c
~~~~~~~
endfor
####################################################
It works very well with Clementine client but the problem is that I have to run this script with Clementine server using batch.
When I run the script with shell file, outputs are not shown on screen of course, but just saved as a file(*.cou) and cannot read output value.
Is there anyway to read values from output files?
Jungsoo Ahn