Not providing the color/alpha arguments sets them to default.
Ah thanks.
I do the following:
Add line, collor all cells except the first column green
Look in a table which cells should be red in this particular row, and because :SetLineColor also colored the first cell and I didn't know how to undo it, I tried this instead:
for currentPlayer, raids in pairs( charsdb ) do
lastline = tooltip:AddLine( currentPlayer )
for i = tooltip:GetColumnCount(),2,-1 do
tooltip:SetCellColor( lastline, i, 0, 1, 0 )
end
for currentRaid, _ in pairs( raids ) do
tooltip:SetCellColor( lastline, raidorder[currentRaid], 1, 0, 0 )
end
end
Didn't work, until I noticed that I have to do
for currentPlayer, raids in pairs( charsdb ) do
lastline = tooltip:AddLine( currentPlayer )
for i = tooltip:GetColumnCount(),2,-1 do
tooltip:SetCell( lastline, i, "")
tooltip:SetCellColor( lastline, i, 0, 1, 0 )
end
for currentRaid, _ in pairs( raids ) do
tooltip:SetCellColor( lastline, raidorder[currentRaid], 1, 0, 0 )
end
end
Edited the code to:
for currentPlayer, raids in pairs( charsdb ) do
lastline = tooltip:AddLine( currentPlayer )
tooltip:SetLineColor( lastline, 0, 1, 0 )
tooltip:SetCellColor( lastline, 1, nil )
for currentRaid, _ in pairs( raids ) do
tooltip:SetCellColor( lastline, raidorder[currentRaid], 1, 0, 0 )
end
end
Look at the screenshot, it does not really reset it to the old background :(
Is there a way to reset the color of a cell (line/column) back to default?
Right now I add lines, color them, but I want column 1 to retain the default color, even tried use headers and add columns in the hopes that headers would not take the color from SetColumnColor(), but seems the used font is the only difference it makes
So should I just save the rgb values of the default backdrop myself and then do SetCellColor( .... )?
Oh well, here's the download for a (maybe) working version. Try it yourself.
You will occasionally see some small windows popup. If that windows does not go away within a minute or so, browse to the Download Button yourself in that window (like the text says).
Kind of works, nice. But i need to open up the new windows an click download myself, think it would be better if the windows would just open in a fasion you could easily click "Download"
Well, the update all function is not working.
But if you select an AddOn, you can see that WADDU notices that there is another version of it, and you can rightclick in the Mappings selection, select update and it updates. But that's quite tedious if you have quite some AddOns :(
Edit:
You can checkout the source at http://code.google.com/p/waddu/
Can't find a Malygos thread for BigWigs, so i'll post my transcriptor logs here. http://starfox.host.sk/wow/Malygos10.zip
Several tries
Kill is in the one at: [00:08:00] - The Eye of Eternity :
But i forgot to stop/start transcriptor from the previous try :/
So the actual kill starts there at:
"<817.0> Monster Yell [My patience has reached its limit. I will be rid of you!:Malygos:::Nikata::0:0::0:897]",
Hope it helps you nevertheless.
0
https://www.wowace.com/home/edit-battlenet-email/
Does not allow e-mails with '+' in them :P
0
GetRealNumPartyMembers() -> GetNumGroupMembers(LE_PARTY_CATEGORY_HOME)
0
0
Note: Due to technical reasons the download-link leads to the programmers download-site
If you click download you are forwarded to http://wow.curse.com/downloads/wow-addons/details/omen-threat-meter.aspx
Never heard myself from softsonic before
0
0
Ah thanks.
I do the following:
Add line, collor all cells except the first column green
Look in a table which cells should be red in this particular row, and because :SetLineColor also colored the first cell and I didn't know how to undo it, I tried this instead:
Didn't work, until I noticed that I have to do
Edited the code to:
Look at the screenshot, it does not really reset it to the old background :(
0
Right now I add lines, color them, but I want column 1 to retain the default color, even tried use headers and add columns in the hopes that headers would not take the color from SetColumnColor(), but seems the used font is the only difference it makes
So should I just save the rgb values of the default backdrop myself and then do SetCellColor( .... )?
0
SiteWowAce.cs, right on top, line 12-13
Patterns changed again a bit, hope Roemer updates it soon.
0
Kind of works, nice. But i need to open up the new windows an click download myself, think it would be better if the windows would just open in a fasion you could easily click "Download"
0
Would it be possible to get the patterns from a textfile?
So you would not have to recompile it just because one html page changed.
0
http://rapidshare.com/files/207117309/Waddu.exe.html (i think that is 10 downloads only)
http://www.file-upload.net/download-1511750/Waddu.exe.html
fd67fdeb48209ca614c5cf531f50ab58 *Waddu.exe 407.552 Bytes
please at least verify the md5 after downloading and check
http://www.virustotal.com/analisis/ab86c60b4c98d999e71005e1dd2109b3
0
If you want 0-360 you can just use modulo
local radians = (-math.pi/180) * (GetPlayerFacing() % 360)
0
But if you select an AddOn, you can see that WADDU notices that there is another version of it, and you can rightclick in the Mappings selection, select update and it updates. But that's quite tedious if you have quite some AddOns :(
Edit:
You can checkout the source at
http://code.google.com/p/waddu/ Compile and be happy, it's actually pretty easy, you just do:
In the root of the source (that's also where Waddu.proj is). The new Waddu.exe will be in a new subfolder 'bin'.
0
http://starfox.host.sk/wow/Malygos10.zip
Several tries
Kill is in the one at: [00:08:00] - The Eye of Eternity :
But i forgot to stop/start transcriptor from the previous try :/
So the actual kill starts there at:
"<817.0> Monster Yell [My patience has reached its limit. I will be rid of you!:Malygos:::Nikata::0:0::0:897]",
Hope it helps you nevertheless.
0