Namespaces
Variants
Actions
Revision as of 07:22, 3 October 2012 by hamishwillee (Talk | contribs)

Archived:Adding a calendar entry in Flash Lite

Jump to: navigation, search

This code snippet demonstrates how to use the Calendar Service API in a Flash Lite 3.0 application to add new calendar entries to the calendar. Supported from S60 5th Edition onwards.

MultiMediaTile.png
Article Metadata

Code Example
Tested with
Devices(s): Nokia 5800 XpressMusic

Compatibility
Platform(s): S60 5th Edition and later

Article
Keywords: Service.Calendar, calendar.Add()
Created: User:Nokia Developer KB (15 Dec 2008)
Last edited: hamishwillee (03 Oct 2012)

Contents

Source

// Import the Platform Service Interface
import com.nokia.lib.Service;
// Heading of the application
heading_txt.text = "Add Calendar event(ToDo)";
 
// Create a new Service object which has Calendar data
var calender = new Service("Service.Calendar", "IDataSource");
 
// Define a new Clendar item
// Date syntax: Date([yearOrTimevalue], [month], [date], [hour], [minute],
// [second], [millisecond])
var toDo = {
Type:"ToDo", EndTime:new Date(2008, 12, 1, 10, 0, 0, 0),
Replication:"Open", Description:"Do Example Stub", Priority:1,
AlarmTime:new Date(2008, 12, 1, 9, 30, 0, 0), Status:"TodoNeedsAction"
};
 
// Define the input parameters
var inParams = {Type:"CalendarEntry", Item:toDo};
 
// Define the result value
var outParams = calender.Add(inParams);
 
// Check if the add was a success
if (outParams.ErrorCode == 0) {
var calenderId = outParams.ReturnValue;
text_txt.text = "ID of the added item: "+calenderId;
} else {
var errorId = outParams.ErrorCode;
text_txt.text += "\rError: "+errorId;
}

Postconditions

The ID of the added or updated calendar item is displayed.

The added item can be found from the device's calendar application.

Example application

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

See also

232 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved