Thread Tools Display Modes
11-21-09, 06:45 PM   #81
Katae
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Jun 2007
Posts: 208
Originally Posted by richerich View Post
One thing that still buggers me that keeps me from completely go from kgPanels to LitePanels is the way that it works with blending textures...
What's your settings? Were you using a blend mode with kgpanels?
  Reply With Quote
11-21-09, 07:30 PM   #82
Dajova
A Wyrmkin Dreamwalker
 
Dajova's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2007
Posts: 58
Originally Posted by Katae View Post
What's your settings? Were you using a blend mode with kgpanels?
Yeah, i used the "Add" blend to get it...
__________________
Livestream | Twitter | YouTube
  Reply With Quote
11-21-09, 07:38 PM   #83
Katae
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Jun 2007
Posts: 208
Originally Posted by richerich View Post
Yeah, i used the "Add" blend to get it...
You can use blend modes in litepanels with blend = "ADD" (if you didn't try this already). If that doesn't help, maybe I can take a look to compare your layout and your kgpanels WTF settings.
  Reply With Quote
11-21-09, 09:18 PM   #84
Dajova
A Wyrmkin Dreamwalker
 
Dajova's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2007
Posts: 58
Originally Posted by Katae View Post
You can use blend modes in litepanels with blend = "ADD" (if you didn't try this already). If that doesn't help, maybe I can take a look to compare your layout and your kgpanels WTF settings.
tried it and it gave a change, but not the change im looking for
i can PM u the code that im using and my WTF for kgpanels.
__________________
Livestream | Twitter | YouTube
  Reply With Quote
11-21-09, 11:04 PM   #85
Katae
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Jun 2007
Posts: 208
Originally Posted by Katae View Post
You can use blend modes in litepanels with blend = "ADD".
Sorry, it should be bg_blend, not blend.
  Reply With Quote
11-23-09, 02:47 AM   #86
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
Okay nvm. I don't know what I did but its working now lol. Is there a way to set strata?

i.e.

Code:
framestrata = "background"

Last edited by Ferous : 11-23-09 at 02:52 AM.
  Reply With Quote
11-23-09, 03:23 AM   #87
Katae
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Jun 2007
Posts: 208
Originally Posted by Ferous View Post
Okay nvm. I don't know what I did but its working now lol. Is there a way to set strata?

Code:
framestrata = "background"
Code:
strata = "BACKGROUND"
  Reply With Quote
11-23-09, 03:33 PM   #88
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
Originally Posted by Katae View Post
Code:
strata = "BACKGROUND"
kewl thanks katae
  Reply With Quote
11-23-09, 04:43 PM   #89
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
Okay one more question for you katae, how do I make experience on mouseover? Im sort of boggled on that one, and I am a noob! Thanks again and sorry to bug you!

-Ferous
  Reply With Quote
11-23-09, 05:33 PM   #90
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
Here is my progress LitePanels and Litestats! :O

http://i48.tinypic.com/2rndmdd.jpg

most of my addon memory is due to carbonite so ignore it :P My addon memory is around 2.5 to 3 MB
  Reply With Quote
11-23-09, 06:19 PM   #91
Katae
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Jun 2007
Posts: 208
Originally Posted by Ferous View Post
Okay one more question for you katae, how do I make experience on mouseover?
In next version, once I'm done with it!



Originally Posted by Ferous View Post
Here is my progress LitePanels and Litestats! :O

http://i48.tinypic.com/2rndmdd.jpg

most of my addon memory is due to carbonite so ignore it :P My addon memory is around 2.5 to 3 MB
Awesome
  Reply With Quote
11-25-09, 01:22 AM   #92
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
Hey there katae, I was curious as to why my border is showing up so funny? It is on the panel I want but it has some grey around it as well and I don't understand why its doing that >.> Here is the screeny:

http://i49.tinypic.com/x40huh.jpg

and here is the layout for this particular panel:

Code:
{	name = "Actionbar", 
			anchor_to = "CENTER", 
			y_off = -419,
			width = 482, 
			height = 100,
			bg_color = {0.30,0.30,0.30},
            strata = "LOW",	
			border = "glowtex", border_color = "0 0 0",
		},
Also, just to clarify I mean this: http://i50.tinypic.com/11ttw6o.png

so I dont confizzle you as to what border im talking about :P

You know what Katae, never mind. I just saw there was a border_size and Im just an idiot! Sorry to bug you lol

-Ferous

Last edited by Ferous : 11-25-09 at 01:30 AM. Reason: cause im an idiot
  Reply With Quote
11-25-09, 01:39 AM   #93
Katae
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Jun 2007
Posts: 208
Originally Posted by Ferous View Post
You know what Katae, never mind. I just saw there was a border_size and Im just an idiot! Sorry to bug you lol
Still quite strange and a likely bug, the default border_size is 16 and inset is supposed to be set to border_size / 4 even when only border is given.

Thanks for bringing it to my attention

edit - Bug: When setting border_size, it sets inset to that number instead of the 0.25 multiplier as intended. Normally, if that multiplier doesn't yield the right inset size you need, you'd set inset manually, i.e inset = 16.

Long story short, in the next update you'll need to make use of inset if your border/inset doesn't match up. I'll probably hold off uploading until the 3.3 toc update.

Last edited by Katae : 11-25-09 at 02:18 AM.
  Reply With Quote
11-25-09, 01:56 AM   #94
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
Originally Posted by Katae View Post
Still quite strange and a likely bug, the default border_size is 16 and inset is supposed to be set to border_size / 4 even when only border is given.

Thanks for bringing it to my attention
No problem and sorry to bug you :P

-Ferous
  Reply With Quote
11-25-09, 06:07 AM   #95
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
I hope it was okay, as I seen some other Uis using litepanels, I included it in my package for noVeL Ui.

Heres a preview - http://s.wowinterface.com/preview/pvw33674.jpg

Much love to this awesome addon, it does so much more than I could imagine from kgPanels and I actually have to have less knowledge to use litepanels!

Thank you katae

-Ferous
  Reply With Quote
11-25-09, 06:30 AM   #96
Katae
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Jun 2007
Posts: 208
Originally Posted by Ferous View Post
I hope it was okay, as I seen some other Uis using litepanels, I included it in my package for noVeL Ui.
Looks quite nice
  Reply With Quote
11-26-09, 04:55 PM   #97
cryptor_00
A Defias Bandit
Join Date: Nov 2009
Posts: 2
Having trouble

Sadly, i'm having trouble getting this addon to show anything on my screen.

-I saved "layout_example" as "layout.lua" to the LitePanels folder in the addons folder, then enabled the addon on the character select screen. Nothing.

-Next, i wiped "layout.lua" and replaced it with the code you suggested under 'getting started' above, hoping to see the same bar in the screen shot. Restarted the game. Nothing.

At this point, i'm convinced i either A) am not putting "layout.lua" in the right place, or else B) i am missing some critical piece of code that should enable the whole thing.

Any help would be much appreciated.
  Reply With Quote
11-26-09, 05:11 PM   #98
Katae
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Jun 2007
Posts: 208
Your layout should look something like this. Make sure you don't have any syntax errors.
  Reply With Quote
11-26-09, 05:39 PM   #99
cryptor_00
A Defias Bandit
Join Date: Nov 2009
Posts: 2
Thanks. That helped immensely.

And i have to say, that's some pretty quick service! Blizz could learn a thing or two from you Happy holiday.


EDIT: Thanks for helping me build this: http://i45.tinypic.com/actkc8.jpg

Last edited by cryptor_00 : 11-27-09 at 01:28 AM. Reason: added link
  Reply With Quote
11-27-09, 07:49 PM   #100
Keamos
Premium Member
Premium Member
Join Date: Apr 2009
Posts: 1


Super minimalist--anyone interested?

Dominos, LitePanels, LiteStats, Prat, pMinimap, Forte, SBF, MSBT, TipTac, Skada, cargBags, BigWigs and Vuhdo.

Last edited by Keamos : 11-27-09 at 07:51 PM.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » Released AddOns » LitePanels - An art framework


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off