06-30-2003 18:29
I want little menus that pop up from objects like scroll-down menus! Maybe like this...

CODE

touch_start(integer n)
{
list options=["Option1","Option2","Cancel"];
menu(llDetecteKey(0), options);
}

menu_select(key user, integer choice)
{
if (choice==0)
{
// Do option 1
}
if (choice==1)
{
// Do option 2
}
}


Also, I wanna read a notecard without having to get it in my inventory. Even if it's greyed out, like when you look at a notecard THROUGH ANOTHER notecard.