View Single Post
  #5 (permalink)  
Old 12-18-2005, 09:34 AM
Bart Kohler Bart Kohler is offline
Junior Member
 
Join Date: Dec 2005
Location: Presently Japan
Posts: 5
Points: 0.00
Donate
Talking

With some simple HTML you can use your browser in 2.+ , or i suppose use WIPEOUT to see the local files on your mem stick. IF you save stuff from the internet it puts it in a folder called PSP/COMMON. You can put all sorts of stuff in there.

eg

here is the HTML of my index.html file inside COMMON. IF you know HTML then off you go otherwise have a look thi is written pretty simply, I am a simple man. The style stuff is just to let you make you index file look any way you want. After <BODY> are all theh HREF s to internet browser link to your file inside COMMON. I have not worked out how to browse the rest of the stick. you can only use COMMON or below. Make a bookmark of the index file and off you go. I tried doing HTML code to try to get it to play MP3s and view graphics and stuff but the java script is crippled. it is meant to be a little broswer not fully functional.

Any way give it a go. It can view any txt or html file from an eBook place. Unfortunately I think that TXT files fill the buffer very fast but it still needs experiemnts.

See ya





<html>
<head>
<title>File index</title>


<style type="text/css">
/******
*background Sets background images or colors URL, color-name, RGB value (hex)
* {background: white} background-color: black;
*color Sets color of text color-name, RGB value (hex)
* {color: blue}
*font-family Sets typeface typeface name or font family name
* {font-family: courier} serif, sans-serif, cursive, fantasy, monospace
*font-size Sets size of text points (pt), inches (in), centimeters, (cm), pixels (px)
* {font-size: 12pt}
*font-style Italicizes text normal, italic
* {font-style: italic}
*font-weight Sets thickness of type extra-light, light, demi-light, medium, demi-bold, bold, extra-bold
* {font-weight: bold}
*line-height Sets the distance between baselines points (pt),inches (in),centimeters (cm),pixels (px),percentage (%)
* {line-height: 24pt}
*margin-left Sets distance from left edge of page points (pt), inches (in), centimeters (cm), pixels (px)
* {margin-left: 1in}
*margin-right Sets distance from right edge of page points (pt), inches (in), centimeters (cm), pixels (px)
* {margin- right: 1in}
*margin-top Sets distance from top edge of page points (pt), inches (in), centimeters (cm), pixels (px)
* {margin-top: -20px}
*text-align Sets justification left, center, right
* {text-align: right}
*text-decoration Underlines or otherwise highlights text none, underline, italic, line-through
* {text- decoration: underline}
*text-indent Sets distance from left margin points (pt), inches (in), centimeters (cm), pixels (px)
* {text-indent: 0.5in}
*cursor: url(mycursor.cur)
*<script type="text/javascript" src="snow.js">
*</SCRIPT>
*
**********/


<!--
body {
background: black url(tenchu.jpg) repeat-y fixed center;
}
h1 {
color : orange;
text-align: center;
font-weight: bold;
border-bottom: 3px orange;
padding: 4px 4px 1px 4px;
}
p {
color: white;
}
-->
</style>


</head>

<BODY>

<H1>BArt's File List</H1>

<a href="HTML Files/GrooPage.htm"> Groo Page </a><BR><BR>
<a href="HTML Files/KYOTO October.htm"> KYOTO October</a><BR><BR>
<a href="HTML Files/KYOTO November.htm"> KYOTO November </a><BR><BR>
<a href="HTML Files/KYOTO December.htm"> KYOTO December</a><BR><BR>
<a href="HTML Files/BG2walkthrough.html"> BG 2 Walkthrough</a><BR><BR>
<a href="HTML Files/BG2walkthrough.rtf"> BG 2 Document</a><BR><BR>

<H1>eBooks</H1>
<a href="eBooks/Machivelli_The_Prince.txt"> Machivelli_The_Prince</a><BR><BR>
<a href="eBooks/Roget's Thesaurus of English Words and Phrases.htm"> Roget's Thesaurus of English Words and Phrases</a><BR><BR>
<a href="eBooks/The Art of War, by Sun Zu.htm"> The Art of War, by Sun Zu</a><BR><BR>
<a href="eBooks/Null.htm"> NULL</a><BR><BR>





</body>
</html>
Reply With Quote