Tu môžete vidieť rozdiely medzi vybranou verziou a aktuálnou verziou danej stránky.
Both sides previous revision Previous revision Next revision | Previous revision | ||
dev:omega:flash:ui:messagebox [2014/12/05 14:44] Roman Sališ [Table] |
dev:omega:flash:ui:messagebox [2017/10/12 16:43] (aktuálne) Roman Sališ [Vlastné tlačítka] |
||
---|---|---|---|
Riadok 618: | Riadok 618: | ||
callId: "opt2", | callId: "opt2", | ||
label: "Option2", | label: "Option2", | ||
- | key: ["2", Key.ENTER] | + | key: ["2", Key.ENTER], |
- | } | + | callback: [this, "callbackFnc"] |
+ | } | ||
], | ], | ||
- | showBottomLine: true | + | bottomLine: true |
}); | }); | ||
</code> | </code> | ||
Riadok 633: | Riadok 634: | ||
_UI.messageBox({ | _UI.messageBox({ | ||
label: "Naozaj chcete pokračovať?", | label: "Naozaj chcete pokračovať?", | ||
+ | template: _UI.MESSAGE_BOX_YES_NO, | ||
checkbox: { | checkbox: { | ||
label: "Aj nabudúce...", | label: "Aj nabudúce...", | ||
state: true | state: true | ||
}, | }, | ||
- | showBottomLine: true | + | bottomLine: true |
}); | }); | ||
</code> | </code> | ||
Riadok 649: | Riadok 651: | ||
<code actionscript callbackNormal.as space=2> | <code actionscript callbackNormal.as space=2> | ||
_UI.messageBox({ | _UI.messageBox({ | ||
+ | template: _UI.MESSAGE_BOX_YES_NO, | ||
label: "Naozaj chcete pokračovať?", | label: "Naozaj chcete pokračovať?", | ||
- | showBottomLine: true, | + | bottomLine: true, |
callback: [this, "callbackFnc1", "ARG1"] | callback: [this, "callbackFnc1", "ARG1"] | ||
}); | }); | ||
Riadok 663: | Riadok 666: | ||
<code actionscript callbackEvent.as space=2> | <code actionscript callbackEvent.as space=2> | ||
_UI.messageBox({ | _UI.messageBox({ | ||
+ | template: _UI.MESSAGE_BOX_YES_NO, | ||
label: "Naozaj chcete pokračovať?", | label: "Naozaj chcete pokračovať?", | ||
- | showBottomLine: true, | + | bottomLine: true, |
response: _UI.MESSAGE_BOX_RESPONSE_EVENT, | response: _UI.MESSAGE_BOX_RESPONSE_EVENT, | ||
[this, "callbackFnc2", "ARG1"] | [this, "callbackFnc2", "ARG1"] | ||
Riadok 680: | Riadok 684: | ||
<code actionscript callbackEvent.as space=2> | <code actionscript callbackEvent.as space=2> | ||
_UI.messageBox({ | _UI.messageBox({ | ||
+ | template: _UI.MESSAGE_BOX_YES_NO, | ||
label: "Naozaj chcete pokračovať?", | label: "Naozaj chcete pokračovať?", | ||
- | showBottomLine: true, | + | bottomLine: true, |
response: _UI.MESSAGE_BOX_RESPONSE_EVENT, | response: _UI.MESSAGE_BOX_RESPONSE_EVENT, | ||
callback: [this, "callbackFnc2", "ARG1"], | callback: [this, "callbackFnc2", "ARG1"], |