View Single Post
05/11/14, 02:17 PM   #44
Klingo
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 16
Originally Posted by Shinni View Post
Lua Code:
  1. local b = WINDOW_MANAGER:CreateControlFromVirtual("asd", GuiRoot, "ZO_StatsDropdownRow")
  2. local a = WINDOW_MANAGER:CreateControl("asd2", GuiRoot, CT_CONTROL )
  3. b:SetHandler("OnUpdate", function(...) d(123) end )
  4. a:SetHandler("OnUpdate", function(...) d(456) end )
hmm the control from CreateControlFromVirtual works, but the other one doesn't...
Is there a difference between CreateControl and CreateControlFromVirtual?
  Reply With Quote