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 [2015/08/15 08:27] Roman Sališ [Vlastné tlačítka] |
dev:omega:flash:ui:messagebox [2017/10/12 16:43] (aktuálne) Roman Sališ [Vlastné tlačítka] |
||
---|---|---|---|
Riadok 620: | Riadok 620: | ||
key: ["2", Key.ENTER], | key: ["2", Key.ENTER], | ||
callback: [this, "callbackFnc"] | callback: [this, "callbackFnc"] | ||
- | } | + | } |
], | ], | ||
- | showBottomLine: true | + | bottomLine: true |
}); | }); | ||
</code> | </code> | ||
Riadok 634: | 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 650: | 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 664: | 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 681: | 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"], |