Not Implemented
Posted: Sun Aug 27, 2006 10:21 am
I get a not implemented error when I call the following function... im simply doing an onclick addnote().. any idea why this would happen?
Code: Select all
function AddNote()
{
var newNote = new PhotoNote('Add note text here...',-1,new PhotoNoteRect(10,10,50,50));
newNote.onsave = function (note) { return 1; };
newNote.ondelete = function (note) { return true; };
notes.AddNote(newNote);
newNote.Select();
}