Jump to content

AnonymousX

Members
  • Posts

    49
  • Joined

  • Last visited

About AnonymousX

  • Birthday 09/29/1988

Previous Fields

  • Languages
    HTML, XHTML, CSS, Javascripts, VB

Contact Methods

  • Website URL
    http://www.adhesionarts.com
  • ICQ
    0

AnonymousX's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Thanks, that was a very good description.
  2. AnonymousX

    Programming

    I'm newer to flash and creating flash buttons. I recently have attempted to make a flash button in which, on a rollover, it plays a short sequence. While there is no mouse over, I want the button to sit idle. I can't seem to make it do both. I can either program it and it will sit and do nothing, or program it so that it continuously flashes. Is what I'm doing possible? Or am I maybe just approaching it wrong?
  3. It's a script. You won't be able to see the sub-menu's in the design view of Dreamweaver. The only place that you can see the sub-menu in Dreamweaver is in the code. If you switch to code view, you can see that the words you see in the design view are probably the ones found in the <ul></ul> tags, and that the words you can't see in design view are those that you can't see in design view. The <ul></ul> tags are the "topic" or "titles" and the <li></li> are the submenu's for those. Works something similar to this.<ul>People-------------------------->This is the Topic or Title<li>Administration</li><li>Staff</li>--------------------------->Sub Menu's for this Title<li>Maintenance</li></ul><ul>Sports--------------------------->This is the Topic or Title<li>Football</li><li>Basketball</li>-------------->Sub Menu's for that Title<li>Baseball</li></ul>And so on and so on. You don't need to be able to see it in the design view. You have to do that part in the code view as far as I know. If I'm wrong somebody please correct me, but I hope this helps you some.
  4. AnonymousX

    Order Form

    I wasn't exactly sure where to post this, so I apologize if this is an inappropriate place to do so. I am looking to make an order form on my website. However, I don't wish for it to be a pay online as that conflicts with regulations for the organization. Instead, I want the form to be something that the user fills out, which sends to use through email. I also want an auto-responder to send to the user's email telling them how to make their payment through the postal mail. I'm not neccissarily looking for somebody to give me a code, but rather for somebody to direct me to a site where I may learn how to do this. Thanks.
  5. Sorry to double post but does anybody have a solution to this problem.
  6. After reading the problems with Firefox post, I thought this to be a fitting name :)Basically, I couldn't find a way to enable Server Side Includes on our web server, so I found a javascript include to use. It's the Ajax include script if you are familiar with it. It says that the compatibility for it is IE5+ but when I open it in IE7 the included content won't work. I tried opening the included content (navigation bar) in IE7 and it worked fine by itself, and the main HTML file opens and works fine in IE7, so the problem arises somewhere in the include. The code concerning the include is as follows. <html><head><script type="text/javascript">/************************************************ Ajax Includes script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)* This notice MUST stay intact for legal use* Visit Dynamic Drive at [url=http://www.dynamicdrive.com/]http://www.dynamicdrive.com/[/url] for full source code***********************************************///To include a page, invoke ajaxinclude("afile.htm") in the BODY of page//Included file MUST be from the same domain as the page displaying it.var rootdomain="http://"+window.location.hostnamefunction ajaxinclude(url) {var page_request = falseif (window.XMLHttpRequest) // if Mozilla, Safari etcpage_request = new XMLHttpRequest()else if (window.ActiveXObject){ // if IEtry {page_request = new ActiveXObject("Msxml2.XMLHTTP")} catch (e){try{page_request = new ActiveXObject("Microsoft.XMLHTTP")}catch (e){}}}elsereturn falsepage_request.open('GET', url, false) //get page synchronously page_request.send(null)writecontent(page_request)}function writecontent(page_request){if (window.location.href.indexOf("http")==-1 || page_request.status==200)document.write(page_request.responseText)}</script><title></title></head><body> <script type="text/javascript">ajaxinclude("hs_links.html")</script></body></html> I'm also having troubles including a second item, an announcement bar. When I include that, it throws the script for the drop menu out of sync. But that's the least of my concerns right now. Thanks in advance.
  7. I'm having trouble positioning the drop of my menu. I want to drop it further to the right, but don't know what the command is to perform such an act, or what to change. Any help would be appreciated.
  8. AnonymousX

    Positioning

    <style type="text/css">#dropmenudiv{position:absolute;background-color: #000066;border:1px solid black;border-bottom-width: 0;font: normalline-height:18px;z-index:100;}#dropmenudiv a{width: 100%;display: block;text-indent: 3px;border-bottom: 1px solid black;padding: 1px 0;font-weight: normal}#dropmenudiv a:hover{ /*hover background color*/background-color: #0000FF;}/* Sample CSS definition for the example list. Remove if desired */.navlist li {list-style-type: square;width: 135px;background-color: #0000FF;}</style>
  9. AnonymousX

    Positioning

    I am currently using a javascript for a drop down menu. I am somewhat new to CSS but know the basics. I am however confused when it comes to making my menu, which is vertically placed on the left of the page, drop directly to the right. Currently at the resolution of 1024x768 the menu will make the drop look semi messy by position the link in the center... A small diagram of my problem.Problem: | Link | | Link | | Link |Main Link--> | Link | | Link | | Link | | Link |Desired Effect:Main Link--> | Link | | Link | | Link | | Link | | Link |Basically what I'm saying is that I don't want any of the link moving to above where the main link begins, sorry I couldn't explain it better.
  10. AnonymousX

    Link

    I have a simple question. I want to add a link at the top of my page that, when click, will keep you on the same page, but will bring you to a point further down in the page. Could somebody either give me the command, or the name of it so I could search it myself? Thanks.
  11. Can you give me a file name or a directory path to the config file please?
  12. We initially began trying to use .html filetypes, but after several trials, found that it would not work. We then came upon the .shtml filetype and tried that but still couldn't get it to work. I don't believe we have tried an .asp file yet so maybe that might give us the result we want?
  13. I have recently been working on a project with a large number of links included in the navigation bar. However, I do not want to continuously update each page everytime there is a change in the links or in the scolling announcements. The first thing that was suggested to me were Server Side Includes. I was told to put the following command into the head tag of my website.<!--#include file="filename.html" -->However, this and several other similar commands didn't appear to work. I'd like to believe that our server is SSI capable (it's an Apple Apache Tomcat), so it puzzles me as to why it wouldn't work. I also know that if the code is even a little off, it won't work, and won't display an error message. Something else that was puzzling to me was that I could preview in my web editor and everything would work fine, but when directly opening the file, it wouldn't work.I was also told that I could use a javascript include, but if at all possible, I would prefer not to as javascripts aren't always compatible with browsers, and tend to load in a variety of ways. My questions are, does anybody have a good tutorial on how to use server side includes, or have an alternative method to the javascript so that I can get this site underway. Thanks!
  14. Can you think of an alternative to the situation? I have 56 links coming off of my main page, and part of the requirement is easy navigation. Previously the site was incredibly unorganized. The most rational way to organize such a complex site seemed to be a drop menu. However, the drop menu and announcement bar are currently something specific in each page. I don't want to have to update 56 pages everytime a new announcement comes out, I want it to be one simple fix and you're done. Unfortunately I know of no other solutions.
×
×
  • Create New...