キャンバス内のウィンドウを動かしてみる
<?xml version="1.0" encoding="UTF-8"?> <canvas width="100%" height="100%" debug="true"> <window width="120" height="120" title="Text in a windows."> <text>Hello, World!</text> </window> <window height="200" width="150" title="when this window is cliked..." onclick="this.animate('x', 200, 1000, true);"> <text>it moves right to 200px in 1 sec.</text> </window> <script> Debug.write("Hello, Debug window!"); </script> </canvas>