Category: ToolTip
Addon Information
Works with 3.2
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Author:
Version:
0.02
Date:
08-05-2009 06:46 PM
Size:
6.77 Kb
Downloads:
1,836
Favorites:
19
MD5:
Pictures
player
friendly npc
hostile npc
RantTooltip: Lite
This is the lite version of RantTooltip (http://www.wowinterface.com/downloads/info10988-RantTooltip.html).

More info to come.
  Change Log - RantTooltip: Lite
0.02 - updated for 3.2.

0.01 - initial release
  Optional Files - RantTooltip: Lite
Sorry, there are currently no optional files available.
  Archived Versions - RantTooltip: Lite
File Name
Version
Size
Author
Date
0.01
6kB
Stuck
04-15-2009 10:15 AM
  Comments - RantTooltip: Lite
Post A Reply Comment Options
Old 06-05-2009, 10:17 AM  
Ayuki
A Kobold Labourer

Forum posts: 0
File comments: 14
Uploads: 0
it buggs together with quest helper.. quest helper tooltips dosent show up after a long time it does then you get error..
Ayuki is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-03-2009, 11:14 AM  
mikma
An Aku'mai Servant
 
mikma's Avatar
Interface Author - Click to view interfaces

Forum posts: 36
File comments: 173
Uploads: 25
Option to disable the Tooltip Icon please.
mikma is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-28-2009, 02:17 AM  
Ayuki
A Kobold Labourer

Forum posts: 0
File comments: 14
Uploads: 0
Error..

Error: attempt to index local 'text' (a nil value)
AddOn: RantTooltipLite
File: RantTooltipLite.lua
Line: 182
Count: 1


just a error report :P it comes up sometiems when enemy dies... i think when they got me targettted... it spams in tooltip like
Target: [YOU]
Target: [YOU]
Target: [YOU]
Target: [YOU]
then error comes
Ayuki is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-14-2009, 05:03 PM  
Crissa
A Defias Bandit

Forum posts: 3
File comments: 11
Uploads: 0
Re: Re: options...

Yeah, I got the border done already... However, reaction colors seem wrong sometimes; it has red for any of the other faction and green for any of this faction, and I'm used to it being on basis if they're flagged PvP or not or I'm flagged PvP or not... Is that possible?

I took out the code I didn't want and got the colors I wanted ^-^ Figured that out eventually with some tinkering. I haven't coded anything directly since coding as TV-safe mode addon while doing Molten Core runs.

-Crissa
Crissa is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-28-2009, 05:52 AM  
02cspearson
A Kobold Labourer
 
02cspearson's Avatar

Forum posts: 0
File comments: 11
Uploads: 3
Cheers

Quote:
Originally posted by Stuck
Open RantTooltipLite.lua, at the top there is a table called "RantTooltip["Options"]". The line you're looking for is, "anchor = { "CURSOR", 0, 10 },". You can anchor it wherever you want. It's relative to UIParent.

So for example, you can change it to:
Code:
anchor = { "BOTTOMRIGHT", -25, 75 },
This would anchor it to the bottomright of the screen.
Brilliant stuff. Cheers. Excellent Mod.
02cspearson is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-21-2009, 05:36 PM  
Stuck
A Kobold Labourer
Interface Author - Click to view interfaces

Forum posts: 1
File comments: 80
Uploads: 10
Quote:
Originally posted by 02cspearson
This is great but I don't like to have the ToolTip at Cursor. How do I change it to Anchor?
Open RantTooltipLite.lua, at the top there is a table called "RantTooltip["Options"]". The line you're looking for is, "anchor = { "CURSOR", 0, 10 },". You can anchor it wherever you want. It's relative to UIParent.

So for example, you can change it to:
Code:
anchor = { "BOTTOMRIGHT", -25, 75 },
This would anchor it to the bottomright of the screen.
Stuck is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-21-2009, 05:33 PM  
Stuck
A Kobold Labourer
Interface Author - Click to view interfaces

Forum posts: 1
File comments: 80
Uploads: 10
Re: options...

Quote:
Originally posted by Crissa
The lack of comments in your code is making customizing this a bit of a pain. Little rusty here... I got the tooltips where I wanted, I can (sorta) change the background.

I'd like to take out the color changing border (only want simple borders); have guild/reaction override class color on the names; and make the background brighter (less black and grey, more the color I want. I changed it to the reaction color... Hadta move the reaction color block before the options block, but that's fine ^-^)

