User Profile

Collapse

Profile Sidebar

Collapse
mybay
mybay
Last Activity: Dec 12 '06, 10:31 PM
Joined: Dec 10 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mybay
    replied to Image map selection
    to highlight your selections you can use an image with abolute positioning, zindex higher then the image map and an alpha filter... to place them just use your mouse coords. to remember how many you have placed use an array and fill it as you make selections, once filled disallow more selections...
    See more | Go to post

    Leave a comment:


  • mybay
    replied to question about web counter
    Hi srinpraveen, I'm afraid I wont satisfy your question, but I may point you in the right direction.

    The problem with client-side scripts/languages like JavaScript is that you can perform things using it on the web page only while the user is on that page and you cant save anything once the user leaves the page or closes the browser. So if a user keeps refreshing one of the frames on your website you can count the number of times...
    See more | Go to post

    Leave a comment:


  • Why not do something like that, and it works in firefox :)

    <script type="text/javascript">
    document.forms['order'].onclick = DoMath;
    var total;
    function DoMath(){
    total = 0;
    for(i = 0; i < document.forms[0].length; i++)
    if(document.for ms[0][i].type == 'radio')
    if(document.for ms[0][i].checked){
    total += parseInt(docume nt.forms[0][i].value);
    }
    document.forms[0]['total'].value...
    See more | Go to post

    Leave a comment:


  • Why not do something like that, and it works in firefox :)

    <script type="text/javascript">
    document.forms['order'].onclick = DoMath;
    var total;
    function DoMath(){
    total = 0;
    for(i = 0; i < document.forms[0].length; i++)
    if(document.for ms[0][i].type == 'radio')
    if(document.for ms[0][i].checked){
    total += parseInt(docume nt.forms[0][i].value);
    ...
    See more | Go to post

    Leave a comment:


  • mybay
    replied to Cursor problem
    Here is the page, I keep testing so it may change sponteneously :)

    http://69.124.68.181:4 44/menutest.asp
    See more | Go to post

    Leave a comment:


  • mybay
    replied to Cursor problem
    Thank you AricC, but this I have tryed before, the document style setting.
    More then that, the only mouse event that fires during the whole thing is onmousemove.
    What I think I need is a way to either replace the "progress" cursor, since it shows up regardless of anything. If I change it to arrow, the change will still be going on, but I wont see it...
    See more | Go to post

    Leave a comment:


  • mybay
    started a topic Cursor problem

    Cursor problem

    Hi guys,

    I have a problem with the cursor, in particular I'd like to change it at a certain time.
    I have a simple html page where I move a div depending on the mouse movement. I get mouse x coords by window.event.cl ientX and set the div.style.left value. Everything works perfectly, but on some slower computers it seems to be too much and the motion is a bit choppy, which I dont mind. What I do mind is while its "thinking"...
    See more | Go to post
No activity results to display
Show More
Working...