Showing results 1 to 25 of 91
Search took 0.01 seconds.
Search: Posts Made By: Tuller
Forum: Tutorials & Other Helpful Info. 05-18-19, 05:48 PM
Replies: 15
Views: 33,973
Posted By Tuller
Would you mind generating a luacheck file from...

Would you mind generating a luacheck file from this?
Forum: Wish List 07-19-18, 05:46 AM
Replies: 0
Views: 4,537
Posted By Tuller
Cooldown:GetHideCooldownNumbers

Right now, there's not a way for me to easily determine if the attribute hideCooldownNumbers has been set to true on XML frames. A Cooldown:GetHideCooldownNumbers() method could help with that.
Forum: Wish List 09-02-16, 08:28 PM
Replies: 8
Views: 15,250
Posted By Tuller
I always waffle between writing my own, and using...

I always waffle between writing my own, and using AceEvent
Forum: Legion Beta archived threads 02-05-16, 05:04 PM
Replies: 35
Views: 21,637
Posted By Tuller
I feel like I'm going to like these: ...

I feel like I'm going to like these:

CreateFramePool
CreateFromMixins
CreateObjectPool
CreateTexturePool

FramePool_Hide
FramePool_HideAndClearAnchors
FramePoolMixin.Acquire
Forum: Lua/XML Help 10-27-14, 10:49 AM
Replies: 31
Views: 19,214
Posted By Tuller
So might I suggest something completely horrible...

So might I suggest something completely horrible to work around the lack of cooldown:GetSwipeColor? I've not actually tested this at all.

do
local mt =...
Forum: Lua/XML Help 10-15-14, 04:25 PM
Replies: 31
Views: 19,214
Posted By Tuller
Bartender appears to update the swipe color when...

Bartender appears to update the swipe color when updating a cooldown.
In Dominos, I reparent the cooldown to a hidden frame when alpha == 0.
Forum: Lua/XML Help 10-14-14, 07:57 PM
Replies: 31
Views: 19,214
Posted By Tuller
So, SetSwipeColor does make it possible to hide...

So, SetSwipeColor does make it possible to hide the normal spiral, but it doesn't actually do anything about the shine effect at the end of a cooldown.
Forum: WoD Beta archived threads 06-28-14, 02:22 PM
Replies: 32
Views: 27,282
Posted By Tuller
C_Timer makes me happy.

C_Timer makes me happy.
Forum: AddOn Search/Requests 11-25-13, 05:55 PM
Replies: 3
Views: 5,244
Posted By Tuller
Here's code I've not tested :P local Dominos =...

Here's code I've not tested :P


local Dominos = _G['Dominos']
local UIParent = _G['UIParent']

