Forum: Lua/XML Help
Today, 05:11 PM
|
Replies: 4
Views: 81
The third parameter of...
The third parameter of FauxScrollFrame_OnVerticalScroll should be the height of the individual "rows" in your list. In this case ( the height of the T section in your image),...
|
Forum: Lua/XML Help
08-11-22, 02:45 PM
|
Replies: 2
Views: 231
|
Forum: AddOn Search/Requests
07-26-22, 10:27 AM
|
Replies: 6
Views: 550
|
Forum: AddOn Help/Support
07-25-22, 09:24 PM
|
Replies: 3
Views: 380
If you have an OnLoad you can set the backdrop...
If you have an OnLoad you can set the backdrop there:
<Ui xmlns="http://www.blizzard.com/wow/ui/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Frame name="BCHFrame" parent="UIParent" ...
|
Forum: AddOn Search/Requests
07-25-22, 10:17 AM
|
Replies: 6
Views: 550
You could do something like:
local function...
You could do something like:
local function SizeName(self)
local font, size = self.name:GetFont()
self.name:SetFont(font, size-2)
end
SizeName(PlayerFrame)
SizeName(TargetFrame)
for i=1, 4...
|
Forum: Lua/XML Help
07-14-22, 04:12 PM
|
Replies: 1
Views: 367
|
Forum: Lua/XML Help
07-07-22, 12:43 PM
|
Replies: 5
Views: 644
|
Forum: Lua/XML Help
07-07-22, 12:16 PM
|
Replies: 5
Views: 644
ItemTable = {
{
["ItemName"] = "Edgewalker...
ItemTable = {
{
["ItemName"] = "Edgewalker Longboots",
["ItemID"] = 28545,
["ItemLink"] = "|cffa335ee|Hitem:28545:2657:24028:24061:::::70:::::::::|h[Edgewalker Longboots]|h|r",
}, --...
|
Forum: AddOn Search/Requests
07-06-22, 04:35 PM
|
Replies: 4
Views: 414
|
Forum: AddOn Search/Requests
07-06-22, 10:08 AM
|
Replies: 4
Views: 414
|
Forum: Lua/XML Help
07-03-22, 08:04 PM
|
Replies: 4
Views: 334
|
Forum: Lua/XML Help
07-03-22, 06:14 PM
|
Replies: 4
Views: 334
The system returns the event when the thing...
The system returns the event when the thing happens. You've unregisterd and re-registered the event in a single process and requested x things to happen in between.
It's still processing equipment...
|
Forum: Graphics Help
06-29-22, 11:10 AM
|
Replies: 2
Views: 411
|
Forum: Tutorials & Other Helpful Info.
06-20-22, 08:37 PM
|
Replies: 8
Views: 648
|
Forum: AddOn Help/Support
06-07-22, 06:32 PM
|
Replies: 1
Views: 483
This in an addon that loads with the...
This in an addon that loads with the Blizzard_TradeSkillUI will add the recipe ID to the text.
You can use that (or whatever you need) to do your calculation and add that text instead. The Count...
|
Forum: AddOn Search/Requests
06-03-22, 11:06 AM
|
Replies: 8
Views: 911
|
Forum: AddOn Search/Requests
06-01-22, 08:19 PM
|
Replies: 8
Views: 911
|
Forum: AddOn Search/Requests
05-31-22, 12:21 PM
|
Replies: 8
Views: 911
You can't get this information for other...
You can't get this information for other characters, just the one currently logged on.
It requires a bunch of code to save data as each character logs on/off or has their bank balance updated. It...
|
Forum: AddOn Search/Requests
05-27-22, 04:04 PM
|
Replies: 8
Views: 911
You can't "programatically" send text to the...
You can't "programatically" send text to the clipboard. You need the frame to display the text that you then select and CTRL-C to get it onto the clipboard.
You can create a frame with an EditBox...
|
Forum: Lua/XML Help
05-26-22, 09:43 AM
|
Replies: 7
Views: 526
Kanegasi mentioned that PutItemInBag requires a...
Kanegasi mentioned that PutItemInBag requires a bag id. (InventorySlotId) not a bag number and these start at 20 (bag 1+19 = 20).
Using the table keeps track of where you put the last item instead...
|
Forum: Lua/XML Help
05-24-22, 11:25 PM
|
Replies: 7
Views: 526
|
Forum: Lua/XML Help
05-14-22, 11:44 AM
|
Replies: 3
Views: 631
The problem being the dropdown menu is a common...
The problem being the dropdown menu is a common widget that gets updated depending on the initialise function.
This should work but because it's hooking the dropdown menus OnHide you never know what...
|
Forum: Lua/XML Help
05-08-22, 11:49 AM
|
Replies: 9
Views: 679
|
Forum: Lua/XML Help
05-08-22, 08:58 AM
|
Replies: 9
Views: 679
First install seemed to work. GUI popped up,...
First install seemed to work. GUI popped up, PrintCommands() ran, slash command worked, events were processed and in expected order.
Worked just the same after exiting and deleting the SV file.
And...
|
Forum: Lua/XML Help
05-08-22, 12:22 AM
|
Replies: 9
Views: 679
On the face of it it looks like it should work...
On the face of it it looks like it should work but what's here obviously isn't the entire addon.
If you cut the addon down (create a test addon) to just this code and it works then the problem is...
|