EQ2Interface.com
Search Downloads


Go Back   EQ2Interface > Developer Discussion > XML Modification Help & Info

Reply
Thread Tools Search this Thread Display Modes
  #1  
Unread 01-09-2005, 08:13 AM
Wulfsbane Wulfsbane is offline
A Young Mystail Rat
 
Join Date: Dec 2004
Server: Mistmoore
Posts: 4
Default How to make a window open auto every time you log in

I been try to figure out a way to make the clock show every time I log a toon in on load up. So far the only way I found to do it with a in game macro /show_window MainHUD.Clock.

I have try OnHide="visiable=true" and set visiable to true.
Reply With Quote
  #2  
Unread 01-09-2005, 08:23 AM
Deathbane27's Avatar
Deathbane27 Deathbane27 is offline
aka Mook
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Jul 2004
Server: Nektulos
Posts: 1,451
Default

Make sure you're spelling visible correctly. :P There's no a in it.
__________________
If it ain't broke, it needs more features!
Reply With Quote
  #3  
Unread 01-09-2005, 09:38 AM
Wulfsbane Wulfsbane is offline
A Young Mystail Rat
 
Join Date: Dec 2004
Server: Mistmoore
Posts: 4
Default

Thank

That was my problem
Reply With Quote
  #4  
Unread 01-19-2005, 05:16 PM
smithtad smithtad is offline
A Coastal Crab
 
Join Date: Jan 2005
Server: Antonia Bayle
Posts: 1
Default

This works with the clock, but how do you make it work with a custom window?
Reply With Quote
  #5  
Unread 01-19-2005, 05:31 PM
Deathbane27's Avatar
Deathbane27 Deathbane27 is offline
aka Mook
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Jul 2004
Server: Nektulos
Posts: 1,451
Default

Add

OnHide="show_window=(MainHUD.YourWindowHere) show_window=(MainHUD.YourWindowHere)"

