Avatar billede psychodwarf.dk Nybegynder
11. august 2003 - 16:42 Der er 7 kommentarer og
1 løsning

Scroll med eget billede(pil)

Jeg har set under alle spørgsmålene her på eksperten.dk, men jeg fatter ikke hvordan det fungerer... Jeg ønsker min egen scroll inde i en tabel...

som www.angyblue.com  ell. lign.

Jeg giver 200 point til den der hjælper mig ! !
Avatar billede jakobclausen Nybegynder
11. august 2003 - 16:51 #1
forkert link
Avatar billede psychodwarf.dk Nybegynder
11. august 2003 - 16:54 #2
www.angryblue.com  -  sorry...
Avatar billede syvon Nybegynder
11. august 2003 - 17:18 #3
det skulle være denne der er brugt

http://www.ghtml.com/showoff/scrollbar/index.html

og koden er her


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
    <title>ghtml</title>
<script language="javascript">
// Made by geeeet@ghtml.com
// Keep these two lines and you're free to use this code

// Known bugs :
// If ie4.5 mac, please press apple-t to remove sidebar, otherwise everything is pushed 20px to the right...

// Corrected bugs :
// 25.01.2001 - When the height of the span "content" was less than the height of the span "contentClip" a javascript error occured, function changed : move()
// 21.02.2001 - Scrolling text wasn't selectable in ie, function changed : move()
// 05.03.2001 - Ie x and y coordinates was wrong when page was scrolled, function changed : getMouse()

// 19.04.2001 - Finally able to remove browser-scrollbar if content is longer than the browser is high:
// Just put this in the style-tag right before the end head-tag:
// body {margin-left:0; margin-right:0; margin-top:0; margin-bottom:0; width:100%;height:100%;overflow:hidden}

// Touch me here :-)
var upH = 18; // Height of up-arrow
var upW = 12; // Width of up-arrow
var downH = 18; // Height of down-arrow
var downW = 12; // Width of down-arrow
var dragH = 26; // Height of scrollbar
var dragW = 17; // Width of scrollbar
var scrollH = 161; // Height of scrollbar
var speed = 4; // Scroll speed

// And now... go to the bottom of the page...

// Browser detection
var dom = document.getElementById ? true:false;
var nn4 = document.layers ? true:false;
var ie4 = document.all ? true:false;

var mouseY; // Mouse Y position onclick
var mouseX; // Mouse X position onclick

var clickUp = false; // If click on up-arrow
var clickDown = false; // If click on down-arrow
var clickDrag = false; // If click on scrollbar
var clickAbove = false; // If click above scrollbar
var clickBelow = false; // If click below scrollbar

var timer = setTimeout("",500); // Repeat variable
var upL; // Up-arrow X
var upT; // Up-arrow Y
var downL; // Down-arrow X
var downT; // Down-arrow Y
var dragL; // Scrollbar X
var dragT; // Scrollbar Y
var rulerL; // Ruler X
var rulerT; // Ruler Y
var contentT; // Content layer Y;
var contentH; // Content height
var contentClipH; // Content clip height
var scrollLength; // Number of pixels scrollbar should move
var startY; // Keeps track of offset between mouse and span

// Mousedown
function down(e){
    if((document.layers && e.which!=1) || (document.all && event.button!=1)) return true; // Enables the right mousebutton
    getMouse(e);
    startY = (mouseY - dragT);
   
    // If click on up-arrow
    if(mouseX >= upL && (mouseX <= (upL + upW)) && mouseY >= upT && (mouseY <= (upT + upH))){
        clickUp = true;
        return scrollUp();
    }   
    // Else if click on down-arrow
    else if(mouseX >= downL && (mouseX <= (downL + downW)) && mouseY >= downT && (mouseY <= (downT + downH))){
        clickDown = true;
        return scrollDown();
    }
    // Else if click on scrollbar
    else if(mouseX >= dragL && (mouseX <= (dragL + dragW)) && mouseY >= dragT && (mouseY <= (dragT + dragH))){
        clickDrag = true;
        return false;
    }
    else if(mouseX >= dragL && (mouseX <= (dragL + dragW)) && mouseY >= rulerT && (mouseY <= (rulerT + scrollH))){
        // If click above drag
        if(mouseY < dragT){
            clickAbove = true;
            clickUp = true;
            return scrollUp();
        }
        // Else click below drag
        else{
            clickBelow = true;
            clickDown = true;
            return scrollDown();
        }
    }
    // If no scrolling is to take place
    else{
        return true;
    }
}

