View Single Post
02-16-18, 05:46 PM   #2
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
It looks like you used MoveAnything to move your Skada window, then uninstalled Skada or Skada changed. Now, MoveAnything is trying to mess with a frame that no longer exists or doesn't exist by that name.

With WoW not running (completely exit), open the file World of Warcraft\WTF\Account\<accountID>\SavedVariables\MoveAnything.lua in a text editor, search for SkadaBarWindowTotals, then delete that section. It will look similar to this:

MAKE A COPY OF THIS FILE BEFORE YOU EDIT IT

Lua Code:
  1. ["SkadaBarWindowTotals"] = {
  2.     ["orgScale"] = 1,
  3.     ["disableLayerBackground"] = true,
  4.     ["name"] = "SkadaBarWindowTotals",
  5.     ["orgPos"] = {
  6.         "BOTTOM", -- [1]
  7.         "UIParent", -- [2]
  8.         "BOTTOM", -- [3]
  9.         0, -- [4]
  10.         229.000015258789, -- [5]
  11.     },
  12.     ["scale"] = 0.699999988079071,
  13.     ["disableLayerArtwork"] = true,
  14.     ["disableLayerBorder"] = true,
  15.     ["pos"] = {
  16.         "TOP", -- [1]
  17.         "ExtraActionButton1", -- [2]
  18.         "BOTTOM", -- [3]
  19.         0, -- [4]
  20.         -24.9999923706055, -- [5]
  21.     },
  22. },

Delete just that section, from the top line in the example above to the }, right before the next named frame.

Last edited by Kanegasi : 02-16-18 at 05:49 PM.
  Reply With Quote