LoTROInterface

LoTROInterface (https://www.lotrointerface.com/forums/index.php)
-   Tutorials & Other Helpful Information (L) (https://www.lotrointerface.com/forums/forumdisplay.php?f=21)
-   -   transparent bottombar (https://www.lotrointerface.com/forums/showthread.php?t=21)

Ghil 02-12-2007 02:56 PM

transparent bottombar
 
here is a little tip from Joviex on the beta forums:

to make a bottombar transparent and hide the bags and menu buttons,
create a 1x1 transparent .tga called invisible.tga, and put this in your SkinDefinition.xml:

Code:

<Mapping ArtAssetID="accomplishment_journal_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="accomplishment_journal_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="accomplishment_journal_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag_inventory" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag1" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag1_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag1_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag1_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag2" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag2_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag2_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag2_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag3" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag3_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag3_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag3_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag4" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag4_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag4_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag4_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="crafting_highlight" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="crafting_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="crafting_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="fellowship_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="fellowship_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="fellowship_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="inventory_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="inventory_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="inventory_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="journal_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="journal_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="journal_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="LetterBoxBottom" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="main_menu_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="main_menu_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="main_menu_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="map_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="map_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="map_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="quest_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="quest_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="quest_rollover" FileName="Invisible.tga"></Mapping>

to note: if you want to make a skin for the bottom bar, it is that line you have to add/change:

Code:

<Mapping ArtAssetID="LetterBoxBottom" FileName="Invisible.tga"></Mapping>
and the size is 1024x85.

Enjoy! :)

edit: for those that do not want to bother, I've uploaded a zip file containing the invisible tga file ;)

Cairenn 02-12-2007 03:05 PM

Ghil, thanks for posting the info. :)

Capt Justice 02-21-2007 10:20 AM

<Mapping ArtAssetID="quest_rollover" FileName="Invisible.tga"></Mapping>

So, if you didn't make this line of code invisible, the icon would show up when you move your mouse over it ?

jasonspeed 02-21-2007 11:47 AM

Can anyone make a mod with just the bags invisibile. I'd like the toolbar and option menu side still viewable. Also is it possible to relocate the main toolbar itself? Thanks.

Joviex 02-21-2007 08:35 PM

Quote:

Originally Posted by jasonspeed (Post 200)
Can anyone make a mod with just the bags invisibile. I'd like the toolbar and option menu side still viewable. Also is it possible to relocate the main toolbar itself? Thanks.


You cannot move the bottom bar.

Its easy enought o just balnk the bags however, remove all the lines from the above XML except where the bag* names are used. Those will override the default and disappear.

Specifically the xml main part would read:

Code:

<Mapping ArtAssetID="bag_inventory" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag1" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag1_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag1_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag1_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag2" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag2_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag2_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag2_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag3" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag3_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag3_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag3_rollover" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag4" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag4_normal" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag4_pressed" FileName="Invisible.tga"></Mapping>
<Mapping ArtAssetID="bag4_rollover" FileName="Invisible.tga"></Mapping>


Ghil 02-21-2007 08:41 PM

1 Attachment(s)
you can't move the bottom bar yet, but for the menu buttons, here you go: (download the SkinDefinition.xml)

edit: Joviex beat me to it ;)

edit2:

Quote:

Originally Posted by Capt Justice (Post 197)
<Mapping ArtAssetID="quest_rollover" FileName="Invisible.tga"></Mapping>

So, if you didn't make this line of code invisible, the icon would show up when you move your mouse over it ?

yep :)

jasonspeed 02-21-2007 10:27 PM

i copied the xml file to the skins folder but it looked really strange. isn't there supposed to be any tga files? all i have in the /skins/nobags folder is the xml i downloaded from you. thanks for the help.

Ghil 02-21-2007 10:29 PM

1 Attachment(s)
well you have to already have an invisible.tga for this to work, like this one:
or the one found in the invisible skin of Joviex. so put this tga in the same folder has the SkinDefinition, and select ghilui (or change the name of the skin in the SkinDefinition.xml), should work correctly.

Cairenn 02-21-2007 10:37 PM

Suggestion - toss the complete package up as a download. ;)

Ghil 02-21-2007 10:39 PM

yep, I'll do :) ( I just didn't think it was enough to post it as a download)

Nobags posted and awaiting clearance ;)


All times are GMT -5. The time now is 05:07 AM.

vBulletin® - Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
© MMOUI