Difference between revisions of "MultiUser Dialog Handler"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with 'I found that i was constantly rewriting a pile of dialog handling functions in my scrips so i decided to write a single dialog handler script. It needed to have the following fea...')
 
Line 1: Line 1:
==Introduction==
I found that i was constantly rewriting a pile of dialog handling functions in my scrips so i decided to write a single dialog handler script. It needed to have the following features;
I found that i was constantly rewriting a pile of dialog handling functions in my scrips so i decided to write a single dialog handler script. It needed to have the following features;


Line 4: Line 6:
* Handle item lists > 12 and automatically insert << and  >> buttons to scroll through the lists
* Handle item lists > 12 and automatically insert << and  >> buttons to scroll through the lists
* Allow for fixed buttons that will persist on lists.
* Allow for fixed buttons that will persist on lists.
==Using The Script==
==The Script==
<lsl>
</lsl>
==See also==
*[[ Script_Library | Script Library ]]

Revision as of 19:58, 31 August 2010

Introduction

I found that i was constantly rewriting a pile of dialog handling functions in my scrips so i decided to write a single dialog handler script. It needed to have the following features;

  • Support multiple simultaneous menus from different users
  • Handle item lists > 12 and automatically insert << and >> buttons to scroll through the lists
  • Allow for fixed buttons that will persist on lists.

Using The Script

The Script

<lsl>

</lsl>

See also