Jump to content

kvnmck18

Members
  • Posts

    365
  • Joined

  • Last visited

Everything posted by kvnmck18

  1. MusicMatch is the Itunes of the Digital Jukebox.There are other programs that work but none are free. I just need a M4p/Mp4 converter to Mp3 or windows media, know of one? (freeware??)
  2. So how about if I rephrase the question:Anyone know how to make MusicMatch Jukebox read m4ps and mp4s so I can call these file types to a Dell Digital Jukebox (Mp3) player?
  3. That I do, I'm privileged. But any ideas?
  4. Anyone know how to make a Dell Digital Jukebox work in Itunes? A friend just got me one for my birthday, I haven't had time to fool around with it.
  5. I ran into the same problem too... Excellent.
  6. haha I want my computer to be in a microwave...that article was awesome.THanks for all the responses, sorry I've been so busy lately to respond. I agree with the no need to surpass 2 gigs of RAM but I want a lot just to say I have a lot....and you would be surprised how much space and how quickly I use it. I already have a terabyte with of external harddrives that are almost full.http://www.3dgameman.com/vr/lianli/lian_li...li_pc777_01.jpg <---this is the coolest case ever, where can you buy that?
  7. I know this... I was just wondering what everyone else currently has and if they like it.Also, I keep hearing way too many mixed views on Vista.... what is everyone on here thinking?Personally I want to wait at least 6months-1year before making the change. Any Vista users??? Comments?(I trust the people on hear more than anywhere else)
  8. Can I get some suggestions for a new computer I am going to build?What brands, versions/model/makes, ect.ect. on anything.I thinking of making the RAM be greater than or equal to 8 gigs for starters, I need good graphic card, good sound card, at least 1 500 gig harddrive, and so onI want the best computer(Also, if you can include sites that you believe have the best prices)
  9. Thank you, buddyIt has been like 2 years since I've used something like this. THANKS AGAIN!
  10. Sorry for this post but it's annoying me (I know it's basic)...How can you submit a URL of an <option> <select> onchange()?Thank you:)
  11. kvnmck18

    XML and CSS

    It really is worth learning...and easyIf you have problems feel free to ask
  12. I sugguest using PHP or ASP for this. Javascript doesn't really work that way.What's you video player made in? (Flash?)
  13. kvnmck18

    XML and CSS

    If this doesn't help or you are confused put you XHTML layout on here and your XML
  14. kvnmck18

    XML and CSS

    When I am using XML...I make my layout in pure XHTML (and use CSS)...and I think about how I am going to apply my XML data to it. I then create my XSLT using my layout and apply all the XML data and wha-lah! it's a site!To style an XML use XSLT. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:output method="html" omit-xml-declaration="yes" indent="yes"/><xsl:template match="/"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/><title>Untitled Document</title><link rel="stylesheet" type="text/css" href="YOURCSS.css" /><!--or like this:<style></style>--></head><body>Contents In here (just like XHTML)</body></html></xsl:template></xsl:stylesheet> Just apply the XSLT to your XML and open the XML...and it will look like a "normal" XHTML page rather than a data tree....and then to make it even more exciting you can use a server side script (such as PHP or ASP) and really make it dynamic.
  15. kvnmck18

    Ohio

    Hey is anyone else on here from Ohio?I'm from Columbus...just wondering.
  16. Try making a seperate CSS for printing<style type="text/css" media="print">
  17. On that topic, boen - did you ever get an edit function to work?...if not, I was thinking: call the specified node, load the value/content, and use replaceChild() replaceChild($new, $old);
  18. Actually I don't know what I was saying. You don't need that true()...when I responded I was in the middle of something else....I corrected the XSLT code. The for-each creates a "loop" for the nodes called "Report" and the value-of ONLY selects attributes with the name of "searchSize".Also to respond, Your XML can have as many nodes as you want...I was just using an example.If you want the true attribute to be away of determing the XSLT then do this:(the xml): <?xml version="1.0" encoding="iso-8859-1"?><reports> <Report searchable="true" searchSize="10"/> <Report searchable="true" searchSize="20"/> <Report searchable="false" searchSize="25"/> </reports> So in the XML above there are two "true" values for the searchable attribute. This should result with a 10 20. The 25 should not be shown. If all were false, none would be shown. If you made searchSize="25" "searchable" to true...then all three of those would be shown. Here's the XSL: <?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="reports"> <xsl:for-each select="Report"> <xsl:if test="@searchable = 'true'"> <xsl:value-of select="@searchSize" /><br /> </xsl:if> </xsl:for-each></xsl:template></xsl:stylesheet> What exactly are you doing? What determines if one of those numbers (searchSize) are not true?
  19. I say $300 start off and $50 per page...that's real fair...if they go to a real web design company they are going to pay A LOT A LOT MORE!...even if a company is really bad (and they don't knwo what they are doing)...A LOT, just because they can.Don't sell yourself short...businesses have money and they take a website as advertising and 300-800 is not much money (even for a small business)Also, I would not copy anything from that site.THAT SITE IS HIDEOUS! Not a good template to base anything off of.Good design = more $
  20. I say use XSLT: <?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="reports"> <xsl:for-each select="Report"> <xsl:value-of select="@searchSize" /><br /> </xsl:for-each></xsl:template></xsl:stylesheet> ...this is if you xml is simliar to: <?xml version="1.0" encoding="iso-8859-1"?><reports> <Report searchSize="10"/> <Report searchSizse="20"/> <Report anotherAttribute="Whatever"/> </reports> You can also use a choose with when tests/otherwise
  21. You know what... I actually sugguest using XML and ActionScript (in Flash)
  22. Yeah, I know of those companies that make you pay...I was just wondering if there was a free one.That's sad.
  23. I don't get what you are doing... ?Like print the input value on the site?(You need the input to be close... <input />)
  24. kvnmck18

    Swap image

    Okay then just ignore what I said...I was just trying to simplify your XSLT... that's not important.What is the current XSLT you are using in the http://www.stalverhoeven.nl/xml/aangeboden.xml?For that javascript to work just add the head section, the part in the "main image", and the part in the href
  25. kvnmck18

    AJAX

    Wonderful. Thank you.
×
×
  • Create New...