NotePad Quick Reference

Voice-enabled text editor with speech recognition and commands

Key Features Voice Commands Server-Side Usage: // Get the NotePad API var NotePad = js.getObject("/OpenForum/AddOn/NotePad","NotePad.sjs"); // Save note NotePad.saveNote("/MyPage", "note.txt", "Note content"); // Load note var content = NotePad.loadNote("/MyPage", "note.txt"); Client-Side Usage: // Save note via API JSON.post('/OpenForum/AddOn/NotePad/Save', null, 'pageName=/MyPage&fileName=note.txt&content=' encodeURIComponent(noteContent)) .onSuccess(function(result) { console.log('Note saved'); }).go(); // Load note JSON.get('/OpenForum/AddOn/NotePad/Load', null, 'pageName=/MyPage&fileName=note.txt') .onSuccess(function(content) { console.log('Note loaded:', content); }).go(); Configuration