1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
end
local iconData =
{
categoryFragment = HELP_CUSTOMER_SERVICE_OVERVIEW_KEYBOARD_FRAGMENT ,
up = "EsoUI/Art/Help/help_tabIcon_overview_up.dds" ,
down = "EsoUI/Art/Help/help_tabIcon_overview_down.dds" ,
over = "EsoUI/Art/Help/help_tabIcon_overview_over.dds" ,
}
self . helpQuestionAnswerContainer = control : GetNamedChild ( "DetailsContainerScrollChildQuestionAnswerContainer" )
end
local lastAnswer
for i = 1 , numQAs do
local question = CreateControlFromVirtual ( self . helpQuestionAnswerContainer : GetName ( ) .. "Question" .. i , self . helpQuestionAnswerContainer , "ZO_HelpOverview_Keyboard_Question" )
local answer = CreateControlFromVirtual ( self . helpQuestionAnswerContainer : GetName ( ) .. "Answer" .. i , self . helpQuestionAnswerContainer , "ZO_HelpOverview_Keyboard_Answer" )
if i == 1 then
else
end
lastAnswer = answer
end
end
--Global XML
end |