View Single Post
07/06/15, 04:56 PM   #3
Glen348
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 11
Originally Posted by circonian View Post
I think this is what you mean? Use:
Lua Code:
  1. SetGameCameraUIMode(true)

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.                     SetGameCameraUIMode(true)
  10.                 end,
  11.                 },
  12.             [2]={
  13.                 text = GetString(SI_B1UI_NO_LABEL)
  14.                 }
  15.             }
  16. }

ive tried this and it does not seam to work

its my notebook addon if you want to help look over the full source.
  Reply With Quote