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

    Variable for radio buttons?

    Hi I am calling this function with chkQ("document.responses.q1") and my form has a set of radio buttons named q1. The for loop runs the correct number of times but the var rad_val is always undefined? function chkQ (id) { for (var i=0; i < id.length; i++) { if (id[i].checked)...
  2. Cheech

    Advanced settings in Manage Sites won't open

    I would guess that you have to define a site with server tech before these options are available [Peace][Pipe]
  3. Cheech

    .split into arrays?

    Hi, I finally figured this out.. In case it might help someone else import flash.external.ExternalInterface; var getScore:Object; var susData:String; var vewData:Array; var arrVisited:String; getScore = ExternalInterface.call("parent.SCORM_GetDataChunk"); var getScore:String; susData =...
  4. Cheech

    Quick Flash Page Template Design.

    Wrong forum but your template would probably include all possible elements that you could want saved in the library as movie clips and then dragged into place as required. Cheech [Peace][Pipe]
  5. Cheech

    css background not working ?

    Hi please post your solution, my guess would have been body { background-color: #FFFFFF; background-image: url(Images/WeaverBk.jpg); } Cheech [Peace][Pipe]
  6. Cheech

    .split into arrays?

    Hi I am trying to get the following code to work. Code: import flash.external.ExternalInterface; var getScore = ExternalInterface.call("parent.SCORM_GetDataChunk"); var susData = getScore.split("=")[1]; veiwData = susData.split("|",1); arrVisited = veiwData.split(","); for...
  7. Cheech

    Hiding a column based on cell contents

    Hi, I have a MACRO that clears out the data from and repopulates a months worth of dates in a time sheet spreadsheet. I need to hide the weekend columns, row 6 of each column is populated with the day of the week. What I would like to do is loop through all of the columns in a given range and...
  8. Cheech

    A wierdy in DW CS4. A CSS thing, I think

    Design view is notorius for not being able to select content inside divs. Try double clicking the content it normally works [Peace][Pipe]
  9. Cheech

    Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING

    I believe that vacunita only used **** instead of a valid email address just change that and you should be good to go. Cheech [Peace][Pipe]
  10. Cheech

    Open MS office documents in Office not the browser

    Put them in zip files to force the download? [Peace][Pipe]
  11. Cheech

    javascript progress indicator

    I am trying to build a progress indicator that I can dynamically change with javascript. Currently I have the following in the document. <div id="ind_head">10%</div> <div id="ind_10"></div> <div id="ind_head">20%</div> <div id="ind_20"></div> And the css div#ind_10, div#ind_20{ width:200px...
  12. Cheech

    How do I make the menu bar for selected page different?

    I am humbled by your praise ;-p I'll try to remember to have msn logged on. Give me a shout. [Peace][Pipe]
  13. Cheech

    How do I make the menu bar for selected page different?

    By adding a bit into the CSS you can set an active state. Have a look at the page and css below to see how this has been achieved. Page, look at lines 20, 22 and 24 for the id tags (different id's for validation) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  14. Cheech

    Installing the W3C Validator

    Has anyone had any experience of installing the W3C validator locally? We develop xhtml e-learning modules and have to provide evidence of W3C validation for every page. This is fine when we do it online by upload for a project with only a few pages but some can have many many more than that. I...
  15. Cheech

    Save file &amp; close window?

    Thanks for the lesson in browser behaviour(no sarcasm intended), but can it be achieved? [Peace][Pipe]
  16. Cheech

    Save file &amp; close window?

    I don't know what you mean by wrong diagnosis? That is what I experience? In Firefox the window opens to print then closes itself. If the user selects save then all that happens is the save dialogue opens. In IE the print works as above, but the save opens a new window, then the save dialogue...
  17. Cheech

    Save file &amp; close window?

    Hi thanks for the feedback/comments. Your correct, Firefox closes the window correctly. In fact it doesn't even appear to open to the user. IE still doesn't close. Removing the Pragma & Expires headers has no effect on either browser. Cheech [Peace][Pipe]
  18. Cheech

    Save file &amp; close window?

    Okay, I have reposted this at http://www.tek-tips.com/viewthread.cfm?qid=1530653&page=1 [Peace][Pipe]
  19. Cheech

    Closing a page.

    Hi I have the following code that I post a form to with 2 submit buttons. One has the value Save and the other Print. If the user selects the Print button the page correctly loads, the print dialogue opens & after printing the page correctly closes. However if the user selects Save, even though...

Part and Inventory Search

Back
Top