Advertisement
worstbull

llSetLinkMedia

Sep 30th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. setPrimURL(integer iLink, integer iFace, string sURL)
  2. {
  3.         llSetLinkMedia(iLink, iFace,
  4.             [PRIM_MEDIA_AUTO_PLAY, TRUE,
  5.              PRIM_MEDIA_CURRENT_URL, sURL,
  6.              PRIM_MEDIA_HOME_URL, sURL,
  7.              PRIM_MEDIA_AUTO_SCALE, TRUE]);
  8. }
  9. default
  10. {
  11.     state_entry()
  12.     {
  13.         setPrimURL(1, 0, "http://google.com");
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement