Jump to content

actionsketch

Members
  • Posts

    128
  • Joined

  • Last visited

About actionsketch

  • Birthday 04/04/1986

Contact Methods

  • AIM
    actionsketch
  • Website URL
    http://www.actionsketch.com
  • ICQ
    0

Profile Information

  • Location
    Austin, TX
  • Interests
    -Drawing<br />-3D<br />-Design<br />-Programming<br />-Web Development

actionsketch's Achievements

Member

Member (2/7)

0

Reputation

  1. The AJAX examples on the website don't work in the latest version of firefox.
  2. hmmm... no, it's not the coding aspect that I'm unable to do... it's the massive amounts of information that I am really not in a position to create my self =p
  3. I need a way of giving someone who wants to sign up on a website the ability to select what country they live in, and depending on that what state, and then city... does anyone know of a pre-made package for this or a way for me to accomplish this?
  4. Could you put it up as a test page some where so I can see it in action?
  5. actionsketch

    PopUp's

    I'm afriad thats something that isnt easily controlled. Because Javascript is used for popups, not all browsers take kindly to the window.open function.
  6. you can change the information within a div by using .innerHTML... like this: <div id="changeme" align="center"><img src="files/xxxxxx.jpg"></div><script>document.getElementById('changeme').innerHTML = "rotate.html";</script> but I assume you want to actually display the contents of rotate.html... which means you'll need to use an Iframe to display it, or just get rid of rotate.html all together and have javascript write what ever rotate.html would have contained using the example above.
  7. actionsketch

    Css-menu

    Well, you didnt really convey what it was that was wrong or what you wanted to change... but I think I can help you anyway. What you can do is set your menu to absolute, but don't use right. Instead, keep the default position it holds and move it by setting the margins.
  8. I copied these lines off of a website that shows movies. It should be pretty easy to understand. If you have any specific questions regarding how this code works, I'll help you with it. <object id="MediaPlayer1" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows® Media Player components..." type="application/x-oleobject" width="320" height="285"> <param name="fileName" value="http://media.ebaumsworld.com/wmv/shakyvoice.wmv"> <param name="animationatStart" value="true"> <param name="transparentatStart" value="true"> <param name="autoStart" value="true"> <param name="showControls" value="true"> <param name="Volume" value="-20"> <embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="http://media.ebaumsworld.com/wmv/shakyvoice.wmv" width=320 height=285 autostart=1 showcontrols=1 volume=-20></embed> </object>
  9. could you be a little more specific or give an example?
  10. switch the doctype to something like html 4.01 transitional
  11. javascript doesn't make passwords.
  12. I'm not sure background-color: transparent; is legal... try background-color: none;But if I'm wrong, then it's most likely because the validator warning you that the text might be hard to read if it isnt on a solid background color.
  13. well... the easiest option would require knowledge of php and possibly mysql if you were going to store the list somewhere... what is this going to be used for?
  14. Well, after a lot of foolin around... you are indeed right... the doctype is what's killin yah. Switch to something like html 4.01 transitional and it should all work fine.
  15. http://javascript.internet.com/navigation/...-directory.html
×
×
  • Create New...