View Single Post
  #11  
Unread 02-27-2008, 02:39 PM
gm9 gm9 is offline
gm10-1
Premium Member
EQ2Interface Super Mod
Featured
 
Join Date: Feb 2006
Posts: 6,479
Default

Quote:
Originally Posted by dragowulf View Post
This is my code for the Hotkey page:

Volume.CellSize=IconPage.Icons.IconSize ## ',' ## IconPage.Icons.IconSize Volume.CellPadding=IconPage.Icons.IconPadding ## ',' ## IconPage.Icons.IconPadding

I have it on OnHoverIn for testing right now. CellSize works well, but when I do IconPadding it totally screws it up. I'm testing with my Hotkey window (Which came from yours). The default iconsize is 32 and padding is 0. I can move the size to anything and the volume will go along with it, but once i change padding from 0 it doesn't seem to resize correctly.
Doesn't work because it does not know where one command begins and another ends. Instead you can do either
Volume.CellSize=IconPage.Icons.IconSize ## ',' ## IconPage.Icons.IconSize
Volume.CellPadding=IconPage.Icons.IconPadding ## ',' ## IconPage.Icons.IconPadding

or
Volume.CellSize=(IconPage.Icons.IconSize)##(',')##(IconPage.Icons.IconSize) Volume.CellPadding=(IconPage.Icons.IconPadding)##(',')##(IconPage.Icons.IconPadd ing)

or (I think)
Volume.CellSize=(IconPage.Icons.IconSize ## ',' ## IconPage.Icons.IconSize) Volume.CellPadding=(IconPage.Icons.IconPadding ## ',' ## IconPage.Icons.IconPadding)
PS: Let me know if you want me to move our discussion in a separate thread, not sure if we are bordering on off topic here...
__________________
P R O F I T U I ∙ R E B O R N [Auto-Updater] | [Portal] | [F.A.Q.] | [Support Forums]
~ Retired ~
If it does not work, you likely installed it incorrectly. Always try a clean install before reporting bugs.
Reply With Quote