Page 1 of 1

Open URL at end of game

Posted: Sat Sep 08, 2018 6:40 am
by poep
I can't seem to figure out how I can make the game open an URL at the end. No button or link, just opening the url in the player's browser.

Any help would be appreciated.

Re: Open URL at end of game

Posted: Sat Sep 08, 2018 9:03 am
by IrinaLazareva

Code: Select all

label start:
    'The end'
    $ renpy.run(OpenURL('http://www.renpy.org'))
    return
https://renpy.org/doc/html/screen_actions.html#OpenURL
https://renpy.org/doc/html/screen_python.html#renpy.run

Re: Open URL at end of game

Posted: Sat Sep 08, 2018 9:18 am
by Showsni
Why would you want to, though? I don't think I'd be happy about a game hijacking my browser to open pages without warning. It could take me to some virus laden page or anywhere.

Re: Open URL at end of game

Posted: Sat Sep 08, 2018 10:44 am
by poep
IrinaLazareva wrote:
Sat Sep 08, 2018 9:03 am

Code: Select all

label start:
    'The end'
    $ renpy.run(OpenURL('http://www.renpy.org'))
    return
https://renpy.org/doc/html/screen_actions.html#OpenURL
https://renpy.org/doc/html/screen_python.html#renpy.run
Thank you very much.