X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fswfcombine.c;h=9ecc162e2b812acb35cabcf3d4f90574dbaabc5a;hb=eac1308d474f42fb9a7f8c89b1a02ff63c7c60e2;hp=378bf064b14e7f8c74363651febe8822472fc67b;hpb=fc815311aa1bd67877b404493838dfd85a86f596;p=swftools.git diff --git a/src/swfcombine.c b/src/swfcombine.c index 378bf06..9ecc162 100644 --- a/src/swfcombine.c +++ b/src/swfcombine.c @@ -128,6 +128,11 @@ int args_callback_option(char*name,char*val) { config.isframe = 1; return 0; } + else if (!strcmp(name, "F")) + { + config.flashversion = atoi(val); + return 1; + } else if (!strcmp(name, "d")) { config.dummy = 1; @@ -316,7 +321,7 @@ void args_callback_usage(char *name) printf("-f , --frame The following identifier is a frame or framelabel, not an id or objectname\n"); printf("-x , --movex x Adjust position of slave by pixels\n"); printf("-y , --movey y Adjust position of slave by pixels\n"); - printf("-s , --scale Adjust size of slave by percent (e.g. 100% = original size)\n"); + printf("-s , --scale Adjust size of slave by percent (e.g. 100%% = original size)\n"); printf("-r , --rate Set movie framerate to (frames/sec)\n"); printf("-X , --width Force movie bbox width to (default: use master width (not with -t))\n"); printf("-Y , --height Force movie bbox height to (default: use master height (not with -t))\n");