Thread Tools Display Modes
06-23-17, 07:19 PM   #1
Lej
A Defias Bandit
Join Date: Apr 2006
Posts: 2
AceGUI-3.0: Invisible text in MultiLineEditBox

I'm trying to dump lots of text to a MultiLineEditBox.

The textbox is created using:

Lua Code:
  1. function AceDebugger:CreateGui()
  2.  
  3.     local frame = AceGUI:Create("Frame")
  4.     frame:Hide()
  5.     frame:SetTitle("AceDebugger")
  6.     frame:SetLayout("Fill")
  7.     frame.statustext:Hide()
  8.     frame.statustext:GetParent():Hide()
  9.  
  10.     local editbox = AceGUI:Create("MultiLineEditBox")
  11.     editbox.editBox:SetMaxBytes(0)
  12.     editbox:SetMaxLetters(0)
  13.     editbox:SetLabel("")
  14.     editbox:DisableButton(true)
  15.  
  16.     frame:AddChild(editbox)
  17.     frame.editbox = editbox
  18.  
  19.     return frame
  20. end

However for some reason only part of the text is visible:



Any ideas why?
  Reply With Quote

WoWInterface » Developer Discussions » Lua/XML Help » AceGUI-3.0: Invisible text in MultiLineEditBox


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off