Hi folks, I make my first experiences with the CCS4 and Bios6x. I studied the manuals and found out that the language for the xdc/cfg-file is like JavaScript. Now I want to create 4 egal threads and I want to store the handles in one array. My idea is to use the following lines: for( var i = 0; i < 4; i++ ) { TaskParams.arg0 = i; Program.global.TaskHandle[ i ] = Task.create( '&MyTask', TaskParams ); } Does anyone have an idea how this could be realised? I tried different things but I got always an error during the generation. Thanks alot, Jürgen