I've created a simple screen with a unique texture on it.
When I enter the texture and media link under the 'media'-tab in About Land I can play the movie using the little player buttons on the bottom of the screen. This works, I get image and sound.
When I however want to activate the movie through a simple script, nothing happens... The texture which needs to be replaced stays in place... no image nor sound will play...
I'm no script guru... so maybe something is wrong here
the script used:
-----------------------------------------------------------------------------------
string Texture = "playscreen";
string Url = "http://www.merge.nl/huijs/Sample.mov";
default
{
state_entry()
{
llParcelMediaCommandList( [PARCEL_MEDIA_COMMAND_STOP] );
llSleep(1);
llSay(0, "stopped"
;llParcelMediaCommandList( [PARCEL_MEDIA_COMMAND_UNLOAD] );
llSleep(1);
llSay(0, "unloaded"
;llParcelMediaCommandList( [PARCEL_MEDIA_COMMAND_TEXTURE,Texture] );
llSleep(1);
llSay(0, "loaded" + Texture);
llParcelMediaCommandList( [PARCEL_MEDIA_COMMAND_URL,Url] );
llSay(0, "loaded" + Url);
}
touch_start(integer total_number)
{
llParcelMediaCommandList( [PARCEL_MEDIA_COMMAND_PLAY] );
llSay(0, "Sarted playing"
;}
}
--------------------------------------------------------------------------------------------
