Jump to content

Little Goat

Members
  • Posts

    733
  • Joined

  • Last visited

Everything posted by Little Goat

  1. Thanx soo much scott!just a few questions though, cause I want ot understand the code.what are clientX and clientY?LG
  2. I'm sorry, my knowledge doesn't go that far.I'll keep looking.LG
  3. what are all those variables coming from?code: <xsl:choose><xsl:when test="name='jane'">yes</xsl:when><xsl:otherwise>no</xsl:otherwise></xsl:choose> that should write yes if jane is there, no if not.LG
  4. I don't think xslt can save to databases.I might be wrong though. LG
  5. Ok, link:http://www.w3schools.com/xsl/el_when.aspif you still can't sort it out, ask again and I'll post code.LG
  6. try the GIMP download page.LG
  7. search google for an image manipulation program and make sure it supports GIF animation.
  8. is it impossible?anybody know?
  9. well, I wouldn't say professional, :)try adding this to your div's css:overflow:scroll;that should work.(by the way, I am in no way professional )LG
  10. as I said in your other topic, you would need to use an image manipulation program. GIMP is one you could try out, by the looks of chocolate570's avatar he probably knows alot about GIMP.search google for GIMP or pm chocolate570.LG
  11. onmouseover is not an html tag.use it like this:<div onmouseover="action here">content</div>make sence?ok,first, you need to make a function. put this in your script tags:function makesnd(){document.writeln("<object data='myaudio.mid' type='audio/midi' width='0' height='0' autostart='true'></object>")}then in your div:<div onmouseover="makesnd()">content</div>OK?LG
  12. if they overlap, set the position further apart.your first div might hold too much fo it's size, so make it scrollable by adding overflow:scroll; to your stylesheet.LG
  13. You would probably have to use animated GIFs. you could do it in javascript but it would be pretty extensive.LG
  14. there are some attributes that can change the direction;try this:http://w3schools.invisionzone.com/index.php?showtopic=3320LG
  15. I'm pretty sure there's some server side language solution, try posting in the php or asp forums and see what comes up.LG
  16. when you save your file, save as "nameyouwant.html".it should automatically make a web page.LG
  17. there is the unofficial <marquee> tag, but I wouldn't use that.google for a javascript scroller. one of my fovorite sites for javascript is: javascript.internet.com. I'm pretty sure they have one.LG
  18. Little Goat

    Help..

    you will have to use the entities.such as: leave the semicolons there.here's a link to the w3schools entity list:http://www.w3schools.com/tags/ref_entities.aspdoes that answer your question?LG
  19. you can use xml data islands, <xml> tag works in IE, but I'm not sure what to do in other browsers.(see my signature ) search xml data islands on w3schools.com and see what comes up.LG
  20. one problem with pulpfictions code:close the option tags!!!
  21. ok, first with your code, put it in a codebox. I don't know how to display how to do it without doing it, so look at the announcement that shows up on all the pages.second, close your options:this is right<option>blabla</option>this is wrong<option>blablalast of all,the onclick should look like this:onClick="window.location=document.navform.inchoice.value"I recomend using the onmousedown property instead of onclick. I was told that netscape doesn't support onclick very well.LG
  22. hi everyone,I was wondering if anyone knew how to make it so that your user can drag the page to scroll like in acrobat reader. I thought it would probably be done with javascript.if not or if it's not possible at all will someone please tell me?thanks, LG
  23. the correct way to make your css a valid external css file: body { font-size: 12pt; font-family: Times,Times new roman; background-color: #000000; color: #FFFFFF; }table { cellpadding: 0px; } in other words, don't put html tags in your css.you only need to put what is inbetween the style tags and inside the comment.LG
  24. search on google for free form processor.LG
  25. sorry I took a while to reply.about the <xsl:value-of> tag, I need the content and the template to be put into that space.I tried replacing it with an <xsl:apply-templates> tag and it shows all the content of the xml file, not just the content section. :)Here is the newest version of my XSL file. <?xml version="1.0" encoding="ISO-8859-1"?><xsl:stylesheet version="1.0"xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <head> <title><xsl:value-of select="page/title"/></title> <style type="text/css"> <xsl:value-of select="page/style"/> </style> </head> <body> <table width="100%"> <tr> <td colspan="2" id="header"><xsl:value-of select="page/title"/></td> </tr> <tr> <td id="links" width="20%"> <xsl:for-each select="page/links/link"> <xsl:variable name="href" select="to"/> <a href="{$href}"><xsl:value-of select="show"/></a><br /> </xsl:for-each> </td> <td id="content" width="80%"> <xsl:apply-templates/> </td> </tr> </table> </body> </html> </xsl:template> <xsl:template match="break"> <br/> <xsl:apply-templates/> </xsl:template></xsl:stylesheet> thats the one that shows all the XML content.same xml.if anyone knows how to make xsl transfer tags that are in the code, that would work, but I would prefer this.I don't know if I'm explaining it well, so if you can't figure out what I mean, please try it.thanks, LG
×
×
  • Create New...