[XEngine] ....... ; Allow the use of os* functions (some are dangerous) AllowOSFunctions = true
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
'OpenSim/OSFunction/osSetDynamicTextureURL/' には、下位層のページがありません。
integer picindex=0; list urlarray = [] ; default { state_entry() { llSay( 0, "osSetDynamicTextureURL Tester"); urlarray += ["http://www.goes.noaa.gov/FULLDISK/GEVS.JPG"]; urlarray += ["http://www.goes.noaa.gov/FULLDISK/MTVS.JPG"]; urlarray += ["http://www.goes.noaa.gov/FULLDISK/GIVS.JPG"]; urlarray += ["http://www.goes.noaa.gov/FULLDISK/GMVS.JPG"]; urlarray += ["http://www.osei.noaa.gov/IOD/OSEIiod.jpg"]; urlarray += ["http://internettrafficreport.com/gifs/tr_map_global.gif"]; } touch_start(integer total_number) { string dynamicID=""; integer refreshRate = 600; string contentType="image"; picindex = (picindex+1) % urlarray.Length; string srcURL = llList2String(urlarray, picindex); // URL osSetDynamicTextureURL(dynamicID, contentType ,srcURL , "", refreshRate ); } }