// Drag function
function move(e){
    if(clickDrag && contentH > contentClipH){
        getMouse(e);
        dragT = (mouseY - startY);
       
        if(dragT < (rulerT))
            dragT = rulerT;       
        if(dragT > (rulerT + scrollH - dragH))
            dragT = (rulerT + scrollH - dragH);
       
        contentT = ((dragT - rulerT)*(1/scrollLength));
        contentT = eval('-' + contentT);

        moveTo();
       
        // So ie-pc doesn't select gifs
        if(ie4)
            return false;
    }
}

function up(){
    clearTimeout(timer);
    // Resetting variables
    clickUp = false;
    clickDown = false;
    clickDrag = false;
    clickAbove = false;
    clickBelow = false;
    return true;
}

// Reads content layer top
function getT(){
    if(ie4)
        contentT = document.all.content.style.pixelTop;
    else if(nn4)
        contentT = document.contentClip.document.content.top;
    else if(dom)
        contentT = parseInt(document.getElementById("content").style.top);
}

// Reads mouse X and Y coordinates
function getMouse(e){
    if(ie4){
        mouseY = event.clientY + document.body.scrollTop;
        mouseX = event.clientX + document.body.scrollLeft;
    }
    else if(nn4 || dom){
        mouseY = e.pageY;
        mouseX = e.pageX;
    }
}

// Moves the layer
function moveTo(){
    if(ie4){
        document.all.content.style.top = contentT;
        document.all.ruler.style.top = dragT;
        document.all.drag.style.top = dragT;
    }
    else if(nn4){
        document.contentClip.document.content.top = contentT;
        document.ruler.top = dragT;
        document.drag.top = dragT;
    }
    else if(dom){
        document.getElementById("content").style.top = contentT + "px";
        document.getElementById("drag").style.top = dragT + "px";
        document.getElementById("ruler").style.top = dragT + "px";
    }
}

// Scrolls up
function scrollUp(){
    getT();
   
    if(clickAbove){
        if(dragT <= (mouseY-(dragH/2)))
            return up();
    }
   
    if(clickUp){
        if(contentT < 0){       
            dragT = dragT - (speed*scrollLength);
           
            if(dragT < (rulerT))
                dragT = rulerT;
               
            contentT = contentT + speed;
            if(contentT > 0)
                contentT = 0;
           
            moveTo();
            timer = setTimeout("scrollUp()",25);
        }
    }
    return false;
}

// Scrolls down
function scrollDown(){
    getT();
   
    if(clickBelow){
        if(dragT >= (mouseY-(dragH/2)))
            return up();
    }

    if(clickDown){
        if(contentT > -(contentH - contentClipH)){           
            dragT = dragT + (speed*scrollLength);
            if(dragT > (rulerT + scrollH - dragH))
                dragT = (rulerT + scrollH - dragH);
           
            contentT = contentT - speed;
            if(contentT < -(contentH - contentClipH))
                contentT = -(contentH - contentClipH);
           
            moveTo();
            timer = setTimeout("scrollDown()",25);
        }
    }
    return false;
}

// reloads page to position the layers again
function reloadPage(){
    location.reload();
}

// Preload
function eventLoader(){
    if(ie4){
        // Up-arrow X and Y variables
        upL = document.all.up.style.pixelLeft;
        upT = document.all.up.style.pixelTop;       
        // Down-arrow X and Y variables
        downL = document.all.down.style.pixelLeft;
        downT = document.all.down.style.pixelTop;
        // Scrollbar X and Y variables
        dragL = document.all.drag.style.pixelLeft;
        dragT = document.all.drag.style.pixelTop;       
        // Ruler Y variable
        rulerT = document.all.ruler.style.pixelTop;       
        // Height of content layer and clip layer
        contentH = parseInt(document.all.content.scrollHeight);
        contentClipH = parseInt(document.all.contentClip.style.height);
    }
    else if(nn4){
        // Up-arrow X and Y variables
        upL = document.up.left;
        upT = document.up.top;       
        // Down-arrow X and Y variables
        downL = document.down.left;
        downT = document.down.top;       
        // Scrollbar X and Y variables
        dragL = document.drag.left;
        dragT = document.drag.top;       
        // Ruler Y variable
        rulerT = document.ruler.top;
        // Height of content layer and clip layer
        contentH = document.contentClip.document.content.clip.bottom;
        contentClipH = document.contentClip.clip.bottom;
    }
    else if(dom){
        // Up-arrow X and Y variables
        upL = parseInt(document.getElementById("up").style.left);
        upT = parseInt(document.getElementById("up").style.top);
        // Down-arrow X and Y variables
        downL = parseInt(document.getElementById("down").style.left);
        downT = parseInt(document.getElementById("down").style.top);
        // Scrollbar X and Y variables
        dragL = parseInt(document.getElementById("drag").style.left);
        dragT = parseInt(document.getElementById("drag").style.top);
        // Ruler Y variable
        rulerT = parseInt(document.getElementById("ruler").style.top);
        // Height of content layer and clip layer
        contentH = parseInt(document.getElementById("content").offsetHeight);
        contentClipH = parseInt(document.getElementById("contentClip").offsetHeight);
        document.getElementById("content").style.top = 0 + "px";
       
    }
    // Number of pixels scrollbar should move
    scrollLength = ((scrollH-dragH)/(contentH-contentClipH));
    // Initializes event capturing
    if(nn4){
        document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE | Event.MOUSEUP);
        window.onresize = reloadPage;
    }
    document.onmousedown = down;
    document.onmousemove = move;
    document.onmouseup = up;
}
</script>
<style type="text/css">
    #content {position: absolute;}
    body {margin-left:0; margin-right:0; margin-top:0; margin-bottom:0; width:100%;height:100%;overflow:hidden}
