Hey again!
does anybody knows how to get float arguments from the command line window?
I tried:

if( me.args() ) //0: filename,1: min_time,2: max_time

{

    me.arg(0) => string filename;

    me.arg(1) $ float => float MIN_TIME;

    me.arg(2) $ float => float MAX_TIME;

}


but I'm getting  "line(4): invalid cast to 'float' from 'string'"