

Finally we can find out how to use full-duplex audio on Symbian Series 60 2ed. FP3 phones. As they say here Nokia has released on its Forum Pro site such example in 9 November. It' named Full-Duplex Audio Example. Details of this example we can learn very soon when somebody will publish such a code.
Opera Software have released the new version of its Opera Mobile browser for Symbian Series 60 (S60). Opera 8.5 for S60 boasts high speed, Opera's wide range of features and a new password manager for automatic log-in to sites. The browser also features Opera's advanced zoom-on-page functionality which means that users can zoom in or out to view images and text.


Press release says:
Developers can program in C++ or Java to create powerful professional and personal productivity tools for the P990. The smartphone is based on Sony Ericsson's Java Platform 3 (JP-3) and supports four new JSRs including Web Services (JSR 172). It is the twentieth phone from Sony Ericsson to support Mobile Java 3D with JSR 184. The P990 supports both CDLC and CDC Java environments, and standard Java applications can run in both flip-open and flip-closed modes.



void ForAllMatchingFiles(RFs& aSession, const TDesC& aWildName, const TDesC& aScanDir)
{
TFindFile file_finder(aSession);
CDir* file_list;
TInt err = file_finder.FindWildByDir(aWildName,aScanDir, file_list);
while (err==KErrNone)
{
TInt i;
for (i=0; i < Count(); i++)
{
TParse fullentry;
fullentry.Set((*file_list)[i].iName, &file_finder.File(),NULL);
// Do something with the full Symbian OS filename
DoOneFile(aSession, fullentry.FullName());
}
delete file_list;
err=file_finder.FindWild(file_list);
}
}