</style>

</head>

<body bgcolor="#ffffff" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" onLoad="eventLoader();">

<table border="0" cellspacing="0" cellpadding="0">
<tr>
    <td colspan="2"><img src="bg_scroll.gif" usemap="#link" border="0" width="269" height="255"></td>
</tr>
<tr>
    <td><img src="../../img/dot_trans.gif" width="34" height="1"></td>
</tr>
<tr>
    <td></td>
    <td><img src="readme_no_viewme.gif" alt="right-click and save" title="right-click and save" width="340" height="377" border="0"></td>
</tr>
<tr>
    <td><img src="../../img/dot_trans.gif" width="1" height="30"></td>
</tr>
</table>

<map name="link">
<area alt="scroller graphics by {netfrenzy}" title="scroller graphics by {netfrenzy}" coords="174,224,217,230" shape="rect" href="http://www.netfrenzy.dk" target="_blank">
<area alt="please report bugs" title="please report bugs" coords="135,224,158,230" shape="rect" href="mailto:geeeet@ghtml.com">
</map>

<!-- div containing up-arrow | change: top + left -->
<span id="up" style="position: absolute; top: 23px; left: 223px; width: 1px; height: 1px; z-index: 1;">
    <img src="up.gif" border="0">
</span>

<!-- div containing down-arrow | change: top + left -->
<span id="down" style="position: absolute; top: 204px; left: 223px; width: 1px; height: 1px; z-index: 2;">
    <img src="down.gif" border="0">
</span>

<!-- div containing scrollbar | change: top + left + width + height -->
<span id="drag" style="position: absolute; top: 42px; left: 221px; width: 17px; height: 26px; z-index: 3;">
    <img src="drag.gif" border="0">
</span>

<!-- div laying above scrollbar for netscape 6 protection | change: top + left + width + height -->
<span id="ruler" style="position: absolute; top: 42px; left: 221px; width: 17px; height: 26px; z-index: 4;"></span>

<!-- div containing content | change: top + left + width + height + clip -->
<span id="contentClip" style="position: absolute; top: 46px; left: 43px; width: 176px; height: 172px; clip:rect(0px,176px,172px,0px); visibility: visible; z-index: 5; overflow: hidden;">
    <span id="content">
    <img src="scroll_txt.gif">
    </span>
</span>

</body>
</html>
Avatar billede psychodwarf.dk Nybegynder
11. august 2003 - 22:53 #4
Det er meget fint, men jeg kan ikke finde ud af, hvor jeg skal sætte det ind... min html kode ser sådan ud...


<HTML>
<HEAD>
<TITLE>temp thomas - psychodwarf.dk2</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
</HEAD>
<style>
BODY {SCROLLBAR-FACE-COLOR: #000000;
SCROLLBAR-HIGHLIGHT-COLOR: #CC9933;
SCROLLBAR-SHADOW-COLOR: #CC9933;
SCROLLBAR-3DLIGHT-COLOR: #000000;
SCROLLBAR-ARROW-COLOR: #CC9933;
SCROLLBAR-TRACK-COLOR: #000000;
SCROLLBAR-DARKSHADOW-COLOR: #000000;
overflow: auto }
</style>


