Le 05/08/2015 23:30, Jigyasa Grover a écrit : > Hi ! > I am using *WidgetExamples exampleBuilder* to make an accordion > widget. I open a model *newPluggableWindow* in it, and would like it > to be a fullscreen entity. > I have tried all the methods, *#fullscreen *and *#extent* but in vain. > It would be great if anyone could help.
Hello, I only reply to pharo.user group, no need to cross post to pharo.dev. May be dialog are constrained to not be fullscreen, not sure. What you could try, is debug your code when requesting fullscreen on your dialog: In a workspace, (or from an inspector on your dialog): myDialog fullscreen (or self fullscren from an inspector), then select and debut with Alt+shift+d (on linux) But I just tested these in a workspace: "Does not open fullscreen" d := ExampleBuilderMorph new newPluggableDialogWindow. d fullscreen. d openInWorld. "Works, set to fullscreen" d := ExampleBuilderMorph new newPluggableDialogWindow. d openInWorld. d fullscreen. Looks like, the dialog has to be open first in the World then notified for fullscreen. Hilaire -- Dr. Geo http://drgeo.eu http://google.com/+DrgeoEu