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!

Search results for query: *

  • Users: ToddWW
  • Content: Threads
  • Order by date
  1. ToddWW

    onClick Not Working

    Hi folks. Been searching google and forums for a while and unable to find this result. Here's a quick simple piece of code to explain. <html> <head> <script> function myFunc() { alert('hello'); } function ajaxCall() { //performing ajax call here and using innerHTML to place...
  2. ToddWW

    Access Select List Option Value on Hover

    I've read a few posts dated back several years. Wondering if there's a new implementation for IE 8 or 9 or Safari so I can access select list properties by just hovering over the option. I know I can do it with a crafty CSS list, but I'm trying to implement something quick on a page using a...
  3. ToddWW

    Animated GIF stops when using AJAX

    I have a chunk of javascript that changes the opacity of the web page, positions an animated GIF in the middle of the screen, then fires an XMLHttpRequest to the server to collect data. When the XMLHttpRequest object gets to the Send method, the animation stops until the object gets a response...
  4. ToddWW

    Strange Hover Behavior

    I have table elements with a "td1" class definition. My CSS is written as follows .td1:hover { border:red solid 1px; } However, if I change the border style using JavaScript like this. elmtRef.style.border = "blue solid 1px;" Everything works great, but the hover no longer fires on...
  5. ToddWW

    Need SQL Join Help

    I hope this is simple. I have a sports database with a table for teams and a table for games. Teams tm_id tm_name tm_conf tm_div Games gm_homeid (maps to tm_id in Teams) gm_oppid (maps to tm_id in Teams) gm_date gm_homescore gm_oppscore What would a query look like that will give me the conf...
  6. ToddWW

    Transfer PDF between servers using HTTP POST

    Hello All. I've been working on this for a few days now, scouring the internet and this site for some solutions. I need to be able to move a PDF from one ASP server to another ASP server (not client to server) using HTTP POST. FTP is not an option becuase I need a synchronous transaction with...
  7. ToddWW

    Basic CSS Question

    I have a div element that automatically stretches with the width of the window. How do I place one piece of text on the left and another on the right of that div element. Do I need to nest two div or span elements in there? Thanks in advance. ToddWW
  8. ToddWW

    Access properties in Firefox

    I like to use my own properties in certain elements then be able to access them using document.getElementById(). It works great in IE, but not Firefox. <div id="mydiv" fileType="pdf"> var v1 = document.getElementById("mydiv"); alert(v1.fileType); I get an alert window in IE with "pdf". In...
  9. ToddWW

    iframe onload event

    I have an onload event in an iframe element and I'm preloading with about:blank. The onload event fires in both IE and Firefox when the parent document loads. When I use javascript to change the src of the iframe to a PDF document, the onload event fires in Firefox but not IE8. When I load...
  10. ToddWW

    RI Code Not Working Correctly

    I have been working with FoxPro since v3. Currently working with VFP 8. I have a database with one table that has a primary key and a second table with a regular key. I create the join and click the button to modify the referential integrity. All three (insert,delete,update) default to...
  11. ToddWW

    Stored Procedures in VFP 8

    I've been using stored procedures in VFP 7 using the following steps. OPEN DATABASE fbdata1 SHARED MODIFY PROCEDURE With VFP 7, I could write procedures, etc... and call them from my ASP web pages. Everything would work great. After making any changes, I could just hit File / Save and the...
  12. ToddWW

    Routing and Remote Access &amp; VPN

    Currently I have several computers on a 10.10.10.x network. On one of them (10.10.10.7) I have a dialout PPTP VPN connection configured through "Network and Dialup Connections". When I make the connection to the VPN host, everything works and I can access the resources on that remote network...
  13. ToddWW

    Problem with loadMovie()

    I've got a flash intro that I purchased from a template site. I am loading it into my flash project using loadMovie(). The .swf loads fine however within the .swf there are many references to _root. I assume the author didn't anticipate anyone loading this .swf into a parent flash movie. For...
  14. ToddWW

    Multiple VPN Connections / Share with LAN

    Windows 2k Server I need to make multiple PPTP and L2PT VPN connections with our vendors and customers. Currently I do this on a single machine and it works just fine. I need to know how I can share access to those VPN connections with other computers on my LAN. Here is what I have done so...
  15. ToddWW

    Suppress ASP Response

    This might be an IIS question, but I thought I would start here. Is there any way to suppress a response from an ASP web page or remove default headers from the response such as ASP Session ID, etc.. I have an automated thin client posting information to an ASP web page. The thin client is...
  16. ToddWW

    Sound on button

    In my OVER state frame for a button symbol, I have selected a 1 second sound (engine idling). I select the LOOP option so the engine idling sound plays continuously. This all works fine when the user hovers over the button. Now, is there an easy way to stop the sound when the user moves away...
  17. ToddWW

    Showing Errors

    I'm using Flash 8 and Actionscript 2 and I am fairly new to this programming. What I did notice, on my system, is the lack of errors. For example, if I try to apply a method to an object that doesn't exist, I don't get an error. It just ignores the line of code. But I do get syntax errors if...
  18. ToddWW

    Performance w/ Multiple MovieClips

    I have a question regarding performance. If I create a movie clip symbol with a simple tween. Let's say a 60px circle with a half fill that uses a simple 10-20 frame tween to make the fill look like liquid (wavy). At what # of instances on the stage would performance become an issue. I would...
  19. ToddWW

    Multi MovieClips in ScrollPane

    I need to place multiple movie clips into a flash scroll pane component. The problem I am running into is I need to create thes movie clips dynamically using the attachMovie method. Here is what I have. Each movie clip is a draggable 300x100 box with various content inside. My Actionscript...
  20. ToddWW

    Returning Dataset from Server

    I am a fairly new to Flash and OOP. I am working on a project that has us at the point where we are communicating with the server. I am familiar with the various methods to communicate Flash with external data. I have studied many tutorials, books, and both the Flash and ASP forums on this...

Part and Inventory Search

Back
Top