Forum: General WoW Chat
04-19-22, 05:08 PM
|
Replies: 2
Views: 529
|
Forum: Lua/XML Help
03-10-22, 08:37 AM
|
Replies: 5
Views: 394
|
Forum: Lua/XML Help
03-10-22, 07:34 AM
|
Replies: 5
Views: 394
|
Forum: AddOn Help/Support
03-09-22, 01:55 AM
|
Replies: 15
Views: 2,628
|
Forum: AddOn Search/Requests
12-15-21, 09:24 AM
|
Replies: 5
Views: 1,190
You can use /fstack to find out the names of...
You can use /fstack to find out the names of frames. When in the inspection mode, see what happens when you press shift, alt or ctrl while hovering with the cursor over frames. Thus you can find out...
|
Forum: Lua/XML Help
12-12-21, 05:37 PM
|
Replies: 3
Views: 814
GetAllCompletedQuestIDs() but for world quest?
GetAllCompletedQuestIDs() (https://wowpedia.fandom.com/wiki/API_C_QuestLog.GetAllCompletedQuestIDs) returns all completed quests but apparently no world quests.
Is there really no way to find out if...
|
Forum: AddOn Help/Support
08-28-21, 04:10 PM
|
Replies: 10
Views: 1,626
|
Forum: AddOn Help/Support
08-27-21, 01:36 PM
|
Replies: 10
Views: 1,626
|
Forum: Chit-Chat
08-24-21, 11:09 AM
|
Replies: 2
Views: 4,666
|
Forum: Macro Help
07-17-21, 01:47 PM
|
Replies: 2
Views: 1,662
|
Forum: Site help, bugs, suggestions/questions
06-07-21, 04:29 PM
|
Replies: 40
Views: 23,274
Experimenting with my packager I accidentally...
Experimenting with my packager I accidentally kept the "compatible" tag in an upload for https://www.wowinterface.com/downloads/info25216-SellPriceperunitClassic.html leading to the creation of the...
|
Forum: AddOn Help/Support
04-28-21, 05:04 PM
|
Replies: 6
Views: 2,284
|
Forum: AddOn Help/Support
04-28-21, 04:45 PM
|
Replies: 6
Views: 2,284
|
Forum: AddOn Help/Support
04-28-21, 12:59 PM
|
Replies: 6
Views: 2,284
local f =...
local f = CreateFrame("Frame")
f:SetScript("OnEvent", ToggleCalendar)
f:RegisterEvent("PLAYER_ENTERING_WORLD")
|
Forum: Lua/XML Help
04-14-21, 03:31 PM
|
Replies: 16
Views: 3,934
That's what I supposed, too. But the...
That's what I supposed, too. But the implementation of AceEvent-3.0.lua is really beyond me...
I cannot spot any point where it would seem to maintain such a table of registered events.
What really...
|
Forum: Lua/XML Help
04-14-21, 02:37 PM
|
Replies: 16
Views: 3,934
|
Forum: Lua/XML Help
04-12-21, 01:57 PM
|
Replies: 16
Views: 3,934
|
Forum: Lua/XML Help
04-12-21, 01:47 PM
|
Replies: 11
Views: 6,826
|
Forum: Lua/XML Help
04-11-21, 03:12 PM
|
Replies: 16
Views: 3,934
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: 16
Views: 3,934
|
Forum: Lua/XML Help
04-10-21, 03:49 AM
|
Replies: 16
Views: 3,934
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: 16
Views: 3,934
|
Forum: Lua/XML Help
04-09-21, 05:19 PM
|
Replies: 16
Views: 3,934
|
Forum: Lua/XML Help
04-08-21, 02:00 PM
|
Replies: 16
Views: 3,934
|
Forum: Lua/XML Help
04-07-21, 12:58 AM
|
Replies: 6
Views: 1,502
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 +...
|