View Single Post
06/24/17, 03:01 PM   #5
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
Perhaps try to change the relative anchor point of your control:

Code:
relativeTo="ZO_GuildHome"
or
Code:
relativeTo="ZO_GuildSharedInfo"
You can check the guild home files inside the esoui source code (download here http://www.esoui.com/downloads/info1...ourcecode.html
and extract, then look into the folders "esoui/ingame/guild").

Inside the keyboard subfolder you'll find the file guildhome_keyboard.xml and .lua including some control names where you could anchor to or set the parent of your control by the help of lua commands:

Lua Code:
  1. yourControl:SetParent(parentControlName)
  Reply With Quote