Jump to content

zanfranceschi

Members
  • Posts

    65
  • Joined

  • Last visited

Everything posted by zanfranceschi

  1. Your code didn't work because when 'H_' is written in your document, all your document has (including the source) is 'H_'. And 'H_' would obviously never manipulate anything.I found this out on:http://www.mozilla.org/docs/dom/domref/dom_shortIX.htmlmore precisely on:http://www.mozilla.org/docs/dom/domref/dom...52.html#1026254This worked in my firefox 1.0.7... <html><head><script language="javascript" type="text/javascript">function escreve(string) { ifram.document.open(); ifram.document.write(string); ifram.document.close();}function timeDisplay(){ var t=setTimeout("escreve('H_');",100); var t=setTimeout("escreve('He_');",200); var t=setTimeout("escreve('Hel_');",300); var t=setTimeout("escreve('Hell_');",400); var t=setTimeout("escreve('Hello_');",500);}</script></head><body onLoad="timeDisplay();"><iframe src="about:blank" name="ifram" style="border: 0;"></iframe></body></html> See this here: http://www.zanfranceschi.com.br/etc/hello_.html
  2. zanfranceschi

    EOF

    What's the script for deleting lines?
  3. if you want a content search (which i believe is what you want) AND your site has database content, it would be very easy.But if your site doesn't have database and you want to perform a search in the content embedded in the files, you'll have to be very creative and it may become a bit complex...If you want the latter and don't know how to start, I suggest you could create a separeted file containing only keywords and references to the sessions of your site.
  4. i thought of it too... bah...
  5. I started trying the Crismon Editor and I liked it very much. It still lacks some features, but it's cool anyway. The FTP feature is really a time saver.Thanks Eric!
  6. 316 and dieing to know the easter egg... hehehe---320.5---321----
  7. if you really want to load an external text file inside your HTML, use javascript, but as Shinta suggested, PHP or ASP would be piece of cake...java script:1. save your 'data.txt' as 'data.js'2. inside your 'data.js':--------myVar = "put your data here, and, if necessary, escape Toby's strings like \"this\" \"because\" \"you\" \"may\" \"like\" \"quoting\" \"everything\"";--------(i exagereted because i had fu**** hard time scripting with javascript in the beginning without knowing about escaping strings, and no one needs to go through i went... [+s everywhere...])3. inside your html (where u want your data to be loaded:--------<script language="javascript" src="data.js">document.write(myVar);</script>--------With PHP simple (if your server runs PHP):<?include('data.txt');?>inside ur html page...
  8. Try playing with: height, line-height, padding, margin (negative values perhaps).
  9. Try this:<HTML><HEAD><script language=javascript> function test() { document.location.href='http://www.google.com'; }</script></HEAD><body><INPUT type="button" value="Button" onclick="test();"></body></html>
  10. I still think it's the meta tag thing. I had this sort of problem once: the browse wouldn't render my special Portuguese characters properly untill i declared the type of encoding within the meta tag. Try with different encodings (there are a lot of iso-8859-XXs...). If you could know what is the encondig your editor is using, i guess it also useful.Could you give an example of the character that it's not rendering properly and with which font?--------I've just found this:http://www.geocities.com/Heartland/Lake/34...onki.htm?200610and saw it's an ISO-8859-2 encoding...Don't know, hope it helps.
  11. It's still not clear to me if you are having problems with specific fonts (Arial, Verdana, etc.) or special characters (ç, ã, ó...).The meta thing is as simple as i stated above. Just declare the type of encoding you're using: normally ISO-8859-1 or UFT-8 inside the meta tag.And the font-family thing, I guess is the following:<style type="text/css">@import {font-family: Font;src: url('Font.ttf');}/* add your class here... */.mySpecificFont {font-family: "Font";}</style>
  12. Full name: Francisco A. ZanfranceschiBirth date(dd/mm/yyyy): 27/09/79Gender: maleZodiacal sign: libraCountry of residance: BrazilCity of residance: São PauloEyes: yesHair: yesInterest: music, computer in general, programming, web standards
  13. isn't it the encoding meta tag <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> ? iso-8859-1, utf-8, etc...
  14. Kate...http://kate.kde.org/Post screenshots (please, no 1200016 x 15000008 screens...) of the programme(s) you use, think it's cool to see the GUI of it (them). I'm looking for one like Kate for windows...Btw, I had an idea, why don't we post the set of programmes we use to build, develop, whatever? Like:editing, coding, etc:ftp client:image treatment:etc:
×
×
  • Create New...