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 strongm 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. justjim

    Naming array Variables -- need help !

    I mis-typed the code above as well as being incorrect syntax ... eval( "var TreeLine " + r + " = " + rline); One major flaw was the (space) here ^ WHEW !!! I finally got the code syntax correvt and working with : ..... eval("var...
  2. justjim

    Naming array Variables -- need help !

    I Again tried the EVAL method and still get errors here is how i wrote the code : 'rline' is a previously established varible with contents ... i want to place its contents into the on-the fly variable : TreeLine[r] .... eval( "var TreeLine " + r + " = " +...
  3. justjim

    Naming array Variables -- need help !

    Thanks Guys, I had tried the Eval method to setting a variable but must have screwed it up some how.... but that is nothing new :)) Thanks also, for the array tips... I am sure those will come in handy as I start of ill and manipulate the data in these arrays ... Next Question is...
  4. justjim

    Naming array Variables -- need help !

    I need to be able to establish dynamically a changing number to arrays, who naming convention would be like: rNums changes each time the code is run for(i=0;i<rNums+1;i++){ var aRay[i] = new Array(variableSizes) } does anyone know if it is possible/ or Not to dynamically set variable names...
  5. justjim

    WRITING TO NEW WINDOW

    I am trying to get a window to open and to then write out the new pages' code that has been dynamically created and placed in a string. ========== lines below are the last few lines to form the string =============== if (nncNames.length >= 1){tagStrList += &quot;<tr><td align=center><b> -...
  6. justjim

    Return to a Page and call a function that is not in the body's onLoad

    I am on a page .... I run a function that creates a table and writes it to the current page ... thereby clearing the current page and placing it in the address-history. Now on the new page in the table I have various links that contain data that i want to pass back to the original page to a...
  7. justjim

    Referencing an IFRAME's Properties ???

    i tried your suggestion ... with : document.frames.wPage.location.href and received a Permission denied error message .. I am Using IE 6 ... are you using Netscpe 6 or 7 ?? regards Jim
  8. justjim

    Referencing an IFRAME's Properties ???

    I have an IFRAME on my page and am trying to info from it. I get and &quot;Acces Denied error when i call the following function: the first function works with no problem but the second one that references the IFRAME is driving me crazy. // *********************************************** //...
  9. justjim

    IDEAS or Solution to Source Code Capture ?

    Starway .... The command document.location = &quot;view-source:&quot; + test; opens a notepad window as a matter of course in its command structure... i have been unable to open/ retrieve the code in anything else .... and I have no idea how to extract the contents of the NOTEPAD...
  10. justjim

    Referring to info in an IFRAME

    I have an IFRAME on my page and am trying to info from it. I get and &quot;Acces Denied error when i call the following function: the first function works with no problem but the second one that references the IFRAME is driving me crazy. // *********************************************** //...
  11. justjim

    What in the world is wrong with this script?

    I am not absolutely positive but i think you need to change the quotes around (soundclip) from : &quot;' + soundclip + '&quot; to: ' + soundclip + ' then:.... the resulting variable (tag) would then look like this : '<embed src='sounds/dancewolf-22-24m.mp3' autostart=True...
  12. justjim

    Prompting on onLoad only once

    KIM GREAT !!! answer to the problem
  13. justjim

    IDEAS or Solution to Source Code Capture ?

    Any one have IDEAS or SOLUTION ? I have a funtion that will return the source code of a location ... like a HREF ref or a file location on a hard drive. When called it will write the source code to a new window .. typically the default editor's window... in my case that is NOTEPAD. I want...

Part and Inventory Search

Back
Top