Jump to content

iyeru42

Members
  • Posts

    231
  • Joined

  • Last visited

Everything posted by iyeru42

  1. *dodges* Watch what you're saying there. Flash can't go above web standards unless you have some miracle plugin that bypasses it. If you're planning on using flash 8, export the flash animation as a PNG sequence. After that, go into Photoshop and add each image as a separate frame for each new layer, then export the animated GIF through Photoshop. Make sure you don't have any transparencies.
  2. Oh? And where in your javaScript says it's at the end? I have a pretty good idea. if(window.scroll = (this,this)) {// Do this.} But since everyone has a different reso, it'll be hard to make this script.
  3. Page ranks shmage ranks. I've never had a Google PR before, even with valid code.
  4. iyeru42

    going to a page.

    Just remember you can't use header() during the body of your script. Unless your body of script executes before the <!DOCTYPE (and html tags)
  5. That's not entirely true. PHP.net's function index has a bunch of ADR functions for PDF Files.
  6. Then why not use your first code? It seems that works in both.
  7. IE5 and IE6 are no longer supported in Microsoft's eyes. What's your code?
  8. That doesn't work because you change the page at 5000 seconds. On page two, have the below code again: setTimeout("window.location='http://www.url2.com'",5000); Otherwise it won't work. Or you could do a frameset, but I'm totally against that.
  9. You also don't need alternates to use different stylesheets. Heck, I used JS a while back. <script>function changeStyle(file) { document.getElementByID("stylesheet").href = file; // For HREF document.getElementByID("stylesheet").src = file; // For SRC // Use one or the other for above code.}</script> And then my link tag would be: <link id="stylesheet" rel="stylesheet" href="blah.css"> And the button would be: <input type="button" onClick="changeStyle('blah2.css')"> You can also do that for Links rather than buttons.
  10. To start at the beginning, the javaScript should be window.scroll(0,0), which will put the browser at x=0 and y=0 (top-left.)
  11. It matters to me though, no matter what my connection is, I'm all about file size.
  12. The code is already in the guy's post.<html><head> <title> Guest Book Mail_to Form</title> </head><body><form><table><tr> <td> Please Sign My Guestbook</td></tr><tr> <td> Name:<input type="text" id="visitor name" size="15" maxlength="30 /> </td> </tr><tr><td> <textarea name="message" rows="10" cols"45"> </textarea> </td> </tr><tr><td> <input type="submit" /> <input type="reset" /></table></form></body></html> By the way, you don't need that table information. Use the below instead: <html><head> <title> Guest Book Mail_to Form</title> </head><body><form><div style="text-align:left;">Please Sign My Guestbook<br /><br /><br />Name: <input type="text" id="visitor name" size="15" maxlength="30"><br /><br /><textarea name="message" rows="10" cols="45" onClick="this.value=''">Insert Message</textarea><br /><br /><center><input type="submit"> <input type="reset"></center></div></form></body></html>
  13. I could, but then it would have more bytes attached to the file. Using the TAGGER tag and using the CSS I provided causes the file(s) to have less space attached.<TAGGER> != <span class="tagger"> in terms of bytes.Same with.tagger != tagger in terms of bytes.
  14. If you're using a PHP file or HTML, this wouldn't happen, because when HTML is used (in either a PHP file or HTM file) the URLs are literal and you don't need stuff like that. <a href="blah%2Ephp"> Is the same as <a href="blah.php"> to HTML. HTML uses it interchangeably, and does not convert them to URL-safe things such as that. (Unless sending it through a query like you have done.)
  15. That's the reason I don't use XHTML, because I have to use a source file. It just seems extra weight is attached.
  16. Actually, GIMP is more like Photoshop 4, but with extra menus on each window. (Photoshop 4 didn't have a windows set.)
  17. That may be true, but if I add something like this:TAGGER { margin:5px; font-family:Courier, serif; font-size:10px; color:#000;} The browser would output it with a 5px margin, courier font face (serif) and a font-size of 10 pixels (#000 is usually the default for BODY tag. If not, TAGGER will inherit.)
  18. Thanks. BTW justsomeguy, your IF statement needs the curly brackets, unless you put it on one line.
  19. Both Gimp and Paint.Net don't have the "blending effects" that Photoshop does, but it does have the type of blending you can use per layer (IE: Opacity and stuff like "Color Burn.") Both have filters for layers (don't use emboss like you would in Photoshop's blending options, because it'll make your image terrible.)GIMP Requires the GTK Environment, whilist Paint.NET only needs WinXP+.NET Framework 2.
  20. Quite frankly I like Paint.Net better, because all of the tools/etc. are in one window set. GIMPShop uses a window set, but the file menu for the topmost window doesn't do what the main gimp window does (the one with Xtns)
  21. When JS does that, it'll say:Unterminated String or whatever it is.
  22. Yeah, but the users could be smart enough to view the source code.
  23. Yeah, but some people don't create scripts to critique, we just have sites to show off.
  24. I was wondering how one would send PHP stuff into JavaScript. For example, make a javaScript variable act under a PHP class, or sending PHP variables to a javaScript variable.
×
×
  • Create New...