+1
CAPS Apps help
Talking to Adam last nite about a problem we are having with the innovation celebration app. For the Bios of the candidates, he thought a text template would be the way to go. He said you could give us an example. Also in another app we are doing game play where the student goes through a pager and clicks whether a contestant lived or died in the Quantrills raid. Could you give me an example of how wire can determine which page of the pager we are on to give the appropriate alert (ie Good Job! for correct and Better Luck on the next one! for incorrect.) Thanks
Kundesupport af UserEcho
As for a pager, you can use an object property called 'page' to determine the page of the pager you are currently on. So if your pager is set to paginate, then you can run an action that has a series of if statements which say:
<action name="click-yes">
<if lhs="[object:PAGERALIAS.page]" operator="eq" rhs="1">
<alert message="Good Job">
</if>
<if lhs="[object:PAGERALIAS.page]" operator="eq" rhs="2">
<alert message="Bad Choice">
</if>
</action>
<action name="click-no">
<if lhs="[object:PAGERALIAS.page]" operator="eq" rhs="1">
<alert message="Bad Choice">
</if>
<if lhs="[object:PAGERALIAS.page]" operator="eq" rhs="2">
<alert message="Good Job">
</if>
</action>