Jump to content

joecoolaug

Members
  • Posts

    95
  • Joined

  • Last visited

Everything posted by joecoolaug

  1. Uhh... off topic of the forum? Totally.
  2. That's a nice question to get to know people, but it has nothing to do with this forum. Please don't do that!
  3. Can anyone tell me where to find some cheap and/or, preferably free audio and video flash-creating software?
  4. I've noticed recently a lot of people asking questions about things that are already in the tutorials (and that I've been posting a lot on this forum recently, sorry, I've gotten a little carried away giving my opinion). The reason for that, I believe, is that they have had bad experiences with other tutorials not giving detailed enough explainations. Some of it, I agree, is that people don't feel like looking for their answers and just ask us.I've noticed while browsing the javascript forums here a bunch of code I'd never seen from a people on various questions. I've read the javascript tutorial almost ten times, and I find myself totally lost in the complex code(from the people posting). One of the most outstanding things was the explaination of JS cookies. They barely explain anything, and I basically have to use the code that they give me because I don't know enough about it to change it to what I need it for.All I'm asking for is that someone from the W3schools staff will see this and do something about the more detailed explanation and adding some of that complex code I've been seeing .Can anybody relate?
  5. If you're lazy, instead of clicking through all those pages on the tutorials or posting a question on here, first search for what you're looking for on the W3Schools search. It's so much easier.
  6. Well I think that the best thing to add would be detailed explainations of every bit of code. I've noticed that some of the PHP tutorial pages and many others don't explain certain bits of code at all or not enough.
  7. I entirely agree with you. However, I do believe that the W3schools tutorials are a bit lacking in explainations and information in some areas.
  8. If you read all the tutorials, especially the HTML and CSS ones, you can discover the meaning of them. It's actually hard to explain. I think you should go to them instead of me .
  9. It would stray from the entire point of this W3schools forum itself, but I like the idea.
  10. Maybe simply international sites for W3schools--instead of its competitors.
  11. Are you sure that's wrong? I've been using it and it works both ways.
  12. Oh ok... I don't know much about that, then.
  13. joecoolaug

    IE7's bug

    I think you're talking about ClearTime--maybe ClearType. I've got IE7 and I don't see anything wrong with it.
  14. That sounds like a nice idea. The only thing is that I doubt that they would ever do that because they get nearly all their revenue from ads, and if you could download the site or the individual pages, their traffic and therefore revenue would quickly drop. I know I would download it immediately.
  15. I'm not sure what you mean.
  16. That's a good idea. Sometimes you feel blank.
  17. I like that idea very much.Well, I just thought of something. W3schools is only about web language tutorials. Maybe it could be a posting forum for articles on www languages. Ahh... I love stating the obvious.
  18. I think that's a silly idea, too. W3schools only has tutorials for WWW languages (W3).
  19. That would be nice if it could be fixed. That's horrible that people want to hack sites.
  20. I'm not entirely sure what you want... but I've got a suggestion, and I'm not sure if it will work.To define the Background COLOR or IMAGE in javascript <script> tag \\This one will only work for background COLORSdocument.getElementById("divID").bgColor="#CCCCCC"\\I doubt that this next one will work, but you could try it.\\If it works, it will work for background IMAGESdocument.getElementById("divID").background="http://www.domain.com/image.png" To define the Background image in CSS <style> tag \\This SHOULD workdiv.style.backgroundImage.url()\\something like that
  21. I think I can help you.It's a little hard to explain it, but I'll try. Put the <script> in the <head> tag and the <img> wherever you want it to be on you document. All you have to do is change the imageURL1-10.png of the "if" and "else if" tags in the javascript to whatever your picture URLs are. Note that I'm using the simplest javascript in this so that you can look all this up on W3schools if you want to and that in this script that I wrote you can only have 10 images that are randomly selected. If you want to have more or fewer, just reply and someone else or I will give you the revised code. <html><head><script type="text/javascript">\\The script is started.var a=math.random()\\The variable for the random selection.\\I'm going to be making this for 10 pictures.\\If you want more or less, just reply so I can change it for you.if (a <= .1){document.getElementById("pleasedontchangeunlessyouchangealltheotheronestoo").src="imageURL1.png"}else if (a<=.2,>.1){document.getElementById("pleasedontchangeunlessyouchangealltheotheronestoo").src="imageURL2.png"}else if (a<=.3,>.2){document.getElementById("pleasedontchangeunlessyouchangealltheotheronestoo").src="imageURL3.png"}else if (a<=.4,>.3){document.getElementById("pleasedontchangeunlessyouchangealltheotheronestoo").src="imageURL4.png"}else if (a<=.5,>.4){document.getElementById("pleasedontchangeunlessyouchangealltheotheronestoo").src="imageURL5.png"}else if (a<=.6,>.5){document.getElementById("pleasedontchangeunlessyouchangealltheotheronestoo").src="imageURL6.png"}else if (a<=.7,>.6){document.getElementById("pleasedontchangeunlessyouchangealltheotheronestoo").src="imageURL7.png"}else if (a<=.8,>.7){document.getElementById("pleasedontchangeunlessyouchangealltheotheronestoo").src="imageURL8.png"}else if (a<=.9,>.8){document.getElementById("pleasedontchangeunlessyouchangealltheotheronestoo").src="imageURL9.png"}else if (a<=1,>.9){document.getElementById("pleasedontchangeunlessyouchangealltheotheronestoo").src="imageURL10.png"}</script></head><body><img src="thisURLdoesntmatter.cool" id="pleasedontchangeunlessyouchangealltheotheronestoo" /></body></html> I think you can figure out whatever I didn't explain. Reply if you need any help.Something else--the tenth image will have about 1/100,000,000 chance LESS than all the others of coming up. It's not nearly anything that any normal person visiting your webpage would ever even look for, let alone notice. I just thought it would be cool to let you know.
  22. Could you please explain in detail what you're trying to do. That would help a lot.
  23. I'm not entirely sure what you mean, but I could try to help you. I could help you more if you explain what you mean by "putting it inside." <script TYPE="text/javascript">document.write("<iframe src=http://www.bla.com>bla</iframe>")</script> That will write "<iframe src=http://www.blah.com></iframe>" to the document. <script TYPE="text/javascript">var a="<iframe src=http://www.bla.com>bla</iframe>"</script> That will create a variable with the value of the iframe tage you specified. I'm not sure if either of these will help you, and if they don't, please explain your question better.
  24. Could you give me the URL or all the code to the page, and maybe explain your question a little better . Thank you! I'll try to help you then.
×
×
  • Create New...