Thread Tools Display Modes
Prev Previous Post   Next Post Next
07/05/15, 04:04 PM   #1
Glen348
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 11
activate mouse cursor after dialog prompt?

how can i get the dialog window to activate the mouse cursor after confirming delete?
Lua Code:
  1. local confirmDeleteDialog = {
  2.     title = { text = GetString(SI_B1UI_DELETEBUTTON_TITLE)},
  3.     mainText = { text = GetString(SI_B1UI_DELETEBUTTON_MAINTEXT)},
  4.     buttons = {
  5.             [1]={
  6.                 text = GetString(SI_B1UI_YES_LABEL),
  7.                 callback = function()
  8.                     B1UI.DeletePage()
  9.                 end,
  10.                 },
  11.             [2]={
  12.                 text = GetString(SI_B1UI_NO_LABEL)
  13.                 }
  14.             }
  15. }
  Reply With Quote
 

ESOUI » AddOns » AddOn Help/Support » activate mouse cursor after dialog prompt?


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off