Hi! I am working with APL and I need to view a photo and after 5 seconds launch a userevent. I've tried this but it doesn't work for me.
{
"type": "APL",
"version": "1.4",
"import": [
{
"name": "alexa-layouts",
"version": "1.2.0"
}
],
"mainTemplate": {
"parameters": [
"payload"
],
"items": [
{
"type": "Image",
"source": "https://example.com/1.jpg",
"scale": "fill",
"width": 300,
"height": 300
}
],
"onMount": {
"type": "SendEvent",
"parameters": ["aaaa"]
"delay": 5000
}
}
}
Any idea?
Thanks in advanced.