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

    Simple field question

    Thanks kennethkawamoto, Something that simple eh? Cheers Again Mark
  2. anyideas

    Simple field question

    Hi, Have do you set the text color of a field? I've looked for ages and can't find an answer or bit of code. Thanks in advance Mark
  3. anyideas

    How to use radio buttons

    Hey kennethkawamoto thanks very much... work perfect. Mark
  4. anyideas

    How to use radio buttons

    Hello, I have a list of 3 dates, each of which shoud be associated to a radio button, therefore only one radio button should ever be clicked. How do you do this in director 8.5? I've tried using the following code to determine if a checkbox was clicked and it returned "sprite 119" -...
  5. anyideas

    timer question

    Job Done... Thanks for the help guys!!
  6. anyideas

    timer question

    hi qazs Thats nearly exactly what I'm looking for :) cheers The only thing is.. its counting upwards in this format: 0-80476.01 0-80476.02 I just want it to count from 0 to 5 minutes.. is that possible. Also have an if condition.. if timer > 1 minute then do condition end if .. where do...
  7. anyideas

    timer question

    Hi, I'm trying to create a countdown timer that last 60 seconds and depending on the time left of the timer updates a text field showing this. However, I need to get this to work as the movie is playing and not just static on one frame. I'm using director 8.5 to create in. If anyone can...
  8. anyideas

    UPDATE error due to list box

    Hi, Post your code so we can have a looky. Mark
  9. anyideas

    Searching Function

    Ok, you need to use the xmlDom for this. I used it with an xml file called messages.xml that consisted of the following: messages.xml --------------- <?xml version=&quot;1.0&quot;?> <worksheet> <table> <row> <cell> <data>1</data> </cell>...
  10. anyideas

    Searching Function

    Yes it can be done... just working on it now.
  11. anyideas

    Searching Function

    Are you sure it's not more like, Can you double check <worksheet> <table columncount=5> <row> <cellA> <data>number</data> </cellA> <cellB> <data>name</data> </cellB> </row> <row> <cellA>...
  12. anyideas

    Searching Function

    Hi, Why don't you use the javascript xmldom if client side or the asp xmldom serverside? Whats the structure of the xml doc? Mark
  13. anyideas

    Sending an e-mail

    OK, just post the radio button coding. Mark
  14. anyideas

    VERY URGENT. Simple validation.

    stormbind ah ha.. just to quick... for my own good as mwolf00 gladly points out!! darn too!! mark
  15. anyideas

    Timed sound delay...

    <body onload=&quot;wait1minute()&quot;> <script> function wait1minute() { //wait 1 minute = 60000 window.setTimeout(&quot;Play Sound&quot;, 60000); } </script>
  16. anyideas

    VERY URGENT. Simple validation.

    <INPUT TYPE=&quot;submit&quot; NAME=&quot;Submit&quot; VALUE=&quot;Submit&quot;> needs to be <INPUT TYPE=&quot;submit&quot; NAME=&quot;Submit&quot; VALUE=&quot;Submit&quot; onclick=&quot;checkEmail()&quot;> Mark
  17. anyideas

    Sending an e-mail

    Sorry - Post the code in the previous page, with the form tags and the radio form elements. Mark
  18. anyideas

    Hi, If I have an ASP script that

    You can't see hidden form elements on a page, they run silently in the background, but can be accessed with client side scripting (javascript and vbscript) and they are posted to the receiving page just like other &quot;normal&quot; form elements. Mark
  19. anyideas

    Sending an e-mail

    Any luck with moley's idea? I'd put: Response.write(&quot;If statement succeeded&quot;) between the &quot;if&quot; condition and dim line, then you'll know that the if statement and radio value works, even if the email doesn't send or work. If moleys idea doesn't work post the code that...
  20. anyideas

    Clearing History, Not Letting User Go Back

    Found this site asking the same question and a few workarounds: http://beta.experts-exchange.com/Web/Web_Languages/JavaScript/Q_20565941.html

Part and Inventory Search

Back
Top