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: *

  1. ericaalicen

    go to bottom of page after script

    I have a "check all" link at the bottom of a long page. When you click it, you're returned to the top of the page. I need to return the user to the bottom of the page once the script has run, and I've tried a number of different ways of doing this from examples online to no avail. Can anyone...
  2. ericaalicen

    loop and set multiple layers

    I have a script that is used to hide and show layers that works fine. Now the client wants an option to expand all layers at once and I can't seem to get the syntax right. <script type="text/javascript"> function expandAll(list) { var mycount = "#mycount#" for (i=0; i < mycount; i++)...
  3. ericaalicen

    load images dynamically from xml in loop

    I'm attempting to load some images into flash from xml. I'm attempting to loop through the xml and load the images, and set rollover, rollout, and onclick actions. I'm having trouble with the syntax. The rollover works, but the rollout doesn't. I have the images loading statically outside of the...
  4. ericaalicen

    Using webservice to pass xml

    I'm using cfinvoke to pass an xml structure to a cfc. This seems to work fine if I use cfdump to output the XML. But when I try to parse the XML, I get an error "An error occured while Parsing an XML document." At the moment, I'm creating and parsing my own XML data. And the code I use to...
  5. ericaalicen

    actionscript dynamic variable name in loop

    I'm having an issue looping through and accessing variable names dynamically in actionscript. This code to call one directly works. mcSquares.square1.onRollOver = function(): Void { mcSquares.square1._visible = false; }; When I put the code in the loop and try to make it work for...
  6. ericaalicen

    Error passing dynamically generated layer name to stateChanged()

    I am a newbie to Ajax. I modified the script below to use 3 variables instead of 1. The first two I have managed to successfully append to the url of the page being called in the script. The third variable I need to pass from showParts() to stateChanged() but when I try to pass it it gives me a...
  7. ericaalicen

    firefox loading anchor links above the div it's inside

    I've been working on this for hours. The layout is fine in IE but the navigation loads about 10px higher in Firefox. Any suggestions? http://demo.netsense.net/broadreach/
  8. ericaalicen

    Convert ASP with XML example to PHP with XML

    I'm in way over my head. I code in coldfusion and have had a project dropped in my lap that requires me to send an xmlRequest in PHP and the example code I've been given is in ASP. This is the sample code, I've changed the url for privacy protection. <%@ Language=vbScript%> <% Dim xmlRequest...
  9. ericaalicen

    2 items remaining

    I have a page loading 2 flash files. The files load, but in IE the status bar reads "2 items remaining" and just hangs. The flash loads and runs but the status bar just hangs. This doesn't happen in Firefox. I've been searching on this and I've seen that if you have files/directories named "ad"...
  10. ericaalicen

    Can CSS frame third party website?

    I'm new to CSS and have the task of framing a blog from a third party website into the layout of one of my clients. I could do this with html frames, but have been trying to determine if I can do this with CSS instead? I've found all sorts of examples of CSS frame layouts, but none that actually...
  11. ericaalicen

    Layer script not working in Firefox

    I'm not very javascript savvy, but it seems to me that firefox should work like ns6 from other postings I've looked at. Any ideas how to make this work in Firefox? <SCRIPT LANGUAGE="JavaScript"> <!-- Begin var ie4 = (document.all) ? true : false; var ns4 = (document.layers) ? true : false; var...
  12. ericaalicen

    Need to Pass Session from non ssl to ssl domain

    I have a shopping cart session. In the past I've inserted the shopping cart contents and shipping info before moving so the ssl area to get credit card info. I've done this because in moving to the ssl area I always get an error that session.Cart does not exist if I try to carry the session. In...
  13. ericaalicen

    object expected

    I'm still stuck on adding 7 days to a date. I think the problem is in the way I'm calling the function or passing the value? I'm getting an object expected error. I do have some Cold Fusion in here as well, that appears to be fine. <cfparam name=&quot;start&quot; default=&quot;#Now()#&quot;>...
  14. ericaalicen

    attempting to add 7 days to a date real time

    I need to take a starting date entered in a form field and add 7 days and display that in the form field for an ending date. I'm not especially javascript savvy. I've put together a script from a number of different things I've found on line, but the ending date always appears as 0. <script>...
  15. ericaalicen

    How to make a flash movie link?

    I need to make a movie clip link. I've tried linking the instances of the graphic within the movie clip. I get a rollover like it's a button, but it doesn't actually go anywhere when it's clicked. It would also work for me to just make the whole flash movie a link. But I have no idea how to go...

Part and Inventory Search

Back
Top