HTML - Some Kind Of File Selector
Hello, I'm relatively new to HTML and CSS and I've made my own website with a free DNS, http://retrotails.dyndns.org/ with the HTML done mostly Kompozer and the CSS was written from scratch. I'm going to have an NES emulator, vNES, with legal public domain ROMs. Here is the basic code for an applet.
Code: <div class="forcemid"> <applet archive="vnes.jar" code="vNES.class" height="480" width="512"> <param name="rom" value="/roms/Alter_Ego.nes" /> <param name="sound" value="" /> <param name="stereo" value="" /> <param name="scanlines" value="" /> <param name="scale" value="on" /> <param name="fps" value="off" /> <param name="p1_up" value="" /> <param name="p1_down" value="" /> <param name="p1_left" value="" /> <param name="p1_right" value="" /> <param name="p1_a" value="" /> <param name="p1_b" value="" /> <param name="p1_start" value="" /> <param name="p1_select" value="" /> <param name="p2_up" value="" /> <param name="p2_down" value="" /> <param name="p2_left" value="" /> <param name="p2_right" value="" /> <param name="p2_a" value="" /> <param name="p2_b" value="" /> <param name="p2_start" value="" /> <param name="p2_select" value="" /></applet></div> Most of those don't need to be changed (or even included), and there's also a ROM size value to show loading times, but most games (like this one, Alter Ego http://nesdev.parodius.com/bbs/viewtopic.php?t=7999 are around 32-128KB and load in less then a second. Currently, I have 1 HTML test file with Alter Ego, but I was wondering if it was possible to let param name="rom" value="" have a file selector so I don't have to make a bunch of HTML files with a single link changed. Similar TutorialsI have spent a lot of money in the past 2 years for a program called PayPal Shop Maker. I currently have Version 3.1 and I have contacted the support about how to customize their template for months with no response. I have looked the file over but things just do not make since to me. I am needing someone to look the file over, and to tell me what code does what. Maybe by commenting it better. I want to use the code in my new template for a better look and feel. Their default template stinks. Its just a 3 column page that is boring. Download the template here direct from their website. It is a zip file. The page I am needing the most help with is template.htm inside of the zip file. As you will see their program uses the template and uses features inside of the executable to compile a website with ease. However their is no website template documentation included, although they say it can be done. http://www.hkvstore.com/paypalshopma...mplatefile.asp If anyones willing to help me with this I would very much appreciate it. All of the message boards ive joined in the last few months never got any replies. I would be so greatful. Please somebody. Im sorta desperate. http://webmastered.biz/demo/addit/index.php/items What is this type of form called? could anybody tell me what kind of programming is being used to run this list? I want to set up a similar site. I found a copycat site that has the exact same code but I think they are owned by two different people because if you do a whois search on the domains, they are people in different parts of America How could I go about making a page like that ? One that I could make my own catagories for and then invite webmasters to join the list? dear viewers i am new to this forum . i need some help on creating a addon in internet explorer i work for quality check in a limited company. in quality checking procedure i will get a IE page where i have to check whether the spellings are correct and whether the space before after colon and fill stop are correct..... this is my checking procedure. i can find some colon spacing errors by looking at the page. but i dont want to waste my time on finding a bulky pages................... so please any one help me on creating a button or some other source which fits in Internet Explorer when i click that button it should find all the colons and compare the spaces before and after the colon and "?". remaining symbols i can add later...... thnaks in advance My site's platform has been changed to Linux from Windows and asp scripts I guess don't work with Linux, so I am looking for a Php script to replace a script that I used, but I don't know what it's called in order to do a search. Here is the script--it's just a simple feedback/email script. thanks <% Dim t1name,t1,t2name,t2 t1name = "Your Name" t1 = Request.Form("t1") t2name = "Kind Of Bike" t2 = Request.Form("t2") Dim stname,st stname = "Comments" st = Request.Form("st") Dim ObjMail Set ObjMail = Server.CreateObject("CDONTS.NewMail") ObjMail.To = "farley2628@comcast.net" 'in the next line you can change that email address to something else 'like "myform@myurl.com", just be sure and put it between quotes " " ObjMail.From = "farley2628@comcast.net" 'you can also change "Form Submission" to something else like "form results" etc. ObjMail.Subject = "Feedback Comment" ObjMail.Body = t1name & vbcrlf&_ t1 & vbcrlf&_ t2name & vbcrlf&_ t2 & vbcrlf&_ stname & vbcrlf&_ st ObjMail.Send Set ObjMail = Nothing 'HERE you make a choice. You can redirect the user to any page in your site Response.Redirect "http://www.nomagicneon.com" %> Hi, I'm new at this - so please forgive me for any noobness I'm making a pretty simple homepage in html. It's built with 3 frames: left = navigation top = banner main = contect When accessing one of my mainpages there's a (pretty long) loading-time 'cause of the heavy files on this specific page. I'd really like to tell the surfer there's stuff going on - so that he/she doesn't think something is wrong. I've searched and read about the java progress bars but I don't really get it - and when I just copy/paste codes there's no luck. This is how I would like it to be set up: When klicking this link (let's call it "files") in the left frame I'd like it if something (anything) could appear in the main frame that tells the user the page is loading, and when it's done loading; the page for "files" will appear in the main frame. A simple text without animations in the main frame would do just awesome! And I'd really like to keep my original design around this text. I'm Swedish so I hope all this was understandable. http://www.tutzor.com/tutorials/tutz...inal_large.jpg Like that website has. How would you code the boxes and the header/footer? Basically it's a blog layout, and it should be simple, but I don't know how to make it.. Thanks for your help! hello, i have seen on alot of web pages some kind of radial bgcolor of page,where at the top of page it's alot white and as you scroll down the page it gets darker and darker. does anyone knows what is this about? thanks I'm helping a friend build a site to sell textbooks, and the system that he's going to implement involves an "Order" page wherein you enter (or select) a five-digit class code for, say, five different classes. What I want to know how to do is, once someone has their classes all selected and hits the "order" button, that they are given an invoice for the amount of the books needed for those classes. So, essentially, I need to figure out a way to tie each of these five-digit class codes to a certain price which will be given to the customer to complete the order right there on the site. The old model had used a method wherein a list of the classes would be sent to my friend, who would then figure the cost and call the customer back with the total. I apologize if none of this is making sense. If not, please let me know what it is that's confusing so I may clarify. Hey, Firstly let me just say, Hi everyone, first time here, etc etc. Right I shall get straight to the point of why I am here, and hope that some kind soul can help me. 1. I work in a educational environment, and we are looking at publishing our students timetables on the intranet, running on a link something like http://intranet/students/timetable/ inside that file would be their timetable (just a plain old HTML doc) each student already has a unique ID and their file would take that name, so what I want to do, on our main index page is put a little tiny form in at the top, of which they can just type in their number, press go, and it to bring up there timetable. Buttttt! I have no idea how to do it, the actual form would need the preset link then take the inputed data, add it too the end, then forward on to the said page. is it possible? if so could you kindly tell me how? or a little script would be god sent Thanks in advance for that one if you reply. 2. I was going to do number two, but after all of my typing it dawned on me what the solution was, doh! Kieran. Hi all , I am kind of new to HTML, MHTML & Dreamweaver. I know the basics.... How to make this sort of a website .. http://www.keen.com/details/Spirited...nships/1205476 I mean what she has done in the red, green and pink part. I know how to create a website ...but how to make such a thing and post it in a website as profile. After I make the website in Dreamweaver should I save it as HTML or MHTML ? Also this is the web where i wd post it ( see attached pic ) ....now shd i post the source script from dreamweaver after i make the website ?? what i confused is , after i post only the script in the Describe your service area ( see pic ) ...wont it look for the source files, i mean the jpgs, gifs, mid etc etc ... I wd be thankful if someone can guide me on this .... Thanks Amlan Not Sure Where To Put This Because It Involves HTML And Javascript I Think, But Anyways I Want To Create A Page With A Dropdown Menu And When You Select A Specified Value Such As "Red" It Displays A Red Square And Then You Choose "Blue" And It Displays A Blue Square, Like So When You Select A Value It Displays Its Image. Any Help Is Much Appreciated Thanx. Hey, i need some help. im making a little web page where you can choose what colour you want the background to be by clicking on a little coloured square. can someone please help me with the coding for this, Hello everyone. I have a web page that contains a long form. One of the fields, "Show Date", has a <button> that triggers a DHTML Date Selector widget I downloaded. However, the formatting on the selector is not as desired--I recently placed the following line of CSS code in my shared CSS file: Code: div { background-repeat: no-repeat; position: absolute; visibility: visible; } I know for a fact that this line is responsible for the formatting bug, but since I have hundreds of div's that I need formatted with the no-repeat, absolute positioning, and visible attributes, this messes up my date selector (just the absolute). So basically my question is this: Is it possible to keep my single line of super-formatting all my DIVs while retaining the desired look for the Date Selector? (Possibly a line of CSS for the selector??) Any help would be greatly appreciated. Thanks! I should drink a lot of water, because I know it's healthy... but I don't like it. I usually mix it with like half a glass of orange juice or apple juice something. I'm kinda tired of just plain apple juice and orange juice. I really like the V8 Splash, with the fruit and vegetables in it, I think that may be a good drink? But it has to be something that is not bad for me, and that is healthy in large amounts since I will drink just that, and mix in water (And have a glass of water a few times a week). I used to buy the big cases of Diet Snapple and drink nothing but that... but I feel there must be something healthier out there. ---------------------------------- welcome to my website, www.spam.com . The following common code is not working in Firefox (3.0.11). It works in Safari (4.02) and IE7. When I say not working, I mean that when I click the submit button, the address does not change to the form processing url: Code: <!-- The data encoding type, enctype, MUST be specified as below --> <form enctype="multipart/form-data" action="uploader.php" method="POST"> <!-- MAX_FILE_SIZE must precede the file input field --> <input type="hidden" name="MAX_FILE_SIZE" value="30000" /> <!-- Name of input element determines name in $_FILES array --> Send this file: <input name="mp3file" type="file" /> <input type="submit" name="submit" value="Send File" /> </form> The file uploader.php does nothing, it is blank, I'm merely trying to establish communication. Once again, the code functions in IE and Safari so I dont think this is PHP related. I have a project written in ASP.NET under Visual Studio 2005 with C#. I am also using Infragistics objects for .NET Advantage 2007. In my page to attach resources to a record I have written a browser and am displaying previously chosen resources here. But when I click the upload button the page opens a new window (which is not a dialog window, but a normal one) which is exactly the same as my dialog window. How can this possibly happen? Can anyone help me? Hi ,I am new in html.Hope you can guide me step-by-step on this. I want to import my .txt file into the html form and the html form can add new item then to be add in to that particular .txt file too as well. can this be done? For example: (fruits.txt) 1.apple 2.banana 3.orange Can this fruit.txt be impoted to fruit.html page and show it at fruit.html page, at the same time, the fruit html page allow to add in new fruit, and once user add in new fruit, the fruit.txt file will be updated as well. Thanks for your guidiance and help. :-) Hi, Anybody have any idea how to convert a xml file to excel file.Actually i m working on visual studio and using C programming language.I have a xml file in the same directory where my programm is running.When i pressed a icon it will take the xml file automatically and convert to a excel file and show the outpt to the user.How can i achive this goal ??? Any help would be great. Thanks, Basanta |