Thread: Ping window
View Single Post
  #9  
Unread 10-06-2009, 12:52 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

FetishCentral should now appear as a menu similar to the StartMenu.

As stated in the Update notes, FetishCentral is now somewhat dependent on the StartButton revisions with v11.1. If you're not using the stock files that came with v11.1, FetishCentral probably won't position correctly and could end up off screen.

If you are using a modified or alternate StartButton, you'll need to add the new FetishCentral button for relative positioning of the popup window.
Code:
    <Image AbsorbsInput="false" Color="#AAAAAA" Location="6,82" Name="FCUnSet" ScrollExtent="23,23" Size="23,23" SourceRect="0,0,48,48" SourceResource="/images/FetishCentral48.dds" />
    <Button Location="2,79" Name="FetishCentral" OnActivate="
Parent.FCUnSet.Color='#664466'
" OnDeactivate="
Parent.FCUnSet.Color='#AAAAAA'
" OnHoverIn="
Parent.FCUnSet.Color='#FFFFFF'
" OnHoverOut="
Parent.FCUnSet.Color='#AAAAAA'
" OnPress="
show_window=(Custom.FetishCentral)
show_window=(Custom.FetishCentral)
" PackLocation="fixed,fixed" ScrollExtent="32,31" Size="32,31" Style="StartButtonStyle" Tooltip="Open FetishCentral" />
Tweak as you like, just make sure the button name stays the same and be aware the popup will figure its position based on the button's loc.
Reply With Quote