Hey,
i have a working template with three Items and AutoPage. In the simulator within developer console or authoring tool, there is a nice transition between pages. Pages are sliding in from the right while fading.
return handlerInput.responseBuilder .speak(speechText) .addDirective({ type: "Alexa.Presentation.APL.RenderDocument", token: "dialogManagementPagerDoc", version: "1.0", document: require("./welcome.json"), datasources: { welcome: { version: version, welcome: speechText } } }) .addDirective({ type: "Alexa.Presentation.APL.ExecuteCommands", token: "dialogManagementPagerDoc", commands: [ { type: "AutoPage", componentId: "pagerComponent", delay: 1000, duration: 5000 } ] });
On the Echo 5, there is no movement, no fading. Pages are just switching without any kind of effect. Do I need extra Code when not in the simulator, or isn't that supported right now?
I'am wondering because Amazon's build-in skills like the weather or welcome screen do have those animations.
Do I miss something or is there maybe a bug?