DraftSight Script & close command

Hello Everybody,

I'm trying to run a DraftSight script (with prompt commands, no API), with a batch command (on several files). It should save DXF files as DWG files.

The script stops when I use the close command, so I'm not able to do my batch when I close the first file.This script won't work until the end :

CODE : script

Open c:\\TEST1.dxf

SaveAs c:\\TEST1.dwg

Close

Open c:\\TEST2.dxf

SaveAs c:\\TEST2.dwg

Close

This script will stop after the 1st close command, and won't go further.Any idea why ?

 

I Also tried this without success :CODE : script

Open c:\\TEST1.dxf

SaveAs c:\\TEST1.dwg

Open c:\\TEST2.dxf

SaveAs c:\\TEST2.dwg

Close

Close

But DraftSight will only Save As DWG the first DXF (TEST1) two times, and won't bother taking care of TEST2, even if it's displayed on the screen at the end of the script.

Any hint would be appreciate, thanks in advance.

PS : I'm new there, if there is a section where I should introduce myself, please let me know.