You Are Here:

Community: Wiki

This page was last modified on 15 December 2008, at 14:08.

CS001220 - Importing calendar entries in Flash Lite

From Forum Nokia Wiki



ID CS001220 Creation date December 15, 2008
Platform S60 5th Edition Tested on devices Nokia 5800 XpressMusic
Category Flash Lite Subcategory S60 Platform Services


Keywords (APIs, classes, methods, functions): Service.Calendar, calendar.Import()

Overview

The following snippet demonstrates how to use the Calendar Service API in a Flash Lite 3.0 application to import calendar entries from the external text file to the default calendar of the device (supported from S60 5th Edition onwards).

Preconditions

Note: For a successful calendar import with this application you need to a text file called 'example.txt' at c:\\Data\\Others\\example.txt. The text file also needs to include valid VCal format data. (This file is created in another snippet: [Exporting_calendar_entries_in_Flash_Lite] )

Source

// Import Platform Service Interface
import com.nokia.lib.Service;
// Heading of the application
heading_txt.text = "Import Calendar entries";
 
// Create new Service object which has Calendar data
var calender = new Service("Service.Calendar", "IDataSource");
 
// Define data for import
// c:\\Data\\Others\\example.txt file is needed
var inputData = {FileName:"c:\\Data\\Others\\example.txt", Format:"VCal"};
// Define input data
var inParams = {Type:"CalendarEntry", Data:inputData};
// Define result data
var outParams = calender.Import(inParams);
if (outParams.ErrorCode == 0) {
text_txt.text += "Import success!\rImported entries:\r";
var outList = outParams.ReturnValue;
// Go through all imported calendar entries and trace them to the textbox
// on the scene
do {
var id = outList.next();
if (null != id) {
text_txt.text += "-"+id+"\r";
} else {
break;
}
} while (true);
 
} else {
var errorId = outParams.ErrorCode;
text_txt.text += "\rError: "+errorId;
}

Postconditions

The IDs of the imported calendar entries are displayed. The entries are also visible in the default calendar of the device.

Example application

The following sample application has been tested in Nokia 5800 XpressMusic (S60 5th edition, Flash Lite 3.0). File:FlashLite Import Calendar Entries.zip

See also

Related Wiki Articles

No related wiki articles found

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia 
RDF Facets: qdcZidentifierQSxhttpE3aE2fE2fwikiE2eforumE2enokiaE2ecomE2findeE78E2ephpE2fCS001256E5fE2dE5fE4caunchingE5fanE5finstalledE5fapplicationE5finE5fFlashE5fE4citeX qdcZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qdcZtypeQUqfntypeZCommunityContentQ qdcZtypeQUqfntypeZE52esourceQ qdcZtypeQUqfntypeZWebpageQ qdcZtypeQUqfntypeZWikiContentQ qdcZtypeQUqmarsZManagedE52esourceQ qdcZtypeQUqwebZInformationE52esourceQ qdcZtypeQUqwebZPageQ qdcZtypeQUqwebZE52esourceQ qdcZtypeQUqrdfsZE52esourceQ qfnZtopicQUqfnTopicZflashQ qfnZtopicQUqfnTopicZflashE5fliteQ qfnZtypeQUqfntypeZCommunityContentQ qfnZtypeQUqfntypeZE52esourceQ qfnZtypeQUqfntypeZWebpageQ qfnZtypeQUqfntypeZWikiContentQ qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX qrdfZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qrdfZtypeQUqfntypeZCommunityContentQ qrdfZtypeQUqfntypeZE52esourceQ qrdfZtypeQUqfntypeZWebpageQ qrdfZtypeQUqfntypeZWikiContentQ qrdfZtypeQUqmarsZManagedE52esourceQ qrdfZtypeQUqwebZInformationE52esourceQ qrdfZtypeQUqwebZPageQ qrdfZtypeQUqwebZE52esourceQ qrdfZtypeQUqrdfsZE52esourceQ
User Rating: qfnZuserE5FratingQNx5E2E0000X
RDF Facets: qfnZuserE5FtagQSxflashliteX