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 Wanet Telecoms Ltd 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. harlekeyn

    WMV in layer does not play . . .

    Some days later: I fixed the problem now. Here's the solution: 1) load the wmv-player in the layer, with filename = "" 2) then change its src by using document.itmeintro.filename = "myvideo.wmv"; -- where 'itmeintro' is whatever you ID you gave it -- I did not try it...
  2. harlekeyn

    submitting info from many forms at once

    That's why you target that page to another (hidden) frame.
  3. harlekeyn

    submitting info from many forms at once

    Try the following. In your javascript: function submitall() { document.form1.submit(); document.form2.submit(); document.form3.submit(); } and your forms: <form action=&quot;blabla&quot; method=POST target=&quot;a&quot; name=&quot;form1&quot;> <input name=&quot;myinput&quot;> <input...
  4. harlekeyn

    Dynamic &quot;Text &quot; as opposed to returned Input Text Box &quot;Text&quot;

    It comes down to this: The only way to have text appear on a page, without loading a new page is to use a layer. Now, Netscape and MS could initially not agree on how to call such a layer. So it was always a difficult task to use layers, since you had to first determine what type of browser...
  5. harlekeyn

    Dynamic &quot;Text &quot; as opposed to returned Input Text Box &quot;Text&quot;

    Sure, do you have netmeeting? email me: harlekeyn@gmx.net
  6. harlekeyn

    delay an event handler

    There is no way to generally control all event handlers. but I guess the following would do the job too: good luck, Tristan Laurillard harlekeyn@gmx.net index.html: ===================================== <html> <head><title></title> </head> <frameset...
  7. harlekeyn

    file downloading

    There are two ways: 1) In html: <a href=&quot;mydoc.pdf&quot;>download</a> or, if you prefer an image: <a href=&quot;mydoc.pdf&quot;><img border=0 src=&quot;mypic.gif&quot;></a> 2) With Javascript: <SCRIPT language=&quot;Javascript&quot;> function mydownload() {...
  8. harlekeyn

    Image preload and Netscape - Strange Problem

    I am not completely sure where your solution goes wrong, but have you considered simply preloading all images, somewhere on your page, by displaying them with width=1 height=1 ? You might see a small line of dots somwhere, but you could always say to people that that was just a trendy...
  9. harlekeyn

    display text from an htm file as source

    You can either place some (calculated) value into a dynamic layer or into a form-field. But for Javascript to read a complete html-file (all code from <html> to </html>) is impossible. So, assuming you want to place a calculation into a form field, try something like this. somewhere in body...
  10. harlekeyn

    GIF ANIMATED AS TRANSITION BETWEEN PAGES

    perhaps you could try to do it with frames that change their size from 0%,100% to 100%,0% So, frame A shows your page 1, frame B shows the animated gif. Then onsubmit, the frame sizes change, and when page 2 is ready it replaces the complete thing...
  11. harlekeyn

    how can i zip a file with javascript?

    With Javascript, this is impossible for sure.
  12. harlekeyn

    Dynamic &quot;Text &quot; as opposed to returned Input Text Box &quot;Text&quot;

    Yes you can. It is very easy with the following script I wrote, which I normally keep in a src-file called &quot;monitor.js.&quot; I use it all the time to create dynamic layers. Perhaps now you can help me answer my question. Please read : thread216-227913 Tristan Laurillard...
  13. harlekeyn

    WMV in layer does not play . . .

    This could be a difficult one. Howcome the following embedded WMV loads, but does not play? Tristan Laurillard harlekeyn@gmx.net ========================================= <html> <head> <SCRIPT language=&quot;Javascript&quot;> // This function (monitor) is...

Part and Inventory Search

Back
Top