Trouble finding the label displaying amount of pages in list view. (1 Viewer)

n4orcer

MP Donator
  • Premium Supporter
  • May 5, 2008
    116
    26
    Sweden
    Home Country
    Sweden Sweden
    I have a problem with a new skin i'm developing. It's my first skin so i'm sorry if this has been asked before, did not find anything while searching.

    As the screenshot shows i'm trying to move the "page indicator" in the list view of moving pictures. But I cant find the control for it. Either im blind or I have just missed it for the last 2h searching for it.

    ss-movingpictures-pageindicator.jpg

    What controls this in the skin files? How does the control look like so I can search for it within my files?
     

    ltfearme

    Community Plugin Dev
  • Premium Supporter
  • June 10, 2007
    6,755
    7,200
    Sydney
    Home Country
    Australia Australia
    You need to modify the facade control, and the properties your interested in changing are:

    Code:
    <spinWidth>50</spinWidth>
    <spinHeight>37</spinHeight>
    <spinPosX>1175</spinPosX>
    <spinPosY>681</spinPosY>
    <spinAlign>Right</spinAlign>
    <spinColor>ff006698</spinColor>
    <textureUp>arrow_round_up_nofocus.png</textureUp>
    <textureDown>arrow_round_down_nofocus.png</textureDown>
    <textureUpFocus>arrow_round_up_focus.png</textureUpFocus>
    <textureDownFocus>arrow_round_down_focus.png</textureDownFocus>

    The texture properties are used for the up/down buttons that appear next to the page count.
     

    n4orcer

    MP Donator
  • Premium Supporter
  • May 5, 2008
    116
    26
    Sweden
    Home Country
    Sweden Sweden
    You need to modify the facade control, and the properties your interested in changing are:

    Code:
    <spinWidth>50</spinWidth>
    <spinHeight>37</spinHeight>
    <spinPosX>1175</spinPosX>
    <spinPosY>681</spinPosY>
    <spinAlign>Right</spinAlign>
    <spinColor>ff006698</spinColor>
    <textureUp>arrow_round_up_nofocus.png</textureUp>
    <textureDown>arrow_round_down_nofocus.png</textureDown>
    <textureUpFocus>arrow_round_up_focus.png</textureUpFocus>
    <textureDownFocus>arrow_round_down_focus.png</textureDownFocus>

    The texture properties are used for the up/down buttons that appear next to the page count.

    Thank you for that! :) I will try that out once I get home from work, been trying to find out where the code was that controlled it. Never looked for it inside the facade, I thought it was an own control such as a label or image and so on.. :confused:
     

    Users who are viewing this thread

    Top Bottom