-
23 Apr 2012 10:24 AM #1
Video controls not working in Carousel
Video controls not working in Carousel
I am using a video on a sencha touch app. This video is within a Carousel. The video controls for pause and resume are not working there. Can you please suggest the right way to use a video within a Carousel .
Code:Ext.define('SP.view.MainStage',{ extend:'Ext.Carousel', fullscreen: true, xtype:'myPanel', config:{ title: 'My Title', iconCls: 'home', items: [ { xtype:'video', // Video starts but unable to stop or pause or move to any position url : "myvideo1.mp4", posterUrl: 'myimage.png' } , { html: 'Hello World' // I can easily swipe the Carousel } ] } });
-
24 Apr 2012 1:28 PM #2
{
xtype:'video', // Video starts but unable to stop or pause or move to any position
url : "myvideo1.mp4",
autoResume:true,
autoPause:true,
posterUrl: 'myimage.png'
} ,
Maybe this modification will help you because i have same structure in my project and i can play,stop and resume with no problem in carousel.
-
26 Nov 2012 10:45 AM #3
Re
Re
Have you an complete example ?
I habe a panel, and i will on top, the video, and under them a carousel. But dont work


Reply With Quote