Jump to content

Media controls


TonyBowlin
 Share

You are about to reply to a thread that has been inactive for 2149 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

a small example...


integer face = 2;
string url = "https://www.youtube.com/watch?v=d8Lq4w7SzPo";
default
{
    state_entry()
    {
       llSetLinkMedia( LINK_THIS, face, 
        [ PRIM_MEDIA_CURRENT_URL ,url,
          PRIM_MEDIA_AUTO_SCALE,TRUE,
          PRIM_MEDIA_PERMS_INTERACT,0x1, // owner only
          PRIM_MEDIA_PERMS_CONTROL,0x1,  // owner only  
          PRIM_MEDIA_AUTO_PLAY,TRUE
        ] );
    }
}

 

  • Thanks 1
Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 2149 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...