Do you need Flash to do this???

liunx

Guest
If i want to make a long imae i have scroll in a box, do you need flash... or is their a code to make a image in a scroll box

Please HelpYou can use html and CSS
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
#scroll {
overflow:auto;
width:780px;
margin:auto;
}
</style>
</head>

<body>
<div id="scroll"><img src=http://www.webdeveloper.com/forum/archive/index.php/"wide.gif" width="2000" height="100" alt=""></div>
</body>
</html>can you highlight where i put the link to the imageNot really that hard to spot yourself.
<div id="scroll"><img src=http://www.webdeveloper.com/forum/archive/index.php/"wide.gif" width="2000" height="100" alt=""></div>That you mention "scroll box" and "flash" in the same sentence, -do you mean to say a "image slideshow" that 'scrolls' automatically? That is a box that is less-than the width of the user's screen BUT displays pictures that 'scroll' either right-to-left or left-to-right? The scrolling 'stops' on mouse-over, and each stopped image is it's own hyperlink so clicking it takes you to a larger, static image of same.
For that, there are quite a few nifty javascript scripts. I have even seen some really sweet JAVA image slideshows, -and some of them even do 'bottom-to-top' and/or 'top-to-bottom' scrolling! Very nice!! Imagine a 'photo album', -scrolling bottom-to-top (or vice-versa) along the left or right-hand side of your page! :)

If you are not confident with either javascript or JAVA slideshow scrollers and want 'the code & instructions how to populate it', leave a reply here. I could find a few nice, easy 'scrolling slideshow' scripts or applets and help you set them up.I basically want something of this sort

<!-- m --><a class="postlink" href="http://www.simsportsnet.com/madden/leaguemanager/leaguehome.asp?leagueid=204">http://www.simsportsnet.com/madden/leag ... agueid=204</a><!-- m -->

U see it in the middle, its the standingsOkay well that isnt an image. Its just one big table inside of an iframe. They used
<iframe id="qsHolder" name="qsHolder" width="100%" height="420" src=http://www.webdeveloper.com/forum/archive/index.php/"http://www.simsportsnet.com/madden/leaguemanager/window-standings.asp?leagueid=204" scrolling="auto" marginwidth="0" marginheight="0" frameborder="no" hspace="3"></iframe>Can the applet that you talk of be used to show transitions of of 50 - 70 per second or as quickly as a television picture and still have a specific frame or picture be used as a link and the main picture be paused.

thanks in advance SheenoDo you mind if I borrow your code for the scrolling applet

nice one Sheeno.
 
Back
Top