Forum: Lua/XML Help
Yesterday, 01:57 PM
|
Replies: 11
Views: 403
|
Forum: Lua/XML Help
Yesterday, 01:47 PM
|
Replies: 11
Views: 3,193
|
Forum: Lua/XML Help
04-11-21, 03:12 PM
|
Replies: 11
Views: 403
What you suggest is a good way to check if an...
What you suggest is a good way to check if an event exists! Do you think it is more efficient than my solution:
if not APIDocumentation then
LoadAddOn("Blizzard_APIDocumentation");
end
local...
|
Forum: Lua/XML Help
04-10-21, 05:40 AM
|
Replies: 11
Views: 403
|
Forum: Lua/XML Help
04-10-21, 03:49 AM
|
Replies: 11
Views: 403
I found a way to get a list of all events:
if...
I found a way to get a list of all events:
if not APIDocumentation then
LoadAddOn("Blizzard_APIDocumentation");
end
local allEvents = APIDocumentation:GetAPITableByTypeName("event")
for k, v in...
|
Forum: Lua/XML Help
04-10-21, 03:14 AM
|
Replies: 11
Views: 403
|
Forum: Lua/XML Help
04-09-21, 05:19 PM
|
Replies: 11
Views: 403
|
Forum: Lua/XML Help
04-08-21, 02:00 PM
|
Replies: 11
Views: 403
|
Forum: Lua/XML Help
04-07-21, 12:58 AM
|
Replies: 6
Views: 231
Right, I ended up doing it like this:
local...
Right, I ended up doing it like this:
local scrollBoxWidth = 400
local scrollBoxHeight = 120
local outerFrame = CreateFrame("Frame")
outerFrame:SetSize(scrollBoxWidth + 80, scrollBoxHeight +...
|
Forum: Lua/XML Help
04-07-21, 12:41 AM
|
Replies: 6
Views: 231
Thanks for the quick reply! So simple.
But...
Thanks for the quick reply! So simple.
But apparently due to the nature of UIPanelScrollFrameTemplate this does not include the scroll bar in the box and the box is also a few pixels to small. So I...
|
Forum: Lua/XML Help
04-07-21, 12:33 AM
|
Replies: 6
Views: 231
|
Forum: Lua/XML Help
04-06-21, 04:47 PM
|
Replies: 6
Views: 231
insertedFrame for StaticPopup_Show() not working
I want to display some easy-to-copy text in a popup dialog.
So I thought StaticPopup_Show() (https://wowpedia.fandom.com/wiki/API_StaticPopup_Show) with an edit box as the 'insertedFrame' argument...
|
Forum: General Authoring Discussion
03-13-21, 03:55 PM
|
Replies: 6
Views: 8,060
|
Forum: Lua/XML Help
03-09-21, 07:40 AM
|
Replies: 3
Views: 472
|
Forum: Lua/XML Help
03-09-21, 03:39 AM
|
Replies: 3
Views: 472
Show Party/Raid frame without being in party?
For testing purposes I need the CompactRaidFrameManager or PartyMemberFrame{1,...,4} with at least some party members. Is there a way to achieve this without actually being in a party or raid?
It...
|
Forum: Lua/XML Help
02-09-21, 05:41 PM
|
Replies: 2
Views: 394
|
Forum: Lua/XML Help
02-09-21, 05:03 PM
|
Replies: 2
Views: 394
GetIgnoreParentAlpha() ??
There is SetIgnoreParentAlpha() (https://wow.gamepedia.com/API_Region_SetIgnoreParentAlpha), but is there a way to check whether a region is currently ignoring its parent alpha or not? Or do I have...
|
Forum: General Authoring Discussion
01-20-21, 02:54 AM
|
Replies: 12
Views: 1,283
|
Forum: General Authoring Discussion
01-19-21, 06:22 PM
|
Replies: 12
Views: 1,283
I'm not sure, if this works:
function...
I'm not sure, if this works:
function EZTest_Config.DismountCheck.setFunc(state)
EZTestData.Config_Dismount = state
lib.ApplyLayout()
end
Try this and put a print in there to see if anything is...
|
Forum: Classic - AddOn Help/Support
01-19-21, 06:16 PM
|
Replies: 5
Views: 782
Instead of
local...
Instead of
local BlizzardGameTooltipOnUpdateRetention = GameTooltip.OnUpdate
you would have to do
local BlizzardGameTooltipOnUpdateRetention = GameTooltip:GetScript("OnUpdate")
But what you are...
|
Forum: General Authoring Discussion
01-19-21, 02:59 PM
|
Replies: 12
Views: 1,283
|
Forum: General Authoring Discussion
01-19-21, 06:59 AM
|
Replies: 12
Views: 1,283
|
Forum: General Authoring Discussion
01-19-21, 05:01 AM
|
Replies: 12
Views: 1,283
Hello and welcome!
Could you wrap your code in...
Hello and welcome!
Could you wrap your code in the [ CODE ] or [ highlight="Lua"] tags? (The Buttons above your advanced editing text box.) This makes reading much easier.
Also, I have not fully...
|
Forum: Classic - AddOn Help/Support
01-19-21, 04:51 AM
|
Replies: 5
Views: 782
|
Forum: Lua/XML Help
01-19-21, 04:46 AM
|
Replies: 0
Views: 551
|