Trigger to open a web page?

● ARCHIVED · READ-ONLY
Started by motorcookie 3 posts View original ↗
  1.  I've been searching around for something like this.

    Is there any script that when placed as a trigger and walked into, will open an external web page in the user's browser?

    For example, a tigger is placed at the entrance of a house. The player walks up to the entrance and into the trigger. The trigger is activated and the player's web browser opens up into a web page.

    Using vx ace

    :)
  2. The easy, but a bit dirty way is (using the Script event command):

    url='http://forums.rpgmakerweb.com/index.php?/topic/34015-trigger-to-open-a-web-page/'system(%Q{start "" "#{url}"})The URL is between two apostrophes, so make sure you don't delete them (otherwise you probably get a syntax or some other kind of error).
  3. Thank you very much! Exactly what I was looking for :)