To the (EDIT CLOCK page.
__________________
If it ain't broke, it needs more features!

Last edited by Deathbane27 : 02-02-2005 at 05:37 PM.
Reply With Quote
  #6  
Unread 02-02-2005, 05:06 PM
Drumstix42's Avatar
Drumstix42 Drumstix42 is offline
A Griffon
Featured
 
Join Date: Oct 2004
Server: Antonia Bayle
Posts: 3,287
Default

Quote:
Originally Posted by Deathbane27
Add

OnHide="show_window=(MainHUD.YourWindowHere) show_window=(MainHUD.YourWindowHere)"

To the MainHUD page.
Can we add more than 1 window to the MainHUD Page?
__________________
"I'm afraid you're guilty of thought-crime. Don't bother getting the door, we'll let ourselves in..."
<Donate to DrumsUI> < [DrumsUI] Updater > < [DrumsUI] Full Interface> < Drumstix42 on Twitch.tv
>
Reply With Quote
  #7  
Unread 02-06-2005, 05:50 PM
Drumstix42's Avatar
Drumstix42 Drumstix42 is offline
A Griffon
Featured
 
Join Date: Oct 2004
Server: Antonia Bayle
Posts: 3,287
Default

Supposed to have parenthasis or no? Still trying to get at least the clock to auto-appear.
__________________
"I'm afraid you're guilty of thought-crime. Don't bother getting the door, we'll let ourselves in..."
<Donate to DrumsUI> < [DrumsUI] Updater > < [DrumsUI] Full Interface> < Drumstix42 on Twitch.tv
>
Reply With Quote
  #8  
Unread 02-06-2005, 07:06 PM
Deathbane27's Avatar
Deathbane27 Deathbane27 is offline
aka Mook
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Jul 2004
Server: Nektulos
Posts: 1,451
Default

Quote:
Originally Posted by Drumstix42
Supposed to have parenthasis or no? Still trying to get at least the clock to auto-appear.
Sorry, only works in MainHUD on /loadui. You have to add that stuff to either the Clock or Character windows (or any other window that the game still pushes data to) for it to work.
__________________
If it ain't broke, it needs more features!
Reply With Quote
  #9  
Unread 02-07-2005, 12:29 AM
ACiDXiAN ACiDXiAN is offline
A Sea Turtle
Interface Author - Click to view interfaces
 
Join Date: Nov 2004
Server: Antonia Bayle
Posts: 31
Default

What windows exactly push data generally speaking? This is one thing I have seen mentioned but have not been able to actually figure out for sure.

If you could give a small list this might be handy to have at a glance.

Last edited by ACiDXiAN : 02-07-2005 at 12:30 AM. Reason: spelling issues
Reply With Quote
  #10  
Unread 02-07-2005, 12:38 AM
Quib Quib is offline
A Griffon
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Jan 2005
Posts: 720
Default

The problem is it wouldn't be a small list. Basically it's most windows in your default UI folder, though that's not 100% accurate.

Quib
Reply With Quote
  #11  
Unread 02-07-2005, 01:09 AM
Deathbane27's Avatar
Deathbane27 Deathbane27 is offline
aka Mook
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Jul 2004
Server: Nektulos
Posts: 1,451
Default

Quote:
Originally Posted by ACiDXiAN
What windows exactly push data generally speaking? This is one thing I have seen mentioned but have not been able to actually figure out for sure.

If you could give a small list this might be handy to have at a glance.
Complete list of known working ones that the game currently doesn't have a built in open button for:

MainHUD.Character (Has Spell Effects data pushed)
MainHUD.Clock (Has time data pushed)

Do not work:

MainHUD.Quickbar (Old Hotkey bank)
MainHUD.Memorized (Old spell bar from when subclass skills had to be memorized)

That's all I've actually tested.

If you want to do some more testing, just open all the unused windows and put in
OnHide="visible=true" and see if they pop up when you load the game.
__________________
If it ain't broke, it needs more features!

Last edited by Deathbane27 : 02-07-2005 at 01:18 AM.
Reply With Quote
  #12  
Unread 02-13-2005, 11:02 PM
ACiDXiAN ACiDXiAN is offline
A Sea Turtle
Interface Author - Click to view interfaces
 
Join Date: Nov 2004
Server: Antonia Bayle
Posts: 31
Default

Quote:
Originally Posted by Quib
The problem is it wouldn't be a small list. Basically it's most windows in your default UI folder, though that's not 100% accurate.

Quib
Its cool I think I figured out which is which by the 'push' thing.. CHAT is a pushed window so I have attached mine to that window since it is always having something sent to it liek the MoTD etc..

Thanks for the info Quib. Made me look into it a little more and I see what you mean by it being a rather lengthy list.
Reply With Quote
  #13  
Unread 02-16-2005, 06:19 AM
leylea leylea is offline
A Coastal Crab
 
Join Date: Feb 2005
Server: Antonia Bayle
Posts: 1
Default

Could I get an example in which file and where I need to place this line in to make a window we create open all the time?

I made a new stats window and would like it to always stay up when I log on and also not close when I hit escape.

Thanks in advance.
Reply With Quote
  #14  
Unread 02-16-2005, 08:31 AM
Zonx's Avatar
Zonx Zonx is offline
A Green Troll
This person is a EQ2Map developer.
Featured
 
Join Date: Dec 2004
Server: Blackburrow
Posts: 2,221
Default

Compass window is usually open and constantly updates with tooltip loc. Player window is another good choice.

If the custom window can be closed, its a good idea to attach the show command to somthing that has a Hotkey setting so you can use that window's hotkey to also reopen the custom window.
Reply With Quote
Reply



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
Forum Jump


All times are GMT -5. The time now is 02:58 PM.


Our Network
EQInterface | EQ2Interface | WoWInterface | LoTROInterface | ESOUI | MMOUI