Please post locizations for :
"None"
"Blizzard Tooltip"
"Blizzard Dialog"
"config"
"enable"
"disable"
"layout"
Usage: /kgpanels <command>
"config" enter the config screen.
"enable" enable the mod.
"disable" disable the mod.
"layout" "layout name" to change layouts.
" not found."
"Aucun"
"Bulle d'aide de Blizzard"
"Fen?tre de dialogue de Blizzard"
"Configuration"
"Activer"
"D?sactiver"
"Mod?le"
Utilisation : /kgpanels <commande>
"Configuration" Ouvrir la fen?tre de configuration.
"Activer" Active cet addon.
"D?sactiver" D?sactive cet addon.
"Mod?le" "Nom du mod?le" pour changer de mod?le.
" introuvable."
Hope it could help you, never try your addon so it's a "blind" translation ^^, will try to install it and post here (or put it on svn) if some tweaks are needed :)
The addon is looking really neat. Liking it a lot so far. One thing, I can't seem to get it to pickup my custom art. Basically what im doing is adding to the Art library, with '\Interface\AddOns\SharedMedia\statusbar\Armory.tga' (i use the statusbar textures and tiling to get some decent background textures for panels) but i get no preview once its added and ofc cant see it in action.
Is SharedMedia enabled? Textures need to be present in the game at startup (so if it's not enabled, you'll have to exit the game and restart). Or it may be the format of your path. Try it without the first \ or try with two \\ instead, see if that helps.
As Seerah said the texture needs to be in the Interface sub dir at launch or wow wont see the file, also just use \\ for your path entries to save the grief of path issues
Wow, thx for this nice addon. I like it!!! certainly a few minutes faster to create a panel to your liking. The in game FAQ helped a lot. The eePanels import feature works well not 100% but the things that are wrong can be fixed pretty fast.
Im not sure how much coding this will be. But can the anchor/parent dropdown list the 10 most used Ace mods for easy anchoring? Omen, Pittbull etc ? Or when you hover a panel with your mouse it will input the panel for you?
if UnitExists("pet") then
eePanel16:SetHeight(103)
eePanel17:SetHeight(107)
eePanel18:SetHeight(111)
else
eePanel16:SetHeight(62)
eePanel17:SetHeight(66)
eePanel18:SetHeight(70)
end
end
I'm not exactly sure how to translate this script for kgpanels. This script basically resizes the panels if i have a pet. I have a very similar one if i have a target.
eePanels2:RegisterEvent("UNIT_PET")
hrmm could you export the layout and i can imprt it and take a look at whats going on. I will tell you this though. Scripts arent NOT imported, so if some of your scripts adjusted sizes, that may be the reason why it got wonky
in your OnLoad, add a self:RegisterEvent("UNIT_PET")
in OnEvent add a check for it
if event == "UNIT_PET" then
if UnitExists("pet")
local p1 = kgPanels:FetchFrame("what eer your named the first frame")
p1:SetWeight(103)
......
else
more code here
end
end
you could do this to just 1 panel, or add it to each panel that should resize like this:
assume the panel is called PetOne
PetOne Load script
self:RegisterEvent("UNIT_PET")
PetOne OnEvent script
if UnitExists("pet") then
self:SetHeight(103)
else
self:SetHeight(62)
end
you OnEvent handler only gets invoked if you register for some event
Yeah, i'm fine with that. I can rebuild, I have the technology.
However, i'm missing the knowhow on writing scripts. and i have several going. all of which adjust size. I can build the panels again, but what i'm really interested in doing is using a border texture instead of the brute force 3 panel method I was using before to make my border, and secondly, i need some help rewriting my scripts to work with kgpanels.
the boders are created by 3 panels. omen, sws and grid all resize automatically. SWS resizes if i resize. Omen resizes as it grows [grow upwards btw] and grid resizes based on the GridLayoutFrame. The player frame has borders which resize if i have a pet. the pet and the pet target are directly below the player frame. if you see the target/target of target/and target of target of target frame cluster, that panel resizes based on whether or not i have atarget. Without a target, the panels just are the size of the target frame. obviously they disappear if i have no target.
do you know of a resource that i could use which would give me some pretty detailed instructions on how to create a border texture that looks like what i'm already doing, and which would prevent me from having so many useless panels? and secondly, would anyone be able to help me adapt my current scripts to my new panel setup.
Thanks for the new panel setup kagaro.
I think the greatest thing is that it doesn't appear that it will screw up parenting if you delete a 'first order' panel. since they go off name, and not by a numbered panel system like eepanels2 did.
very nice.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
Project homepage here
http://www.wowace.com/projects/kg-panels/
There a relinks to sample scripts and the wiki on the main project page.
Please post locizations for :
"None"
"Blizzard Tooltip"
"Blizzard Dialog"
"config"
"enable"
"disable"
"layout"
Usage: /kgpanels <command>
"config" enter the config screen.
"enable" enable the mod.
"disable" disable the mod.
"layout" "layout name" to change layouts.
" not found."
In this thread dont modify kgPanels for these.
Here the French translation :
"Aucun"
"Bulle d'aide de Blizzard"
"Fen?tre de dialogue de Blizzard"
"Configuration"
"Activer"
"D?sactiver"
"Mod?le"
Utilisation : /kgpanels <commande>
"Configuration" Ouvrir la fen?tre de configuration.
"Activer" Active cet addon.
"D?sactiver" D?sactive cet addon.
"Mod?le" "Nom du mod?le" pour changer de mod?le.
" introuvable."
Hope it could help you, never try your addon so it's a "blind" translation ^^, will try to install it and post here (or put it on svn) if some tweaks are needed :)
The addon is looking really neat. Liking it a lot so far. One thing, I can't seem to get it to pickup my custom art. Basically what im doing is adding to the Art library, with '\Interface\AddOns\SharedMedia\statusbar\Armory.tga' (i use the statusbar textures and tiling to get some decent background textures for panels) but i get no preview once its added and ofc cant see it in action.
What stupid mistake have i made? :(
Edit: "\\" in path solved it. I originally used a single slash because of the tooltip in the path textbox. Thanks :)
Im not sure how much coding this will be. But can the anchor/parent dropdown list the 10 most used Ace mods for easy anchoring? Omen, Pittbull etc ? Or when you hover a panel with your mouse it will input the panel for you?
Thx :)
:D
i have like... 60 panels or something though?
all parented to each other, bunch of scripts running.
if UnitExists("pet") then
eePanel16:SetHeight(103)
eePanel17:SetHeight(107)
eePanel18:SetHeight(111)
else
eePanel16:SetHeight(62)
eePanel17:SetHeight(66)
eePanel18:SetHeight(70)
end
end
I'm not exactly sure how to translate this script for kgpanels. This script basically resizes the panels if i have a pet. I have a very similar one if i have a target.
eePanels2:RegisterEvent("UNIT_PET")
in OnEvent add a check for it
if event == "UNIT_PET" then
if UnitExists("pet")
local p1 = kgPanels:FetchFrame("what eer your named the first frame")
p1:SetWeight(103)
......
else
more code here
end
end
you could do this to just 1 panel, or add it to each panel that should resize like this:
assume the panel is called PetOne
PetOne Load script
PetOne OnEvent script
you OnEvent handler only gets invoked if you register for some event
However, i'm missing the knowhow on writing scripts. and i have several going. all of which adjust size. I can build the panels again, but what i'm really interested in doing is using a border texture instead of the brute force 3 panel method I was using before to make my border, and secondly, i need some help rewriting my scripts to work with kgpanels.
this is the setup. http://ot.erxz.com/Aestil/priest.png
the boders are created by 3 panels. omen, sws and grid all resize automatically. SWS resizes if i resize. Omen resizes as it grows [grow upwards btw] and grid resizes based on the GridLayoutFrame. The player frame has borders which resize if i have a pet. the pet and the pet target are directly below the player frame. if you see the target/target of target/and target of target of target frame cluster, that panel resizes based on whether or not i have atarget. Without a target, the panels just are the size of the target frame. obviously they disappear if i have no target.
do you know of a resource that i could use which would give me some pretty detailed instructions on how to create a border texture that looks like what i'm already doing, and which would prevent me from having so many useless panels? and secondly, would anyone be able to help me adapt my current scripts to my new panel setup.
Thanks for the new panel setup kagaro.
I think the greatest thing is that it doesn't appear that it will screw up parenting if you delete a 'first order' panel. since they go off name, and not by a numbered panel system like eepanels2 did.
very nice.