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. veddermatic

    Xml_onLoad

    Oh, I forgot to metion... you can't access "this" in your XML.onLoad() because in your example, there is no object for 'this' to reference. The 'success' argument that is generated and passed to the function you define for your onLoad is just a true/false boolean value, NOT an object...
  2. veddermatic

    Exact popup window

    in your javascript (I assume you are calling a javascript function to do the pop-ups) make each window pop with a unique name by adding a counter-type thing to the window name: windowCount = 1; function popWin(myLocation,myWidth,myHeight){ windowCount++; newWinName =...
  3. veddermatic

    How do I scale my movie right

    Dependnig on your target browser(s) you can write in a dynamic height / width for the Flash movie based on the current browser width in javascript. Something like: theWidth = screen.wdith; theHeight = screen.height; myHeight = (do any math you need to); myWidth = (do any math you need for the...
  4. veddermatic

    Xml_onLoad

    Here is the "proper form" for do an XML onLoad: myXML = new XML(); myXML.load("someXMLfile.xml"); myXML.onLoad = doSomething; function doSomething(success){ if(success){ trace("The XML loaded!"); }else{ trace("XML did not load"); } }...
  5. veddermatic

    CGI-Scripting & Flash

    Any variable in a Flash movie can be passed to a CGI, and the results of said CGI passed back into Flash using the loadVariables() Method. You can send your current vars to a script, and read the return back in... so if the user entered their name/passwd into two text fields you named...

Part and Inventory Search

Back
Top