Author Topic: Rankings Screen  (Read 1548 times)

Magic_fubu

  • Hero Member
  • *****
  • Posts: 1035
    • View Profile
Rankings Screen
« on: January 16, 2012, 10:34:10 PM »
** Disclaimer ** I am putting on my dunce hat....

I had my layout set up where (thanks to Corey) I had a scroll bar where I could scroll the rankings.... Timmer helped me with creating a layout, however, I just noticed that it only displays 1-20. I run a tournament where everyone gets a point for showing up, and yes I know I can export to html to suit my needs, but I often get asked during the tournament how many hits they have so far....

SO.... how do I get the scroll bar to appear again? I know it's w/html coding... but still.... Don't remember how..... ??????
My cowboys shot down your rockets
---
If you send a request to me please send that you got me from here w/your TD name to confirm. Thanks!

Mahound

  • Sr. Member
  • ****
  • Posts: 395
  • THE ONLY time i get screwed is when i play poker!
    • View Profile
Re: Rankings Screen
« Reply #1 on: January 17, 2012, 03:02:18 AM »
If its the rankings screen that is built in, it could be that you have disabled the auto scroll. If you right click on the screen you can enable it so the scroll would come on again

Magic_fubu

  • Hero Member
  • *****
  • Posts: 1035
    • View Profile
Re: Rankings Screen
« Reply #2 on: January 17, 2012, 10:01:03 AM »
It's not the auto scroll that I'm looking for... It's the scroll bar, like when viewing a web page and we can scroll to any part of the page...
My cowboys shot down your rockets
---
If you send a request to me please send that you got me from here w/your TD name to confirm. Thanks!

jodybingo

  • Hero Member
  • *****
  • Posts: 667
    • View Profile
    • Personal Web Site
Re: Rankings Screen
« Reply #3 on: January 17, 2012, 10:11:09 AM »
Layout - Properties - Player Rankings Screen. In there you will find the option to Hide Scrollbars. Make sure it is unchecked.

Magic_fubu

  • Hero Member
  • *****
  • Posts: 1035
    • View Profile
Re: Rankings Screen
« Reply #4 on: January 17, 2012, 10:18:42 AM »
It's a custom screen, not the built in one, because it auto scrolls in addition to having the scroll bar... And on the custom screen in properties, it doesn't give me the option for the scroll bar.... (Perhaps it should for custom screens?)
My cowboys shot down your rockets
---
If you send a request to me please send that you got me from here w/your TD name to confirm. Thanks!

TIMMER

  • Hero Member
  • *****
  • Posts: 562
    • View Profile
Re: Rankings Screen
« Reply #5 on: January 17, 2012, 11:08:57 AM »
Heres two ways, maybe one will work, <marquee behavior="scroll" direction="down" width = 300 height = 300 onmouseover="this.stop();" onmouseout="this.start();"> Players out <playernames bustedout="true" max="0" inline="true"></marquee> ...... Stats <br><iframe scroll=no src= ......................................................... width=520 height=300></iframe>

TIMMER

  • Hero Member
  • *****
  • Posts: 562
    • View Profile
Re: Rankings Screen
« Reply #6 on: January 17, 2012, 11:52:46 AM »
Or.....<div style="height:120px;width:250px;font:16px/26px Georgia, Garamond, Serif;overflow:scroll;">   and to change color is  <div style="height:120px;width:250px;font:16px/26px Georgia, Garamond, Serif;overflow:scroll;background-color:#67F152;">

Magic_fubu

  • Hero Member
  • *****
  • Posts: 1035
    • View Profile
Re: Rankings Screen
« Reply #7 on: January 17, 2012, 03:32:18 PM »
After much heartache and searching old posts (for over an hour and a half)... I found what I was looking for here:

These are HTML/CSS style attributes (Microsoft/IE specific, but that works for the TD).

<table border=0 cellspacing=0 cellpadding=0 width=100%>
<tr>
<td width=100% align=center><span style="height: 30px; width: 100%; overflow: hidden"><rankings showTimeOut="false" showRoundOut="false" showStillIn="true" showHitman="true" showHits="true" showWinnings="false" showPoints="true" showColumnTitles="true" max="50"></span>
</td>
<td><span style="width: 16px"></span></td>
</tr>
</table>

<span style="height: 500px; width: 100%; overflow: auto; scrollbar-3dlight-color: blue"><rankings showTimeOut="false" showRoundOut="false" showStillIn="true" showHitman="true" showHits="true" showWinnings="false" showPoints="true" showColumnTitles="false" max="50"></span>

Just couldn't remember where/when I asked for help or how I labeled the post  :D
My cowboys shot down your rockets
---
If you send a request to me please send that you got me from here w/your TD name to confirm. Thanks!