Author Topic: Prizes to display horizontally  (Read 3446 times)

candidog

  • Newbie
  • *
  • Posts: 27
    • View Profile
Prizes to display horizontally
« on: July 14, 2011, 02:54:33 PM »
I'm running the latest Beta software 2.6.b5

I'm creating a new layout.  I like to post my Prizes out Horizontally across my layout.

Like this

Prizes: 1st = $3500  2nd=$1500, 3rd=1000, 4th =$850, 5th=$500

By default it shows it displays the prizes Vertically

Prizes
1st = $3500
2nd=$1500
3rd=1000
4th =$850
5th=$500

For the life of my I don't know how do this.  This default setup stretches my layout.

Any idesa?

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Prizes to display horizontally
« Reply #1 on: July 14, 2011, 02:57:22 PM »
Edit the cell containing the prizes.  Edit the HTML and select (highlight) the <prizes> token, then press "Insert Token".  This should automatically highlight the entire <prizes> token and open the Insert Token dialog with the <prizes> token pre-selected with all of the appropriate options that are specified in your <prizes> token.  There you'll find all of the possible options.  There's one for the token's orientation.

candidog

  • Newbie
  • *
  • Posts: 27
    • View Profile
Re: Prizes to display horizontally
« Reply #2 on: July 14, 2011, 03:02:16 PM »
Got it... Cool Stuff

candidog

  • Newbie
  • *
  • Posts: 27
    • View Profile
Re: Prizes to display horizontally
« Reply #3 on: July 14, 2011, 03:53:41 PM »
I'm trying to create a token that can scroll in a small box that will display all the remaining players names left in the tournament.  Is this possible?

TIMMER

  • Hero Member
  • *****
  • Posts: 562
    • View Profile
Re: Prizes to display horizontally
« Reply #4 on: July 14, 2011, 04:30:45 PM »
tokens ( playersnames ) set bustedout too false then set width and height   edit... this would be nice to have a rotate option like the prizes
« Last Edit: July 14, 2011, 04:35:48 PM by TIMMER »

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Prizes to display horizontally
« Reply #5 on: July 14, 2011, 04:45:56 PM »
If you're using 2.6, <playernames>, as timmer noted.  I don't think version 2.5.12 has a suitable token.

To scroll the names, use the <marquee> HTML element surrounding it:

<marquee><playernames></marquee>

See http://msdn.microsoft.com/en-us/library/ms535851(v=VS.85).aspx for how to use the marquee tag.

candidog

  • Newbie
  • *
  • Posts: 27
    • View Profile
Re: Prizes to display horizontally
« Reply #6 on: July 14, 2011, 09:05:17 PM »
I was able to scroll the marquee but I was only able to scroll max of 5 names. 

I used this code:

<marquee><playernames bustedout="false" max="5"></marquee>


But what if I had 20 players left in the tournament how would I scroll all 20 names but 5 at a time?  Like the rankings pages.

Also the marquee command work good but it scroll from right to left how would I scroll from up to down?



I'm getting closer...

TIMMER

  • Hero Member
  • *****
  • Posts: 562
    • View Profile
Re: Prizes to display horizontally
« Reply #7 on: July 14, 2011, 11:57:39 PM »
One of these should work, or at least get you started,---- Still - In<br><marquee direction="up" loop="-1" width=300 height=100 scrollamount=-1><playernames bustedout="false" max="0">    or   Still - In<br><marquee direction="up" loop="-1"   scrollamount=-1><playernames bustedout="false" max="0">               to change direction just change the word UP to down or left or right ,  amount of players is max 20 or 0    and to set how many players show at once not sure .... I just set the height on mine to how many I want to show