Quote:
Originally Posted by dragowulf
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...