local FrameGroups = {
{7, 15, 19},
{4, 5, 6, 8, 9, 10},
{2, 3, 11, 12, 14, 16, 17, 18},
Forum: General Authoring Discussion 05-14-13, 06:55 PM
Replies: 123
Views: 87,185
Posted By Tuller
+1 to making sure you're using source control...

+1 to making sure you're using source control somewhere :)
Forum: MoP Beta archived threads 02-22-13, 12:24 PM
Replies: 7
Views: 18,271
Posted By Tuller
It should probably be noted that we do have...

It should probably be noted that we do have access to a few nifty functions in the secure environment to help us determine what actions to display:

local newPage = 0

if HasVehicleActionBar()...
Forum: Lua/XML Help 12-09-12, 09:55 AM
Replies: 3
Views: 4,112
Posted By Tuller
Generally, if I have an "array" and I care about...

Generally, if I have an "array" and I care about ordering, I use ipairs. If I don't care, I use pairs.
Forum: MoP Beta archived threads 12-07-12, 09:05 PM
Replies: 258
Views: 180,112
Posted By Tuller
Blizzard was sneaky, and I never noticed these...

Blizzard was sneaky, and I never noticed these additions to the restricted environment:
"HasVehicleActionBar",
"HasOverrideActionBar",
"HasTempShapeshiftActionBar",
"HasOverrideUI",...
Forum: MoP Beta archived threads 09-05-12, 06:41 AM
Replies: 258
Views: 180,112
Posted By Tuller
That's basically what I expected to be the case. ...

That's basically what I expected to be the case. I don't like states we can't detect :P
Forum: MoP Beta archived threads 09-04-12, 11:51 AM
Replies: 258
Views: 180,112
Posted By Tuller
I made a request for a few more presents for...

I made a request for a few more presents for Blizzard with respect to the various special action bars:
http://us.battle.net/wow/en/forum/topic/6490559996#1

I still need to run through the The...
Forum: Lua/XML Help 08-19-12, 08:47 AM
Replies: 15
Views: 8,921
Posted By Tuller
That's one of those cases where I'd write do ...

That's one of those cases where I'd write

do
for k,v in pairs(largeTable) do
local var = someFunc(k,v)
-- do something with var
end
end

regardless, since var is probably...
Forum: MoP Beta archived threads 07-16-12, 11:27 AM
Replies: 258
Views: 180,112
Posted By Tuller
I'd rather them be [petbattleui] [possessui],...

I'd rather them be [petbattleui] [possessui], [extrabar] than [bonusbar:x] since its much less cryptic that way. Do we have some sort of suggestion on the official forums for this?
Forum: MoP Beta archived threads 07-08-12, 07:57 AM
Replies: 258
Views: 180,112
Posted By Tuller
Other addons may read the metadata for one reason...

Other addons may read the metadata for one reason or another (ex, some addon loaders).
Forum: MoP Beta archived threads 07-05-12, 11:11 AM
Replies: 11
Views: 20,565
Posted By Tuller
Without looking at code, you could probably...

Without looking at code, you could probably attach a secureshowhide frame to the possess bar in order to figure out when it was shown/hidden in a secure environment.


Also, this reminds me:
WTB...
Forum: MoP Beta archived threads 07-05-12, 07:54 AM
Replies: 11
Views: 20,565
Posted By Tuller
My kingdom for: HasVehicleActionBar(), ...

My kingdom for:

HasVehicleActionBar(),
HasOverrideActionBar()
HasTempShapeshiftActionBar(),
HasBonusActionBar()

being published to the restricted environment, along with suitable macro...
Forum: MoP Beta archived threads 07-04-12, 01:32 PM
Replies: 3
Views: 13,033
Posted By Tuller
The possess bar is triggered at least from doing...

The possess bar is triggered at least from doing mind control as a priest (which is now called Dominate Mind, per Maul).
Forum: General Authoring Discussion 12-07-11, 06:32 PM
Replies: 13
Views: 6,982
Posted By Tuller
SVN (with Tortoise) is still more user friendly...

SVN (with Tortoise) is still more user friendly on Windows than Git. Git offers more control, and nicer hosting options, I think.
Forum: General Authoring Discussion 12-04-11, 09:52 PM
Replies: 24
Views: 31,249
Posted By Tuller
Here's the final stupid thing I decided to try in...

Here's the final stupid thing I decided to try in order to get the extra action buttons to work, which is seemingly working (based on one...
Forum: General Authoring Discussion 12-01-11, 01:27 PM
Replies: 24
Views: 31,249
Posted By Tuller
Stupid theory: * Create an action button, with ID...

Stupid theory:
* Create an action button, with ID 121/reuse & reparent ExtraActionButton1
* Give it a showstate of the following: [group,nobonusbar:5,novehicle]show;hide
Forum: General Authoring Discussion 10-29-11, 12:20 PM
Replies: 24
Views: 31,249
Posted By Tuller
That's more or less what my plan /w Dominos is,...

That's more or less what my plan /w Dominos is, except I've attempted to re-parent the entire ExtraActionBar.
Showing results 1 to 25 of 91