View Single Post
04/23/14, 01:09 PM   #4
Seerah
Fishing Trainer
 
Seerah's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 648
Lua Code:
  1. dropmenu:ClearItems()

and then add new ones again to it using
Lua Code:
  1. for i=1,#tableOfChoices do
  2.     local entry = dropmenu:CreateItemEntry(tableOfChoices[i], callbackFunc)
  3.     dropmenu:AddItem(entry)
  4. end
  Reply With Quote