I'm building a scrolling ticker, using the script from:

http://javascript.internet.com/scrolls/line-scroller.html.

I'm scrolling a single-row table, building it by adding four cells at a time
(see snippet below).

The four cells consist of: MAKE, MODEL, #Available, Change in #Available.
MAKE and MODEL are static; I wish to display records from #Available in
descending order in the third cell of each set of four, likewise for Change
in #Available in the fourth cell of each set.

How can I set the display?

The entire page can be seen at:
http://home.earthlink.net/~rockypierre/amstatnew/Tickers/ticker-DataOK-WORKn
ewLogo.htm

Here's the snippet:

<table cellpadding="1">
                <tr>

    <!--INSERTNG ONE SET OF FOUR CELLS HERE...*NOTE: height of first cell
determines height of ENTIRE ROW-->
              <td width="40" height="32" bgcolor="#000066">
                    <div align="center"> <b><font size="2"
color="#ff6600">Make ID</font></b></div>
                  </td>
                  <td width="46" height="23" bgcolor="#000066">
                    <div align="center"> <b><font size="2"
color="#ff6600">Model ID</font></b></div>
                  </td>

                  <td width="10" height="23" bgcolor="#000066">

                    <div align="center"><b><font size="2"
color="#ffffff"><cfoutput>#TickerDiffQ.NOFSNEW#</cfoutput></font></b></div>
                  </td>
                  <td width="10" height="23" bgcolor="#000066">
                   <div align="center"><b><font size="2"
color="#ff6600"><cfoutput>#TickerDiffQ.NOFSDIFF#</cfoutput></font></b></div>
                  </td>

                  <!--INSERT NEXT SET OF FOUR CELLS HERE: -->

    </tr>
              </table>

______________________________________________________________________
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to