hi everyone,
i am trying to install a power point presentation in SL, using this description http://oreilly.com/pub/h/5239
I used this description some months ago and it worked...
But when I compile the code now, the following error message appears: "ERROR - Name not defined within scope"
What does it mean and how can i solve the problem? I am using version 1.20.15 (92456)
integer invCount;
integer invLoopCount;
default
{
state_entry()
{
invCount = llGetventoryNumber(INVENTORY_TEXTURE);
}
touch_start(integer total_number)
{
llSetTexture(llGetventoryName(INVENTORY_TEXTURE, invLoopCount), ALL_SIDES);
invLoopCount++;
if (invLoopCount == invCount)
{
invLoopCount = 0;
}
}
}
it works now...