On a related note, and since I still haven't gotten a response to the email I sent to the accounts department 3 weeks ago:
Does Curse send out 1099-MISC statements? My employer gave me my W-2 in the first week of January, and I'd like to file my tax return ASAP, but I have no idea how to report my "income" from the rewards program without a 1099-MISC, since I've never dealt with one before.
If Curse does send out statements, is that going to happen any time soon, or am I going to have to wait until the last minute in April?
If Curse does not send out statements, could we please get a general explanation of how the income is reported? (eg. "The total amount of points-related income would appear in Box Q.") I'm e-filing, so I don't really need the paper form, but I do need to know which box(es) which numbers are in.
Thanks.
They do if you filled out the W4 or whatever to allow your point redemptions beyond a certain point. (I think over $700)
They technically have until 1/31 to mail your 1099 to you.
I was writing yet another throttled onupdate, and i figured, I'd try to write something that was easier to reuse.
Maybe we could improve upon this so we have a reusable version of throttled onupdate for people to use.
Anyhow, here's the code (its dry code until I edit this post after testing)
local function throttle(func, interval)
local THROTTLE_TIME = interval
local throt = THROTTLE_TIME
return function(self, elapsed, ...)
throt = throt - elapsed
if throt < 0 then
throt = THROTTLE_TIME
func(self, elapsed, ...)
end
end
end
here's how I used it:
local function sample(self, elapsed)
-- My throttled OnUpdate handler code here
end
local frame = CreateFrame("Frame")
frame:SetScript("OnUpdate", throttle(sample, 0.1) )
Item code is not listed in my item codes, that was one of the first things I checked.
I did as instructed and mailed Kaelten, but he appears to be AFK for a while, to put it that way.
Anybody got any idea at all on when the store will be restocked on amazon.co.uk gift certificates? (...and when Kaelten or whomever handles the store will be back?)
Or is this one of those times I should simple be more patient, and wait and see?
Quick question: I've shifted the editbox (Free-floating, locked) to where I want it, which was great until RealID came in. Now whenever I move a RealID conversation into it's own tab the editbox moves to be under that (annoying when I have my chat boxes right at the bottom of the screen with the editbox further up). It only happens when you actually have the RealID conversation selected (as is in focus, not just simply visible), so it's not a *huge* issue, and it doesn't happen with any other tabs, just conversations.
Are there any plans to make the conversation editbox movable too, or is that more awkward than it sounds?
Open a ticket if you like. I don't use realID much so it doesn't get a lot of attention. The problem is that the realid frame is created dynamically, so the editbox positions that were set up don't apply to it.
I recently added a new module to Prat: "Search" it allows you to search for text in a chatframe as well as printing a list of all lines containing a certain string.
Since this seems like a handy modification I have made a standalone version.
The following commands are provided:
/find <text> - Find lines containing <text> and scrolls to them. Repeat command to find additional occurrences of <text>
/findall <text> - List all lines containing <text>
So for example i want to see what all people are trying to sell, so I type "/find WTS", and it will scroll backwards to the most recent occurance. I can then repeat the command to find additional occurrences.
If instead i just want to see the lines containing my search in a list i can use "/findall WTS" and each line containing "WTS" will be printed.
I haven't tried, but I believe you can use the full Lua pattern matching syntax in case you want to do something more advanced.
0
0
They do if you filled out the W4 or whatever to allow your point redemptions beyond a certain point. (I think over $700)
They technically have until 1/31 to mail your 1099 to you.
0
0
0
How about ThrottledOnUpdateFactory
0
Maybe we could improve upon this so we have a reusable version of throttled onupdate for people to use.
Anyhow, here's the code (its dry code until I edit this post after testing)
here's how I used it:
0
Make a list of features. Format it like so:
A change log should also have some logical formatting:
Varsion 2
--------
Varsion 1
--------
Also:
If you want to remove text, delete it. Do not use strikethroughs at all, remove all the lines on your addon page that have strikethrough formatting.
0
0
0
The simple answer is that they are in the logs directory of your game folder. The less simple answer is that you also have to have logging enabled.
0
Please make a ticket.
0
I have the same problem
Order #2598
0
Open a ticket if you like. I don't use realID much so it doesn't get a lot of attention. The problem is that the realid frame is created dynamically, so the editbox positions that were set up don't apply to it.
0
Since this seems like a handy modification I have made a standalone version.
http://www.wowace.com/addons/chatsearch/
The following commands are provided:
/find <text> - Find lines containing <text> and scrolls to them. Repeat command to find additional occurrences of <text>
/findall <text> - List all lines containing <text>
So for example i want to see what all people are trying to sell, so I type "/find WTS", and it will scroll backwards to the most recent occurance. I can then repeat the command to find additional occurrences.
If instead i just want to see the lines containing my search in a list i can use "/findall WTS" and each line containing "WTS" will be printed.
I haven't tried, but I believe you can use the full Lua pattern matching syntax in case you want to do something more advanced.
0