default { state_entry() { string CommandList = ""; string Creator = llGetObjectDesc(); CommandList = osMovePen( CommandList, 75, 100 ); CommandList += "FontSize 36;"; CommandList = osDrawText( CommandList, Creator ); // Place some text CommandList = osSetPenSize( CommandList, 22 ); CommandList = osDrawLine( CommandList, 10, 10, 10, 255 ); CommandList = osDrawLine( CommandList, 502, 0, 502, 255 ); // Now draw the image osSetDynamicTextureDataBlendFace("", "vector", CommandList, "width:512,height:256", FALSE, 2, 0, 255, 0); } }