<style>
<!--
A:link { color: #000000; text-decoration : none;}
A:visited { color: #000000; text-decoration : none;}
A:active { color: #000000; text-decoration : none;}
A:hover { color: #cccccc; text-decoration : underline;}
-->
</style>


<BODY BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
<!-- ImageReady Slices (temp thomas - psychodwarf.dk2.psd) -->
<TABLE WIDTH=736 BORDER=0 CELLPADDING=0 CELLSPACING=0>
    <TR>
        <TD COLSPAN=8>
            <IMG SRC="images/psychodwarf.dk_01.gif" WIDTH=736 HEIGHT=136 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=136 ALT=""></TD>
    </TR>
    <TR>
        <TD ROWSPAN=10>
            <IMG SRC="images/psychodwarf.dk_02.gif" WIDTH=44 HEIGHT=399 ALT=""></TD>
        <TD COLSPAN=2 ROWSPAN=2>
            <IMG SRC="images/psychodwarf.dk_03.gif" WIDTH=67 HEIGHT=21 ALT=""></TD>
        <TD COLSPAN=5>
            <IMG SRC="images/psychodwarf.dk_04.gif" WIDTH=625 HEIGHT=10 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=10 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=3 ROWSPAN=2>
            <IMG SRC="images/psychodwarf.dk_05.gif" WIDTH=149 HEIGHT=23 ALT=""></TD>
       
    <TD height="353" ROWSPAN=8 background="images/psychodwarf.dk_06.gif"> <div style="overflow: auto;width:463px;height:353px;">
      <p>fgngfnfgn</p>
      <p>gn</p>
      <p>gn</p>
      <p>gnnggfn</p>
      <p>gfn</p>
      <p>gn</p>
      <p>gn</p>
      <p>g</p>
      <p>gnf</p>
      <p>ng</p>
      <p>gfn </p>
    <TD ROWSPAN=9>
            <IMG SRC="images/psychodwarf.dk_07.gif" WIDTH=13 HEIGHT=389 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=11 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=2>
            <IMG SRC="images/psychodwarf.dk_08.gif" WIDTH=67 HEIGHT=12 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=12 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=3>
            <IMG SRC="images/psychodwarf.dk_09.gif" WIDTH=104 HEIGHT=21 ALT=""></TD>
        <TD COLSPAN=2 ROWSPAN=4>
            <IMG SRC="images/psychodwarf.dk_10.gif" WIDTH=112 HEIGHT=68 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=21 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=3>
            <IMG SRC="images/psychodwarf.dk_11.gif" WIDTH=104 HEIGHT=12 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=12 ALT=""></TD>
    </TR>
    <TR>
        <TD>
            <IMG SRC="images/psychodwarf.dk_12.gif" WIDTH=59 HEIGHT=22 ALT=""></TD>
        <TD COLSPAN=2 ROWSPAN=2>
            <IMG SRC="images/psychodwarf.dk_13.gif" WIDTH=45 HEIGHT=35 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=22 ALT=""></TD>
    </TR>
    <TR>
        <TD>
            <IMG SRC="images/psychodwarf.dk_14.gif" WIDTH=59 HEIGHT=13 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=13 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=4>
            <IMG SRC="images/psychodwarf.dk_15.gif" WIDTH=113 HEIGHT=24 ALT=""></TD>
        <TD ROWSPAN=3>
            <IMG SRC="images/psychodwarf.dk_16.gif" WIDTH=103 HEIGHT=298 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=24 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=4 ROWSPAN=2>
            <IMG SRC="images/psychodwarf.dk_17.gif" WIDTH=113 HEIGHT=274 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=238 ALT=""></TD>
    </TR>
    <TR>
        <TD>
            <IMG SRC="images/psychodwarf.dk_18.gif" WIDTH=463 HEIGHT=36 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=36 ALT=""></TD>
    </TR>
    <TR>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=44 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=59 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=8 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=37 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=9 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=103 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=463 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=13 HEIGHT=1 ALT=""></TD>
        <TD></TD>
    </TR>
</TABLE>
<!-- End ImageReady Slices -->
</BODY>
</HTML>



Hvad gør jeg nu...
Avatar billede psychodwarf.dk Nybegynder
11. august 2003 - 23:14 #5
Kan du hjælpe mig syvon??
Avatar billede syvon Nybegynder
12. august 2003 - 10:54 #6
du kan jo lægge den i et dok for sig selv og hente det ind med en iframe
Avatar billede syvon Nybegynder
12. august 2003 - 12:08 #7
her er iframen lagt ind i din kode


<HTML>
<HEAD>
<TITLE>temp thomas - psychodwarf.dk2</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
</HEAD>
<style>
BODY {SCROLLBAR-FACE-COLOR: #000000;
SCROLLBAR-HIGHLIGHT-COLOR: #CC9933;
SCROLLBAR-SHADOW-COLOR: #CC9933;
SCROLLBAR-3DLIGHT-COLOR: #000000;
SCROLLBAR-ARROW-COLOR: #CC9933;
SCROLLBAR-TRACK-COLOR: #000000;
SCROLLBAR-DARKSHADOW-COLOR: #000000;
overflow: auto }
</style>


<style>
<!--
A:link { color: #000000; text-decoration : none;}
A:visited { color: #000000; text-decoration : none;}
A:active { color: #000000; text-decoration : none;}
A:hover { color: #cccccc; text-decoration : underline;}
-->
</style>


<BODY BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
<!-- ImageReady Slices (temp thomas - psychodwarf.dk2.psd) -->
<TABLE WIDTH=736 BORDER=0 CELLPADDING=0 CELLSPACING=0>
    <TR>
        <TD COLSPAN=8>
            <IMG SRC="images/psychodwarf.dk_01.gif" WIDTH=736 HEIGHT=136 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=136 ALT=""></TD>
    </TR>
    <TR>
        <TD ROWSPAN=10>
            <IMG SRC="images/psychodwarf.dk_02.gif" WIDTH=44 HEIGHT=399 ALT=""></TD>
        <TD COLSPAN=2 ROWSPAN=2>
            <IMG SRC="images/psychodwarf.dk_03.gif" WIDTH=67 HEIGHT=21 ALT=""></TD>
        <TD COLSPAN=5>
            <IMG SRC="images/psychodwarf.dk_04.gif" WIDTH=625 HEIGHT=10 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=10 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=3 ROWSPAN=2>
            <IMG SRC="images/psychodwarf.dk_05.gif" WIDTH=149 HEIGHT=23 ALT=""></TD>
       
    <TD height="353" ROWSPAN=8 background="images/psychodwarf.dk_06.gif">







<IFRAME WIDTH="100%" HEIGHT="100%" NAME="main" SRC="side" SCROLLING="no" FRAMEBORDER="0"></IFRAME>







    <TD ROWSPAN=9>
            <IMG SRC="images/psychodwarf.dk_07.gif" WIDTH=13 HEIGHT=389 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=11 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=2>
            <IMG SRC="images/psychodwarf.dk_08.gif" WIDTH=67 HEIGHT=12 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=12 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=3>
            <IMG SRC="images/psychodwarf.dk_09.gif" WIDTH=104 HEIGHT=21 ALT=""></TD>
        <TD COLSPAN=2 ROWSPAN=4>
            <IMG SRC="images/psychodwarf.dk_10.gif" WIDTH=112 HEIGHT=68 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=21 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=3>
            <IMG SRC="images/psychodwarf.dk_11.gif" WIDTH=104 HEIGHT=12 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=12 ALT=""></TD>
    </TR>
    <TR>
        <TD>
            <IMG SRC="images/psychodwarf.dk_12.gif" WIDTH=59 HEIGHT=22 ALT=""></TD>
        <TD COLSPAN=2 ROWSPAN=2>
            <IMG SRC="images/psychodwarf.dk_13.gif" WIDTH=45 HEIGHT=35 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=22 ALT=""></TD>
    </TR>
    <TR>
        <TD>
            <IMG SRC="images/psychodwarf.dk_14.gif" WIDTH=59 HEIGHT=13 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=13 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=4>
            <IMG SRC="images/psychodwarf.dk_15.gif" WIDTH=113 HEIGHT=24 ALT=""></TD>
        <TD ROWSPAN=3>
            <IMG SRC="images/psychodwarf.dk_16.gif" WIDTH=103 HEIGHT=298 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=24 ALT=""></TD>
    </TR>
    <TR>
        <TD COLSPAN=4 ROWSPAN=2>
            <IMG SRC="images/psychodwarf.dk_17.gif" WIDTH=113 HEIGHT=274 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=238 ALT=""></TD>
    </TR>
    <TR>
        <TD>
            <IMG SRC="images/psychodwarf.dk_18.gif" WIDTH=463 HEIGHT=36 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=36 ALT=""></TD>
    </TR>
    <TR>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=44 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=59 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=8 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=37 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=9 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=103 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=463 HEIGHT=1 ALT=""></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=13 HEIGHT=1 ALT=""></TD>
        <TD></TD>
    </TR>
</TABLE>
<!-- End ImageReady Slices -->
</BODY>
</HTML>
Avatar billede syvon Nybegynder
12. august 2003 - 12:24 #8
takker for points selv om det var mange for den smule så lige lidt tilbage

de er her http://www.eksperten.dk/spm/386515
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
Vi tilbyder markedets bedste kurser inden for webudvikling

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester