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: jammer1221
  • Content: Threads
  • Order by date
  1. jammer1221

    Change attribute value of empty tags

    Hi all, I'm fairly new to XSL/T and I've been trying to get this problem to work. Here's the set up. I have a document full of MT elements. They contain a N attribute and a V attribute. The N's always have values but the V's sometimes don't. Is it possible to match all empty V attributes and if...
  2. jammer1221

    FF window.event

    Hey all, I ran the following code in Firefox and the returned values were rather strange to me. Can anyone shed some light on what's being returned? Code: setInterval(function(event) { console.log(event) },200) Data returned to console: 65 -9 -6 12 0 18 -9 9 -3 250 -12 -9 -6 -3 15 3 6 9 -3...
  3. jammer1221

    Redirect and .htaccess

    Hi all, I'm fairly new to managing Apache and I have a few questions. The first is, how do I redirect depending on the login. So, user comes to index.html and logins in as Dealer. I need to redirect them to dealer.html. Or they login as Marketing, I would then need them redirected to...
  4. jammer1221

    Relative URL & Cache

    Hey all, If I reference a JS or image file in page1.html like this <script src="ext.js"></script> and then in dir/otherpage.html I reference the same js file e.g. <script src="../ext.js"></script> Will it be in the browsers cache? What if I reference both files with an absolute path...
  5. jammer1221

    Group Options

    Hey all, I have a query that looks like this: SELECT tags.tag, assets.id FROM tags, assets WHERE tags.id=assets.id it returns this... +---------+----------+ | tags | id | +---------+----------+ | east | 10 | | west | 11 | | bumper | 10 | | coast | 11...
  6. jammer1221

    Iframes and Javascript

    Hey all, I have been developing a site and while still structuring the basic framework I decided to use iframes to display content and javascript to make the layout look exactly how I wanted it to. As I've continued to develop the site I've toyed with the thought of just leaving the javascript...
  7. jammer1221

    Scrollbar Events

    Hey All, I have an iframe that holds a few "widgets". These widgets are draggable and if the user drags them outside the dimensions of the iframe, the iframe, of course, creates scroll bars. Is there anyway to detect when the iframe creates the scroll bars without constantly querying the size...
  8. jammer1221

    Forward to a URL

    Hi All, I have an email address that I need all messages received to be forwarded to an internet URL. I.E. messages sent to tester@example.com will be forwarded to http://example.com/tester Is this possible? If so, can any one give me any pointers or urls? Thank you, Matt
  9. jammer1221

    ASP &amp; XML runtime error '800a01a8'

    Hi All, I am receiving the error "Microsoft JScript runtime error '800a01a8'" inside of this script. Error Message: Microsoft JScript runtime error '800a01a8' Object required /aspxml.asp, line 16 Script: <%@ Language=JScript%> <%Server.ScriptTimeout=21478836%>...
  10. jammer1221

    Form inside of a form

    Hey All, I was wondering if anyone knows a quick and easy way to fix this problem? <form method="post" action="..."> <input .../> <input .../> <form method="post" action="..."> <input .../> <input type="submit" /> </form> <input .../> <input type="submit" /> </form> Ok, so...
  11. jammer1221

    Javascript and Iframes

    Hey All, I have have an iframe in one of my pages and this iframe has some flash embedded on the page. The flash is turned into an object so eventually I can control playback. I've been trying and trying and I can't figure out how to access this object from outside the iframe. This is what I...
  12. jammer1221

    Saving XML

    Hey All, I've created and loaded some xml in my flash movie using this var _xml:XML = new XML(); //I left this middle out for posting... _xml.load("xml.xml"); Later on down the road I want to save this XML to my server using PHP. I've read about send and sendAndLoad and I've gotten those to...
  13. jammer1221

    PHP and Exec

    Hi All, I'm running IIS 5.1 on Win XP Pro, PHP 5.1.4, and I have some questions about exec/system. I have given the proper permissions to cmd.exe so PHP can talk to it, but, I am having trouble with PHP actually talking to it. I want to run a small batch file which launches a different...
  14. jammer1221

    Ajax Advice

    Hi guys, Looking for a little advice. Here is the standard code I'm using to send an Ajax request: function sendRequest() { http=createAjaxObj() if (http) { http.open("GET","url", true); http.onreadystatechange = function() { if (http.readyState == 4) { if(http.status ==...
  15. jammer1221

    FCS and publishing video stream

    Hi All, I am quite the novice with Flash, so any help is greatly appreciated. My situation: I am using Flash Communication Server to publish a web cam stream live. That is working perfectly, however, I want to also save that stream to FLV. After doing some research it seems as if all I need to...
  16. jammer1221

    FFMpeg-PHP

    Hi All, Quick qustion: Has anyone ever used ffmpeg with PHP on a Windows build (particullary w/ IIS) If so, could you give me any sort of advice or links or something. I just can't seem to get it working. Thanks, Matt
  17. jammer1221

    Javascript Functions

    Hi All, How can I pass a variable to a function like this... window.onload=function() { ... } P.S. when referring to a function like the one above, what do I call it? Thanks, Matt
  18. jammer1221

    Same Varible Name Errors

    Hi All, I am having some trouble implementing a script! On our site I have a script that creates a dynamic menu, which is on every page in the site. I am creating a photo gallery which is based on the prototype framework (The photo gallery script is LightBox 2). Whats happening is a lot of the...
  19. jammer1221

    Cross-Domain Issues

    Hi All, I'm using an XMLHTTPRequest to get the size of a file. I don't have any control whether or not the file is on my site. Is there any way (native to ajax) to check whether or not I will run into cross-domain problems? Currently I am just using indexOf("domainhere.com") to see if my...
  20. jammer1221

    PHP=&gt;ASP

    Hey all, I have this code and it is not functioning correctly. I am a PHP developer and know almost no ASP. Either way, I'm trying to write some varibles to a javascript function that will be called once the page loads. The two varibles are when the page first loads and the size of the current...

Part and Inventory Search

Back
Top