Κυριακή 17 Σεπτεμβρίου 2017

Test Html5 in M2000


This program test in Windows 7. In Wine Linux html5 not supported.
File aaa.html created in temporary folder
Write this in module A, using Edit A <enter>

text aaa.html {
      <!DOCTYPE html>
      <html>
      <body>
      
      <canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;">
      Your browser does not support the HTML5 canvas tag.</canvas>
      
      <script>
      
      var c = document.getElementById("myCanvas");
      var ctx = c.getContext("2d");
      var imgData = ctx.createImageData(100, 100);
      
      var i;
      for (i = 0; i < imgData.data.length; i += 4) {
          imgData.data[i+0] = 255;
          imgData.data[i+1] = 0;
          imgData.data[i+2] = 0;
          imgData.data[i+3] = 255;
      }
     
      ctx.putImageData(imgData, 10, 10);
     
      </script>
     
      <p><strong>Note:</strong> The canvas tag is not supported in Internet
      Explorer 8 and earlier versions.</p>
      <p>Press Esc to exit Browser</p>
      Or write in M2000 console Browser ""
      </body>
      </html>
}

browser aaa.html



Then  write this in module B (Edit B <enter>)

\\ set  directory to %temp%
Dir Temporary$
\\ show files aaa
Files "aaa*"
\\ return to user dir
Dir User
 


We can open temporary$ in explorer using command:
Win Temporary$ 

Δεν υπάρχουν σχόλια:

Δημοσίευση σχολίου

You can feel free to write any suggestion, or idea on the subject.