> PSPMOD Youtube Template
> PSP Guides
> PSP Downloads

> PC Talk Forums

> Free PSP Demos



Recommended Sites
-
PSP Downloads
-
PSP News
Free PSP Demos

Forums

-
General Announcements
-Introduce Yourself
-
PSP News
-PVP's Archives
PSP Mod's and Hacks
-
Hardware
-
Firmware
-
PSP Custom Firmware
-
Sony PSP Homebrew
-
PSP General
-
PSP Emulation
-
PSP Wireless
PSP Games
-
PSP Games
-
PSP Game Reviews
-PSP Homebrew Rev
Entertainment
-
Other Consoles
-
Movies/Music On PSP
-
Movie/Music Reviews
-
Digital Art
-
PSP Scams
-PSPMOD Youtube
-PSP Demos
 


Go Back   Sony PSP Mod & PSP Hacks Forums > PSP Mod's and Hack's > Wireless
User Name
Password

Reply
 
Thread Tools Display Modes
Old PSP's Key Codes 09-05-2008, 04:27 AM   #1 (permalink)
Nicholas_Roge
Junior Member
 
Join Date: Sep 2008
Posts: 9
Firmware Installed: CF 4.01 M33-2!

Default PSP's Key Codes

I'm creating an offline manga viewer for the psp using the psp's browser's file:// address to get to them. What I need to know though, is if the psp has key codes (for javascript) like you would have on a computers keyboard (i.e.: the keycode for enter is 13, up arrow is 38, etc...) I need to know this in order to be able to browse efficiently. If you need anymore information, just ask me or PM me.
Nicholas_Roge is offline  
Reply With Quote
Sponsored Links
Old PSP's Key Codes 09-05-2008, 04:32 AM   #2 (permalink)
ƒR()§†H@X
Senior Member
PSP Mad Hacker
 
ƒR()§†H@X's Avatar
 
Join Date: May 2008
Location: Jacksonville,Florida
Posts: 667
Firmware Installed: cfw 5.00 m33-3
Send a message via AIM to ƒR()§†H@X Send a message via MSN to ƒR()§†H@X Send a message via Yahoo to ƒR()§†H@X Send a message via Skype™ to ƒR()§†H@X
Default PSP's Key Codes

most people just use the default CROSS for enter
then theres UP,Down,LEFT,RIGHT,RTRIGGER,LTRIGGER etc.and someone made a magna app that goes into game awhile back.but it doesnt work now that i know of.but ya,since theres tech no keyboard using numbers is weird and pointless.learn how to make a homebrew,not a portal please
__________________
Ultimate MMS Maker For Xp/Vista
sdhc > ms pro duo
Easy Popsloader Installation Setup




BoiWndr-I never said anything about piracy, just that I downloaded. For all anyone knows I got the games off of psp*******.net but thanks for the tip.
ƒR()§†H@X is offline  
Reply With Quote
Old PSP's Key Codes 09-05-2008, 05:09 AM   #3 (permalink)
Ws.Lp
Member
PSP User
 
Ws.Lp's Avatar
 
Join Date: Aug 2008
Location: Ontario, Canada
Posts: 90
Firmware Installed: 4.01 m33-2 w/ 4.05up
Send a message via MSN to Ws.Lp Send a message via Skype™ to Ws.Lp
Default PSP's Key Codes

im interested in this. but i agree with frost. make it a homebrew bud.
that way all manga fans that own a psp can check it out. (since i know there isnt alot of manga on the psp)
__________________
PSP: Ceramic White LE: Battlefront
OFW-3.52>3.71>4.01>4.05>CFW-4.01 M33-2..





Ws.Lp is offline  
Reply With Quote
Old PSP's Key Codes 09-05-2008, 11:30 PM   #4 (permalink)
Nicholas_Roge
Junior Member
 
Join Date: Sep 2008
Posts: 9
Firmware Installed: CF 4.01 M33-2!

Default PSP's Key Codes

Well, the reason I won't do homebrew, simply, is because I can't. As you notice I have the official firmware installed, and because I don't have $40 to shell out for a Pandora's battery, I can't get one. And before you tell me to make one: I tried once already, and now my PSP's battery doesn't work half of the time. When I go to turn it on, if it doesn't load (the power light always turns on), then I have to take it out and flick it. After I put it back in it almost always works.

