スクロールする文字列
ここで紹介するサンプルでは、RichTextのauto_scrollアトリビュートを1にセットすることによって、文字列をスクロールさせています。
layout.xml
<?xml version="1.0" encoding="UTF-8"?>
<Widget>
<Component name="widget">
<Bitmap name="initial-bg"/>
<Component name="normal">
<RichText name="richtext1" x="-100" y="-50" auto_scroll="1"/>
</Component>
<Component name="focus" visible="0">
</Component>
<Component name="active" visible="0">
</Component>
</Component>
</Widget>
widget.js
var nodeNormal = getNode("normal");
var nodeRichText1 = getChildNode(nodeNormal, "RichText1");
function onLoad() {
setStr(nodeRichText1, "hoge hoge");
}
function onUpKey() {
}
function onDownKey() {
}
function onRightKey() {
}
function onLeftKey() {
}
function onConfirmKey(type) {
}
function onFocus() {
}
function onUnfocus() {
}
function onActivate() {
}
サンプルダウンロード
ウィジェットバンドル : RichText.zip