- OpenLaszlo紹介
- プログラム構造関連
- スクリプト
- Javascript基礎
- 基礎知識
- ビュー<view>
- レイアウト
- 動かす
- 入力デバイス
- 文字
- 数値
- 日付
- オブジェクト指向
- 標準コンポーネント
- データの扱い
- データ操作(基礎)
- 応用編
–
<?xml version="1.0" encoding="UTF-8"?> <canvas proxied="false"> <animator id="sleep" attribute="opacity" to="1" duration="3000" onstop="anm1.doStart()" /> <!-- Flash & DHTML 画像 --> <view x="150" y="5" resource="icons/flashdhtml.png"> <animator id="anm3" attribute="x" from="150" to="330" duration="3000" start="false" onstop="sleep.doStart();" /> </view> <!-- XML画像 --> <view x="0" y="40" resource="icons/xml.png" /> <!-- OpenLaszlo画像 --> <view x="130" resource="icons/openlaszloserver.png" /> <!-- XML画像(動く用) --> <view x="0" y="40" resource="icons/xml.png"> <animatorgroup id="anm1" process="simultaneous" start="false" onstop="anm2.doStart();"> <animator attribute="opacity" to="0.7" duration="1"/> <animator attribute="x" from="0" to="200" duration="2500"/> <animator attribute="y" from="40" to="20" duration="1800"/> </animatorgroup> <animator id="anm2" attribute="opacity" to="0" duration="700" start="false" onstop="anm3.doStart();"/> </view> </canvas>