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!

Recent content by KevinAr18

  1. KevinAr18

    Code to Capture Screenshot

    Well, with a firefox extension, you may be able to do it. If Firefox does not already have this feature built into it (I don't think that it does), then it may require writing something in c++ (and compiling it). It would also need to be made accessible via javascript. Then using an...
  2. KevinAr18

    Daily Background Image

    If it is of any help to you... Although this solution with javascript does work, a more robust solution would be to go with a server side script. From the perspective of which solution is best for a particular situation, a sever side script would be the best choice in this particular situation...
  3. KevinAr18

    IE,FIREFOX,NETSCAPE not executing code

    In reference to your post about filters, the reason that Netscape/Firefox/Mozilla do not support it, is because they are not a part of the Internet Standards (defined by w3.org and other organizations). However, the problem, at least up to now, has been that there was no standard for making...
  4. KevinAr18

    Dynamic Progress Page

    The script worked for me in Firefox when I commented out this line: window.location.href = "<%= Request.QueryString["destPage"]%>"; The script was sending me to the new page before it ever started running the progress indicator. Apart from that, the script works the same in IE and Firefox...
  5. KevinAr18

    help getting this IE script to work in firefox

    Ok, found the solution on xulplanet. Replace this line: <text value="Put your User Ageement message here." style=""/> with the following code: <!-- Credits to: http://xulplanet.com/tutorials/xulqa/q_tmpl_html-iterate-full.html --> <html xmlns:html="http://www.w3.org/1999/xhtml">...
  6. KevinAr18

    help getting this IE script to work in firefox

    Let me see if I can figure out a way to let you insert regular html into there. I don't really know the xml specs myself, either.
  7. KevinAr18

    How do u input highlighted data on webpage into a file

    About the closest solution that I can think of (without using plugins or other languages) would be to create a frame around all of the pages that you visit. Then insert some javascript into the frame to retreive the selected text and submit that data to a server-side script (perl/php)...
  8. KevinAr18

    Find percentage of file downloaded

    Like adam0101's link, such a feature is gonna require something more than just basic javascript. In addition to adam0101's solution, I suspect that you could also retreive the information in Firefox by creating a special extension.
  9. KevinAr18

    Open page in new window thru javascript

    Here's a "tutorial" on using window.open: http://www.pageresource.com/jscript/jwinopen.htm (from the following tutorials: http://www.pageresource.com/jscript/index4.htm)
  10. KevinAr18

    Auto Close Browser

    If you are setting up an intranet app, then there is a more stable solution that you could use for Firefox.
  11. KevinAr18

    Window.Focus()

    This thread deals with closing a window when it loses focuse: http://www.tek-tips.com/viewthread.cfm?qid=1029426&page=5 You could adapt the code for your use. Note the two different code paths -- one for IE, one for other browsers. If, however, you need a more reliable solution, then you could...
  12. KevinAr18

    Save HTML without SaveAs Dialog.

    sorry, I meant to write intranet app
  13. KevinAr18

    js will not enter function

    Perpaps the problem is in the other code. Remove the additional code and test it. If it works, add in more until you narrow down the problem. Also, take a look at the javascipt errors (if any): In IE, double click on the icon in the bottom, left corner of the status bar. In Firefox, use the...
  14. KevinAr18

    Save HTML without SaveAs Dialog.

    Is this an internet app for personal use?
  15. KevinAr18

    Open first window to exact size and specs

    For Firefox, you could use an extension (or maybe even xul) to do this.

Part and Inventory Search

Back
Top