View Single Post
  #2  
Unread 03-01-2010, 01:23 PM
Landiin Landiin is offline
Slayer of clock cycles
This person is a EQ2Map developer.
Featured
 
Join Date: Nov 2004
Server: Oasis
Posts: 3,464
Default

The way you have it, every time you select an item it will try to use ability 1634378213 if you had the syntax correct.

First you never us the / for commands in the script. OnSelect="useability 1634378213" is the correct way.

Here is the way I would do what ur wanting to do..
Code:
<DataSource Name="blah">
<Data Text="Text Displayed in the drop down"/>
<Data Text="Text Displayed in the drop down" id="1634378213"/>
<Data Text="Text Displayed in the drop down" id="1634378214"/>
</DataSource>

<DropDownBox OnSelect="useability SelectedItem.id
SelectedItemIndex=0"/>
__________________
Landiin's EQ2MAP Updater Discussion Download

Last edited by Landiin : 03-01-2010 at 01:26 PM.
Reply With Quote