Hi All
Having an issue with the Web Browser Box function in jsl. Take this simple code below:
New Window("Web Page Test",
Web Browser Box("https://www.google.com/")
);
When I run this I get this extremely small window where I have scroll bars to navigate around the web page open (even if I resize the window the browser box remains the same size), is there a way to set the size of the web browser box to a parameter of my choosing?
Not sure what's going on there, I see it too. Try this:
x=New Window("Web Page Test",
Web Browser Box("https://www.google.com/")
);
x[webbrowserbox(1)]<<setsize(500,500);
Not sure what's going on there, I see it too. Try this:
x=New Window("Web Page Test",
Web Browser Box("https://www.google.com/")
);
x[webbrowserbox(1)]<<setsize(500,500);
Great that worked perfect