View Single Post
  #2  
Old 05-27-2013, 12:40 PM
Tabasco's Avatar
Tabasco
Discordant
 
Join Date: Sep 2009
Posts: 269
Default

I think this only works in UF and newer clients, but the SendWebLink member of client is what you're looking for.

I do quite a bit with the in-game browser, but in its simplest form I have this wrapper in a plugin.

Code:
sub OpenURL
{
    my $url = shift;
    my $client = plugin::val('client');

    $client->SendWebLink($url);
}
__________________
http://dungeoncrawl.us.to
Reply With Quote