@orochi2k @Soulrender
RMMV and RMMZ create HTML5-based games that always run in a browser (the exe is nothing but a browser-variant for directly accessing the base index.html) and as such always have direct web access.
@decinbr
you basically have two problems when showing pictures and text inside a MV/MZ game.
1) you need a direct link to what you want to show, and most of the free websites around try to redirect such links whenever you try to give them.
That is because such links would circumvent the ads they want you to show to pay for their service, and whenever a link is redirected to show their site including their ads it would break the game framework.
2) you need a frame inside the game to have a place where to show the content you want to display, because otherwise the link would have no space and not be visible.
the first problem has two possible fixes: either find a hosting site that allows deep linking, or pay for the webhosting - that would also have the advantage of giving you a site to host your own game at your own adress. I've been paying 10€ per month for a package of ten websites with unlimited traffic and gigabytes of upload space, and I have never had problems linking to any of my files.
the second problem either needs a plugin to create a new screen for "news" and link it to the menu or the title, or you have to use an event with a javascript command to open a new webadress in a new browser window. Which is something that javascript had been written to do, I just don't have the time to look for the required javascript commands.