Anyways, back to the topic at hand, I tried adding LEFT and RIGHT (as you'll see in the code below), but it didn't work. Any suggestions?
This is the javascript code I'm running:
Code:
var browser = navigator.appName;
if (browser == "Microsoft Internet Explorer") {
    document.onkeydown=kpressed_IE;
} else {
    document.onkeydown=kpressed_others;
}
function kpressed_IE(e) {
    if (!e) var e = window.event;
    if (e.keyCode) {
        keycode = e.keyCode;
        if ((keycode == RIGHT) || (keycode == LEFT)) {
            window.event.keyCode = 0;
        }
    } else {
        keycode = e.which;
    }
    if (keycode == RIGHT) {
        nextPage(1);        
        return false;
    } else if (keycode == LEFT) {
        nextPage();
        return false;
    }
}
function kpressed_others(e) {
    if (e.which) {
        keycode = e.which;
    } else {
        keycode = e.keyCode;
    }
    if (keycode == RIGHT) {
        nextPage(1);        
        return false;
    } else if (keycode == LEFT) {
        nextPage();
        return false;
    }
}
Nicholas_Roge is offline  
Reply With Quote
Old PSP's Key Codes 09-06-2008, 08:14 PM   #5 (permalink)
aamer91
Junior Member
PSP User
 
Join Date: Sep 2008
Posts: 15
Firmware Installed: 3.80 M33-5

Default PSP's Key Codes

great idea man, lol
aamer91 is offline  
Reply With Quote
Old PSP's Key Codes 09-07-2008, 12:22 AM   #6 (permalink)
bundles4areason
Junior Member
 
Join Date: Sep 2008
Posts: 7

Default PSP's Key Codes

Ay People Whats Up ..... =d
Im Up Here Tryin To Get On The Internet On My Psp
But Every Time I Do ... This Pops Up

"a Connection Error Has Occured. The Attempt To Obtain The Ip Address Timed Out."

What Should A Pimp Do Help!!!!

Send A Message If U A Helpful Person Ill Be Thnakful =d
__________________
bundles4areason is offline  
Reply With Quote
Old PSP's Key Codes 09-07-2008, 02:44 AM   #7 (permalink)
Nicholas_Roge
Junior Member
 
Join Date: Sep 2008
Posts: 9
Firmware Installed: CF 4.01 M33-2!

Default PSP's Key Codes

Quote:
Originally Posted by aamer91 View Post
great idea man, lol
Thank you. I'll release a beta whenever I can find out out to change the page with one button.

Quote:
Originally Posted by bundles4areason View Post
Ay People Whats Up ..... =d
Im Up Here Tryin To Get On The Internet On My Psp
But Every Time I Do ... This Pops Up

"a Connection Error Has Occured. The Attempt To Obtain The Ip Address Timed Out."

What Should A Pimp Do Help!!!!

Send A Message If U A Helpful Person Ill Be Thnakful =d
I'm not trying to be rude or anything, but please make another thread to ask this question and don't clog up mine. And not that I really belong to these forums, but you should try to keep your signature a little cleaner.
Nicholas_Roge is offline  
Reply With Quote
Old PSP's Key Codes 09-07-2008, 02:56 AM   #8 (permalink)
ƒR()§†H@X
Senior Member
PSP Mad Hacker
 
ƒR()§†H@X's Avatar
 
Join Date: May 2008
Location: Jacksonville,Florida
Posts: 667
Firmware Installed: cfw 5.00 m33-3
Send a message via AIM to ƒR()§†H@X Send a message via MSN to ƒR()§†H@X Send a message via Yahoo to ƒR()§†H@X Send a message via Skype™ to ƒR()§†H@X
Default PSP's Key Codes

if the light auto comes on and its a black screen,and your on a slim and have the mms installed,then its normal.you press x and wait for the psp to shut itself off.then when you reload with a normal battery youll have custom firmware.
__________________
Ultimate MMS Maker For Xp/Vista
sdhc > ms pro duo
Easy Popsloader Installation Setup




BoiWndr-I never said anything about piracy, just that I downloaded. For all anyone knows I got the games off of psp*******.net but thanks for the tip.
ƒR()§†H@X is offline  
Reply With Quote
Old PSP's Key Codes 09-07-2008, 07:49 PM   #9 (permalink)
Nicholas_Roge
Junior Member
 
Join Date: Sep 2008
Posts: 9
Firmware Installed: CF 4.01 M33-2!

Default PSP's Key Codes

Sorry for the double post, but I just couldn't wait to exclaim my joy! I have finnally flashed my PSP. Just check out my firmware version!

Edit: So now that i have a flashed PSP, I will make it a homebrew application. It will take a few weeks though, as I don't even know the basics yet.

Last edited by Nicholas_Roge : 09-07-2008 at 09:39 PM.
Nicholas_Roge is offline  
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


All times are GMT. The time now is 10:19 PM.


Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.0.0 RC8