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: *

  • Users: Guyon
  • Order by date
  1. Guyon

    Batch processing (with droplets) mangles file name

    Hi, I'm trying to set up a droplet in PS7-trial that opens an image, reduces it by 50% and then saves it to the same name as the original - overwriting it if necessary. I tend to have nice long descriptive names (with a unique date-id stamp at the beginning, like 200304-012 View from top of...
  2. Guyon

    Downloading XML into Netscape

    Ha! found my problem. In my ASP code I was going Response.SetHeader("Content-type","text/xml") instead of Response.ContentType = "text/xml" now my tree works like a charm!
  3. Guyon

    Break INTO frames...

    Have you tried... if ( window.parent === window ) window.location.href = "my frame url";
  4. Guyon

    ok can someone tell me what is wron

    My first guess is that you are confusing Java with JavaScript. JavaScript doesn't support keywords like import and export. My next guess is that you are trying to animate a piece of text by moving it diagonally down the page. Nothing wrong with that, but you might like to try... * using a...
  5. Guyon

    Pre-Loading .js Files

    Add an onload attribute to the <body> tag to call you js code e.g. <html><body onload=&quot;init();&quot;> html stuff... </body></html> <script language=&quot;JavaScript&quot;> function init() { // your initialisation stuff here } </script>
  6. Guyon

    Downloading XML into Netscape

    I'm trying to download an XML document into a Netscape browser (6 or higher) but I am having trouble getting at the data. The code I am using is similar to this... function loadDoc(caller, url) { xDoc = document.implementation.createDocument(&quot;&quot;, &quot;&quot;, null); xDoc.onload...

Part and Inventory Search

Back
Top