Lastly, is there any way to carve bits out of other tooltip programs so I just had the item I wanted... Like for instance adding item level and icon to the item tooltips, or one of the achievements infos?

-Crissa
I will add comments in the future. Sorry about that. Have you tried the original RantTooltip? I made RantTooltip: Lite specifically for minimalist purposes, for those who didn't want a lot of options. I'll release another version soon that will comment everything you want to change.

If you want a constant border or background color, go to line 255. That's where the background and border is changed for unit tooltips. You can comment out "GameTooltip:SetBackdropBorderColor(color.r, color.g, color.b)", or "GameTooltip:SetBackdropColor(r-.85, g-.85, b-.80, 1)".

If you want reaction color on player names instead of class colors, look at line 374. You should delete the first if conditional, so:
Code:
	if UnitIsPlayer(unit) then
		local class = select(2,UnitClass(unit))
		r = RAID_CLASS_COLORS[class].r
		g = RAID_CLASS_COLORS[class].g
		b = RAID_CLASS_COLORS[class].b
	elseif UnitPlayerControlled(unit) then
Becomes:

Code:
	if UnitPlayerControlled(unit) then
Stuck is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-21-2009, 08:58 AM  
02cspearson
A Kobold Labourer
 
02cspearson's Avatar

Forum posts: 0
File comments: 11
Uploads: 3
This is great but I don't like to have the ToolTip at Cursor. How do I change it to Anchor?
02cspearson is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-17-2009, 02:57 AM  
Crissa
A Defias Bandit

Forum posts: 3
File comments: 11
Uploads: 0
options...

The lack of comments in your code is making customizing this a bit of a pain. Little rusty here... I got the tooltips where I wanted, I can (sorta) change the background.

I'd like to take out the color changing border (only want simple borders); have guild/reaction override class color on the names; and make the background brighter (less black and grey, more the color I want. I changed it to the reaction color... Hadta move the reaction color block before the options block, but that's fine ^-^)

Lastly, is there any way to carve bits out of other tooltip programs so I just had the item I wanted... Like for instance adding item level and icon to the item tooltips, or one of the achievements infos?

-Crissa

Last edited by Crissa : 04-17-2009 at 01:21 PM.
Crissa is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-16-2009, 04:27 AM  
larkrune
A Murloc Raider

Forum posts: 6
File comments: 16
Uploads: 0
eh, figured i'd end up being wrong, was updating addons while grabbing the rest of the update and didn't look to closely before posting that i suppose i should pay more attention
larkrune is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-16-2009, 01:28 AM  
Stuck
A Kobold Labourer
Interface Author - Click to view interfaces

Forum posts: 1
File comments: 80
Uploads: 10
Re: Status Bar

Quote:
Originally posted by Chasim
What would I need to edit in the .lua to remove (or comment out) the status bar completely?
Add:

Code:
GameTooltipStatusBar:Hide()
right below line 261.

So it should look like:
Code:
	if raidIndex then
		RantTooltip.icons.raid:SetTexture("Interface\\TargetingFrame\\UI-RaidTargetingIcon_"..raidIndex)
	end
	GameTooltipStatusBar:Hide()
end
Lines 116-119 are there to set the texture of the bar. ;p
Stuck is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-16-2009, 12:52 AM  
larkrune
A Murloc Raider

Forum posts: 6
File comments: 16
Uploads: 0
Re: Status Bar

Quote:
Originally posted by Chasim
What would I need to edit in the .lua to remove (or comment out) the status bar completely?
I could be wrong, but if you edit out lines 116-119 I think that should do what you want
larkrune is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-15-2009, 09:09 PM  
Chasim
A Defias Bandit

Forum posts: 2
File comments: 62
Uploads: 0
Status Bar

What would I need to edit in the .lua to remove (or comment out) the status bar completely?
Chasim is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.