Search results

  1. E

    Input text field question: Flash 8 Prof

    You can do this with javascript. Try to find some tutorials through google maybe. Not sure the exact script from the top of my head here, but I don't believe it should be difficult to find. maybe try search with Javascript and forms tutorials Javascript with input boxes erase form text...
  2. E

    JavaScript: change text in a table cell

    Try this out <html> <head> <title>TEST</title> <style type="text/css"> #text0{display:none;} h5.textHead{cursor:pointer;cursor:hand/*IE*/;} </style> <script> function togDisplay(id){ var style = document.getElementById(id).style; style.display= (style.display=="block")...
  3. E

    Flash redirect

    insert a keyframe at the end of your flash movie, then add some actionscript to that frame to open the page you wish to re-direct too.
  4. E

    uploading color issues???

    maybe you can give an example of what your asking?
  5. E

    problems in safari, table won't center...

    thanks suz, that was my original thinking too, but no luck. maybe some css could make this work? any CSS gurus out there? thanks a million
  6. E

    problems in safari, table won't center...

    I am developing a site and I have found that it displays how I want it to in every browser except safari. I have one big table with 1 row and 3 cells, the left and right cells are set to 15% width and just set a nice margin for the main content which is contained inside the middle cell inside...
Top