Probably you could think PSP is not the best device to read PDF files and also it is not intended to do so, better to play some game like Need For Speed :) Yes, I know but I'm "a curious animal" and use my PSP more read than other thing.
Some time ago I update my PSP, now runs 5.50 GEN-D firmware version, and since then Bookr doens't works, the nasty 8002014C error appears on my screen.
Well, don't ask my why but if you want to use bookr too the version that works for me is Bookr for firmware 1.0.
See bookr in action:
If you, like me, loves Drupal then this post is for you.
Not much so say here, simply another site pointing to MyDrupal post that collects a bunch of nice tutorials classified depending on the user level skill (beginner, intermediate, developer):
http://mydrupal.com/drupal-tutorials
Recently I was working on a AS3 project and surprisingly the handler assigned on a Sprite subclass for mouse DOUBLE_CLICK events never is fired.
If you arrive here and are in the same situation like me, then the next link is for you: http://actionscript3.blogs2k.com/2009/01/17/ActionScript%203%20-%20no-double-click-at-all%20-AS3.
If you go to first comment you could read that:
In order for the DOUBLE_CLICK event to be captured, the MovieClip, or Sprite in this case, you must first have the doubleClickEnabled property set to true.
Take also into account probably you must play too with the 'mouseChildren' property and that could be a problem when you work with some kind of scene graph objects.
Finally I would like to note one of the solutions commented to emulate the double click using simple the click event and getTimer().
const CLICK_TIME:int = 300;
var doubleTimer:int;
addEventListener(MouseEvent.CLICK, handleMouseClick);
function handleMouseClick(e:MouseEvent):void {
if (e.type == MouseEvent.CLICK) {
if (getTimer() - doubleTimer < CLICK_TIME) {
// execute code or dispatch event here
}
doubleTimer = getTimer();
}
}

Delicious
Digg
StumbleUpon
Propeller
Reddit
Magnoliacom
Newsvine
Furl
Facebook
Google
Yahoo
Technorati
Recent comments
22 weeks 17 hours ago
42 weeks 5 days ago
42 weeks 6 days ago