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 SkipVought 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. keteracel

    custom movie importer in QT-Java

    Hello, I've been browsing the QT-Java documentation for days now but it doesn't seem to have the information I need. Basically I need to know how to make my own movie importer. I have my own file format that I need to be able to play. The documentation doesn't provide a 'checklist' of things...
  2. keteracel

    Javascript Quicktime controls not working in Firefox

    I need to control a quicktime movie in one frame, from a control script in another frame. The only function I need to use is the SetURL function (see http://developer.apple.com/documentation/QuickTime/REF/QT41_HTML/QT41WhatsNew-72.html). In IE6, this works fine. The QT manual page says that we...
  3. keteracel

    Detecting CSS compatibility

    oh, hang on, you just want to know if a browser supports it... why? You should assume that browsers can support CSS1 at least. If they don't support CSS1 then they probably won't support javascript (definately not the DOM functions) and so their browser is useless to you as a developer and them...
  4. keteracel

    Forum Design Problem

    send some code for us to debug...
  5. keteracel

    Detecting CSS compatibility

    Use feature sensing rather than trying to test for a specific browser as the name of browsers changes and your code may not! CliveC's solution is good start. He's using feature sensing to see if the browser can get elements from the DOM structure by using getElementById("id") but this...
  6. keteracel

    Popup menu script with images

    please! will people please submit a url example of what they are trying to do... Most people have such poor english that it is impossible to decide what they want from their descriptions! Give Examples...
  7. keteracel

    MenuExt in IE and Javascript / DHTML question

    give us some more info, like an example of what you are doing... This woulod help us no end in helping you!
  8. keteracel

    Right Click Menu and Copy & Paste

    try looking at the browsers developer support pages. They should tell you what the browser can and cannot do. I doubt there is functionality to do this without making some huge javascript program -- the benefits are far outweighed by the amount of time needed to implement! Besides, all users...
  9. keteracel

    Reload

    To do it programatically, you need to add a no-cache section to the http headers. Try the following in php: <?php Header(&quot;Cache-Control: must-revalidate&quot;); $offset = 60; $ExpireString = &quot;Expires: &quot; . gmdate(&quot;D, d M Y H:i:s&quot;, time() + $offset) . &quot...
  10. keteracel

    Javascript Frames - Opening From Input Box

    try the following for some password protection stuff... http://javascript.internet.com/passwords/ The best ones are those with the non-reversable password protection... But you would be much better off with an SSSL and a database than with js. keteracel
  11. keteracel

    scrollIntoView() with DIVs

    can you provide the code so we can see what exactly you are asking... www.keteracel.com
  12. keteracel

    I've started making a website using

    cian, be careful with using the units. I think it was mozilla that had a problem with certain dimensions specified with the px after them. If in doubt, leave it out -- it defaults to px anyway. The only time you really need it in is with dimensions measured in %. As for the fact that IE and...
  13. keteracel

    Getting sliced images to stay together

    EdwardMartinIII has hit the nail right on the head. This is one of those spectacularly stupid browser anomolies. The HTML standard clearly states that any whitespace between elements is to be ignored unless it is within CDATA (character data, and then only one whitespace is to be accepted), but...
  14. keteracel

    maintaining state by appending a form or query string

    What exactly do you want to do? (1)If you have a form with a single text-box, for example, do you want to append the 'hidden' data to that data, e.g. if the text-box held &quot;hello&quot; in it and the 'hidden' data was to be &quot; world!&quot;, would you want to change the value of the text...
  15. keteracel

    delay

    The window.setTimeout(&quot;functionName()&quot;,delay); function should suffice. Where functionName is any function or javascript code and delay is an integer value of time in milliseconds -- i.e. 1000 corresponds to 1 second. Example: <html> <head> <title>timer example - provided by...
  16. keteracel

    Why is location.href not executed immediately?

    The reason why it works in the second example is due to the fact that modern browsers use a Document Object Model (DOM) type internal structure. They can only process a certain html tag when they have received all the data for it -- i.e when it has received all the markup up to and including the...
  17. keteracel

    Break out of my frames

    For my website (www.keteracel.com - still under construction) I use the following code to break out of frames: <script type=&quot;text/javascript&quot;> <!-- if (window != top) top.location.href=location.href; // --> </script> It seems to work just fine, try going to...

Part and Inventory Search

Back
Top