Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. UCENwebster

    manipulating anchors in a different frame

    I have two frames: one is a menu, and the other is a long text document with anchors. I want the links in the menu frame to control the position of the document in the text frame, using the anchors. I've tried this: <a href=&quot;#anchorname&quot; target=&quot;textframe&quot;>Link</a> but it...
  2. UCENwebster

    making a page NS4 compatible

    Hi, I just made a really simple page using Dreamweaver MX, and I want to make sure that it is NS4 compatible. Is there some sort of shortcut or command that will make sure the stuff I put on my web page will work properly in NS4? In particular, I've run into problems with the provided image...
  3. UCENwebster

    open New Window

    hi What's the best way to open a fully functioning new window? I used to use window.open('url','',''), but I've received complaints that it doesn't work on all systems correctly. Anybody know a good method for this?
  4. UCENwebster

    netscape 6 color

    nicely done, it works perfectly. thanks a bunch webster
  5. UCENwebster

    netscape 6 color

    does anybody have a good way to switch NS6-7 colors from the format &quot;rgb(R,G,B)&quot; to a hex value like &quot;#rrggbb&quot;?
  6. UCENwebster

    Need way to continuously monitor mouse position

    thanks man, works perfect
  7. UCENwebster

    Need way to continuously monitor mouse position

    I have a script that needs to know the coordinates of the mouse every half second, like this: setInterval( 'CheckMouseXY()', 500); But I only know how to check the mouse coordinates using an event object: event.screenX or event.screenY What I need is a way to check the mouse without...
  8. UCENwebster

    referencing a parent object

    Hey everybody, I have an object within an object, (a child object, if you will), and I'm trying to find a way to reference the parent object from the child object and store it as a variable in the child, so that I can reference back and forth between the two, like so... var v = new newObject()...
  9. UCENwebster

    easy question...

    I don't feel like looking this up in my 2000 page book, so... What is the method for jumping to a new url, in the same window--you know, just like when you click on a link, but using Javascript. isn't it like gotoURL('str') or something??
  10. UCENwebster

    function questions

    hey jemminger, shouldn't it be: while( !succeed ) try(); I don't want you to give up on the first try...
  11. UCENwebster

    Button to multiply

    If you wanna keep it simple just stick this on your page <input type=&quot;text&quot; name=&quot;the_number&quot; id=&quot;the_number&quot;> <input type=&quot;submit&quot; name=&quot;Multiply&quot; value=&quot;Multiply&quot; onClick=&quot;document.getElementById('the_number').value =...
  12. UCENwebster

    slow animation in NN6

    Thanks man...unfortuneately I don't think my viewers will be web-savy enough to have upgraded to NS7 when they visit my page. Oh well--they should take their heads out of their asses anyway. Thanks for the tip
  13. UCENwebster

    slow animation in NN6

    How bout this...go to the page itself (it's just a beta test page, no links or nuthin) and check out the source. That way you can see it in action, and see the code too. The address is: theuniversitycenters.ucsd.edu/commuter/commuterpage.html You might be right about MM_findObj()---it's a...
  14. UCENwebster

    slow animation in NN6

    Hey guys, thanks for your help so far, but I'm still having a heck of a time trying to get this layer animation fast enough to use. I tried using the setInterval() function instead of the setTimeout() function, but the performance did not imporve at all. I don't understand why the animation...
  15. UCENwebster

    slow animation in NN6

    Here's the code--it's a recursive function that causes a tiny little dot image to &quot;bounce&quot; horizontally next to a link. Like I said, it works fine in IE5. Do you think it has to do with parseInt()? I've heard that parseInt doesn't work well with Netscape...[sadeyes] function...
  16. UCENwebster

    slow animation in NN6

    Hi, I'm having trouble with a layer animation using setTimeout() in Navigator 6. With IE5 it switches frames every 50 milliseconds, but when viewed in Netscape it slows down considerably. Does anybody know a fast function like setTimeout() that works well in Netscape6? Thanks Webster
  17. UCENwebster

    accessing nested layers

    lets say I have a nested sublayer: <div id='biglayer'> <div id='nested_layer'></div> </div> and I want to change the properties of the nested layer called 'nested_layer' from a javascript function. How do I reference that layer in IE and NN? I appreciate any help you can offer
  18. UCENwebster

    problems with strings stored in arrays

    Hi, I'm having a mickeymouse problem here-- I'm trying to use an array to store the names of several images I want to use. But when I use the array in a function call, it doesn't work-- When I do this it's ok, the picture swaps like it's supposed to: { MM_swapImage( 'imgHandle' , ''...

Part and Inventory Search

Back
Top