xibo-dotnetclient icon indicating copy to clipboard operation
xibo-dotnetclient copied to clipboard

2 R255.3 PowerPoint presentations don't start running

Open alexharrington opened this issue 3 years ago • 5 comments

PowerPoint presentations now load properly in 2 R255, but they don't play through the slides as expected.

If you manually start the presentation running, then the rest of the presentation runs respecting the timings in the slides, but something is preventing the first slide from advancing automatically.

OP: https://community.xibo.org.uk/t/powerpoint-slides-not-advancing/23539

alexharrington avatar Sep 17 '20 13:09 alexharrington

Strange - we are passing straight to IE as before. I wonder if something has changed now in IE to prevent this from working.

dasgarner avatar Sep 17 '20 16:09 dasgarner

This is reproducible in a very simple example WPF project with the following MainWindow:

namespace PowerPointViewer
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            WebBrowser browser = new WebBrowser();
            this.Scene.Children.Add(browser); // This is the name of the Grid in XAML
            //browser.Navigate(@"http://localhost:9696/2061.pps");
            browser.Navigate(@"C:\Users\Dan\Documents\Xibo Library\2061.pps");
            //browser.Navigate(@"C:\Users\Dan\Documents\Xibo Library\powerpoint.html"); // Serve via iframe
            //browser.Focusable = true;
            //browser.Focus();
        }
    }
}

Where the path is to any ppt/pps file. Initially I thought the ActiveX content was being blocked, but running it via a local browser should avoid that problem.

Opening up the same ppt/pps file in IE directly, and things work as they should.

dasgarner avatar Dec 16 '20 14:12 dasgarner

Bug is still there on version R305.1 with Microsoft Office 2016 and Windows 10 1809. If I open pptx in IE11 everything is working correctly, if I'm using Xibo player presentation refuses to advance until I manually start presentation

Dante4 avatar Sep 22 '22 22:09 Dante4