It seems it’s impossible to do it from the user interface. But I found here that it could be done using a VB Macro:
Sub ChangeAllTablesToNormal() Dim myTable As Table For Each myTable In ActiveDocument.Tables myTable.Select Selection.Style = ActiveDocument.Styles("Normal") Next myTable ActiveDocument.Repaginate End Sub You may try to change ActiveDocument.Styles("Normal") to ActiveDocument.Styles("Tables Normal") as suggested by Abhishek if it doesn’t work for you.
I created this little perl program that creates an RSS feed from a set of video files (.mp4). This is useful to wirelessly transfer files to the PSP. The files will be saved in the VIDEO folder of the PSP.
You’ll need to install MP4::Info and HTTP::Daemon from CPAN first.
#!/usr/bin/perl -w # this small program starts a http daeomon listening on port 1111 and provides a RSS feed # to all .
I realized that the PSP refuses to play all my .MP4 files from the root VIDEO folder. If I move them to MP_ROOT/100ANV01 it will work but if I put them in the VIDEO folder PSP says that they are not compatible data. After investigating a little bit, it seems that it only refuses to play AVC encoded files all other are fine. Well, if fact only MPEG-4 320x240 files can be played from the video folder whereas AVC 480x272 is fine if I put them in MP_ROOT/100ANV01.
If you faced the following subversion message in windows:
svn: PROPFIND request failed on '/repos/demosystemeic' svn: PROPFIND of '/repos/demosystemeic': 503 Service Unavailable (http://x.x.x.x) Probably the problem is caused because you are proxying your request via a proxy that doesn’t support HTTP methods like PROPFIND, etc.
If you don’t really need the proxy to access the repository edit the file c:\Documents and Settings_username_\Application Data\Subversion\servers (Note: Subversion directory is hidden)
and comment out the following items
Jonathan Harris has just released a new version of MP4::Info adding support for Sony PSP title and encoder.
Movie title and the encoder used are now accessible under $tag->{NAM} and $tag->{TOO}
use MP4::Info; my $file = 'MAQ12331.MP4'; my $tag = get_mp4tag($file) or die "No TAG info"; printf "$file title:%s encoder: %s\n", $tag~~<span style="NAM;text-align:right;">, $tag</span>~~>{TOO}; see my related post
Interesting link about Vista aggresive memory management (aka SuperFetch) Coding Horror: Why Does Vista Use All My Memory?
Today I opened a new feature request ( http://rt.cpan.org/Ticket/Display.html?id=25178) on MP4::Info perl module to include my patch to read the title in a Sony PSP files. Read this post to know more about the way title is encoded in PSP Mp4 files. With the following patch mp4infopatch.txt (applied to Info.pm) you can read the title of an PSP MP4 file using the following code snippet:
use MP4::Info; my $file = 'MAQ12033.
Here I included an example of a custom uuid USMT->MTDT block in a Sony PSP MP4 file
06A55450 75 75 69 64 55 53 4D 54 21 D2 4F CE BB 88 69 5C uuidUSMT!.O...i\ 06A55460 FA C9 C7 40 00 00 00 90 4D 54 44 54 00 04 00 0C ...@....MTDT.... 06A55470 00 00 00 0B 55 C4 00 00 02 1C 00 22 00 00 00 04 .
If you had tried to read the title of a Sony PSP MP4 file with Ruby’s mp4info or Perl’s MP4::Info you probably noticed that the title is not stored in the NAM tag where it should be.
Those two libraries cannot access the title info in Sony PSP files because title info is stored in a propierary way in a custom uuid atom called USMT (User Media Tags).
Inside this atom there is child atom called MTDT (Meta Data) that lists meta data entries, one of them is the title.
If you’re new to the PSP you must remember when copying files video files (created with 3GP converter or PSP Video 9) to your PSP that M4Vxxxxx.MP4 files go to the MP_ROOT/100MNV01 dir of the Memory Stick and the MAQxxxxx.MP4 files go to MP_ROOT/101ANV01 dir.
M4Vxxxxx files are conventional MPEG-4 files and MAQxxxxx are MPEG-4 files using AVC codec (recommended).