<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-15">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Hallo Scilab experts,<br>
    How would you avoid the 'twinkling'  when clicking for the next
    image?<br>
    <br>
    <br>
    <pre style="font-family:Monospaced;font-style:normal;font-size:13.0;"><big><big>xdel();
cf=figure('position',[100 100 1200 800],'background',8);
ca=<span style="text-decoration: underline;">gca</span>();
x=[0 1 0]; y=[0 0 1]; z=[1 1 1];
for i=1:8 
  plot3d(x',y',z'*i/5)
  ca.box="off";    ca.axes_visible = ["off","off","off"];  
  caxl=ca.x_label; caxl.visible="off";  cayl=ca.y_label; cayl.visible="off";   cazl=ca.z_label; cazl.visible="off";
  xtitle('Click into figure and watch twinkling.')
  ca.isoview='on';
  xclick()
end


</big></big></pre>
    Kind regards<br>
    Jens<br>
  </body>
</html>