いつも大変お世話になっております。
以下のような簡単なアニメーションを作りました。ただ単にタイトルが
「1枚目」→「2枚目」→「3枚目」と変化して行くだけのものです。
ところが出来上がったgifファイルを見ると、2枚目の画像が明らかに飛ばされて
3枚目に行ってしまいます。SAS OnDemandでも手元のPC-SAS(64bit版)でも同様の現象が生じます。
option nodate nonumber nocenter animation=start animduration=1.5 animloop=no printerpath=gif;
ods printer file="./タイトルの変化.gif";
%macro rotate(_n=);
title "&_n.枚目";;
proc sgplot data=sashelp.class;
scatter x=age y=height;
run;
%mend rotate;
%rotate(_n=1);
%rotate(_n=2);
%rotate(_n=3);
ods printer close;
option animation=stop;
32bit版のSASではこのようなことはなかったかと記憶しているのですが、
何が原因でしょうか。ご教示のほどよろしくお願いいたします。