Create a custom browser to show external website (SOLVED)

Status
Not open for further replies.

mistake

New member
Hello, I would like just to open a web adress. The window should act as a browser, and only open the external url. But I would like to have custom menu items.

How to do that?
 
Last edited:
Create a simple PHP file:
Code:
<?php
header('Location: http://www.gdgsoft.com/');
?>
Start a new project, choose this PHP file as the index page and build the project.
Now when you start the application, you have a custom web browser that points to your own website.
 
Last edited:
Status
Not open for further replies.
Back
Top