Difference between revisions of "MultiUser Dialog Handler"

From Second Life Wiki
Jump to navigation Jump to search
Line 3: Line 3:
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;


* Support multiple simultaneous menus from different users
* Support multiple simultaneous menus from different users.
* Handle item lists > 12 and automatically insert << and  >> buttons to scroll through the lists
* Support fixed top buttons that will persist on lists.
* Allow for fixed buttons that will persist on lists.
* Support fixed bottom buttons with include Back and Exit buttons.
* Handle item lists > 12 and automatically insert << and  >> buttons to scroll through the lists.
* Handle timeouts and communicate timeout back to calling script.


==Using The Script==
==Using The Script==

Revision as of 20:05, 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.
  • Support fixed top buttons that will persist on lists.
  • Support fixed bottom buttons with include Back and Exit buttons.
  • Handle item lists > 12 and automatically insert << and >> buttons to scroll through the lists.
  • Handle timeouts and communicate timeout back to calling script.

Using The Script

The Script

<lsl>

</lsl>

See also