HTML - How Would You Accomplish It?
I'm wondering what the best thing to throw the list of links into would be. I wanted to use another Iframe so when the list got long you could scroll down and it wouldn't break up the picture frame. Then I realized i couldn't load them into the tv iframe from another page, could I?
What's the best way to accomplish this? http://www.mattburnsey.com/video.htm Similar TutorialsThis is my blog, http://www.therawness.com. If you look at my left sidebar, you will see something called the Amazon carousel, an interacting spinning carousel showing books that I recommend to people. Problem is, it only allows a maximum of 10 books to be shows. What I wanted to do is to create a random, rotating array of carousels and have a different 10-book carousel appear every time the viewer refreshes the browser. So basically, what I wonder is what I have to do to accomplish this. Here are examples of codes for 2 widgets I want to alternate whenever the browser refreshes. Widget 1: Quote: <OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab" id="Player_1aa9293d-9691-4546-afa0-e8f585ee5738" WIDTH="120px" HEIGHT="500px"> <PARAM NAME="movie" VALUE="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Fjohnnytriangl-20%2F8010%2F1aa9293d-9691-4546-afa0-e8f585ee5738&Operation=GetDisplayTemplate"><PARAM NAME="quality" VALUE="high"><PARAM NAME="bgcolor" VALUE="#FFFFFF"><PARAM NAME="allowscriptaccess" VALUE="always"><embed src="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Fjohnnytriangl-20%2F8010%2F1aa9293d-9691-4546-afa0-e8f585ee5738&Operation=GetDisplayTemplate" id="Player_1aa9293d-9691-4546-afa0-e8f585ee5738" quality="high" bgcolor="#ffffff" name="Player_1aa9293d-9691-4546-afa0-e8f585ee5738" allowscriptaccess="always" type="application/x-shockwave-flash" align="middle" height="500px" width="120px"></embed></OBJECT> <NOSCRIPT><A HREF="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Fjohnnytriangl-20%2F8010%2F1aa9293d-9691-4546-afa0-e8f585ee5738&Operation=NoScript">Amazon.com Widgets</A></NOSCRIPT> Widget 2: Quote: <script type="text/javascript"><!-- amazon_ad_tag = "johnnytriangl-20"; amazon_ad_width = "120"; amazon_ad_height = "600";//--></script> <script type="text/javascript" src="http://www.assoc-amazon.com/s/ads.js"></script> Any help would be greatly appreciared! |