To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=109584
                 Issue #|109584
                 Summary|Full-screen presentation triggered via API doesn't wor
                        |k 
               Component|Presentation
                 Version|OOo 3.2
                Platform|Macintosh
                     URL|
              OS/Version|Mac OS X, all
                  Status|NEW
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|DEFECT
                Priority|P3
            Subcomponent|programming
             Assigned to|graphicsneedsconfirm
             Reported by|tra





------- Additional comments from t...@openoffice.org Wed Feb 24 20:16:35 +0000 
2010 -------
On Mac OS X (Snow Leopard, 10.6.2) I cannot correctly start a presentation in 
full-screen mode via API 
when using OOo 3.2/SDK 3.2. All I get is a white full-screen window with 
scrollbars at the right and at 
the bottom. I have to click into this window first to actually start the 
presentation. Everything works fine 
though when I start a presentation in window-only mode via API or generally 
when a full-screen 
presentation is started manually from with Impress. 

To reproduce this problem you can for instance simply take the OOo SDK example 
'DocumentLoader' 
from the cpp examples and slightly modify it. Load an impress presentation and 
try to start it via API. I 
have tried it both ways using 'XPresentation->start()' or 
'XPresentation2->startWithArguments(...)' 
using several different combination of arguments e.g.:
...
Sequence<PropertyValue> presProps(2);
    
PropertyValue p1;
p1.Name = OUString::createFromAscii("IsFullScreen");
p1.Value <<= false;
    
PropertyValue p2;
p2.Name = OUString::createFromAscii("IsAlwaysOnTop");
p2.Value <<= true;
    
presProps[0] = p1;
presProps[1] = p2;
    
//xPresentation->start();
xPresentation2->startWithArguments(presProps);

Neither way worked correctly.

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to