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?
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?
Create a simple PHP file:
<?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.
This topic was automatically closed after 24 hours. New replies are no longer allowed.