Custom Tabs
Link to Custom Tabs
Utilise Custom Tabs for Android in your GameMaker games!
Installation
- If you have an older version of Custom Tabs installed in GM, delete the Custom Tabs folder in the IDE
- Download the latest YYMPS file from Releases
- Drag it into the IDE
- Import at least
ext_custom_tabs
andscr_custom_tabs
Basic Usage
To open a website showing a wonderful list of open source tools in your mobile game
custom_tab_open("https://gamemakerkitchen.com");
Advanced usage
To show the page URL rather than the title, enable the share button, and hide the URL bar on scroll
var opt = custom_tab_options().show_title(false).share_enabled(true).url_bar_hiding_enabled(true);
custom_tab_open("https://gamemaker.io",opt);
https://github.com/Sidorakh/custom-tabs