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. 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.
  16. KevinAr18

    Notpad and formatting

    Here's another one that I'm currently using. Notepad++ http://notepad-plus.sourceforge.net/
  17. KevinAr18

    how can I keep a javascript running on webpage when network is down

    Perhaps you could have a second iframe that attempts to retrieve the page. If it's successful, it will load the page in the iframe the user sees. If it fails (no network connection) it will prevent the page that the user sees from reloading from the server.
  18. KevinAr18

    Saving dynamic content in HTML.

    One solution would be to display the html source code and allow the user to copy and paste it. Another solution would be to create a browser extension that allowed you to save the data. What situation are you using this feature in? A website? Intranet app? For personal use? What is the...
  19. KevinAr18

    help getting this IE script to work in firefox

    Do you know if a confirm alert will be acceptable? Basically, the license agreement would be put on the main page, and then a little pop-up message would appear asking whether the user accepts the agreement or not. If this is ok, then let me know where I can send you the files.
  20. KevinAr18

    help getting this IE script to work in firefox

    I posted about your particular issue here: http://forums.mozillazine.org/viewtopic.php?p=1349367 It looks like it may require the use of an extension in order to do what you need.

Part and Inventory Search

Back
Top