Page 1 of 1

Increase size window

Posted: Sun Jun 25, 2023 1:38 pm
by plvicente
Hello,
My name is Pedro. I am coding an iOS spiderbasic application. But I can't increase openwindow size for the full browser. I am trying to code a preview before testing on my iPad.

My openwindow code is:
If OpenWindow(0, 100, 150, 195, 260, "Menu", #PB_Window_TitleBar)

CreateImage(0, 16, 16, 32, RGB(255, 0, 0))


I cannot see where I must change. I can do icon on the page. Even I can do the menus besides the sub menu.

Kind Regards,
Pedro Dias Vicente

Re: Increase size window

Posted: Sun Jun 25, 2023 11:16 pm
by Paul
Did you maybe try the #PB_Window_Background flag to fill the entire window?

Code: Select all

OpenWindow(0,0,0,0,0,"Menu",#PB_Window_Background)

Re: Increase size window

Posted: Tue Jun 27, 2023 7:32 am
by plvicente
Hi,
I didn't done that. I didn't knew that trick. I am going to test it.

Thanks

Re: Increase size window

Posted: Tue Jun 27, 2023 8:37 am
by plvicente
it worked.

Thaks a lot.