View Single Post
02-25-24, 02:12 AM   #43
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,894
Both

Lua Code:
  1. local f = CreateFrame("Frame", "Addon_1_Name_Frame", UIParent, "BasicFrameTemplateWithInset")

Lua Code:
  1. local f = CreateFrame("Frame", "Addon_2_Name_Frame", UIParent, "BasicFrameTemplateWithInset")

Probably not a lot of point changing the addon title language unless you are going to post it in language specific sites under different names. If you are just hosting it on WowInterace/Curse/Wago people will find it using the single addon name which would be the same in any language so may as well be the title.

To add a title, after:
Lua Code:
  1. local f = CreateFrame("Frame", "SimpleScrollFrameTableDemo", UIParent, "BasicFrameTemplateWithInset")

add:
Lua Code:
  1. f.Title = f:CreateFontstring(nil, "ARTWORK", "GameFontNormal")
  2. f.Title:SetPoint("TOP", 0, -4)
  3. f.Title:SetText("Your Addon Name")
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.
  Reply With Quote