I've just created an Articulate skin in Flash and want to include the Articulate note button at the bottom of the screen Is there an ArtAPI that I can attach to a button on my Flash file that will accomplish this?
There are two places were notes are used in Articulate The smaller popup on the bottom of the player and the bigger panel in the outline pane; they are both swfs
I'm attempting to use the Art API GetSlideInfo(nSlideNum) to get to the slide notes There's also the slide info objects property: oSlideInfo strNotes (this is from the Articulate Presenter Player SDK reference) I'm not quite sure how to put this all together in the flash code I have this so far where cc_btn_mc the the Closed Captioning button and the cc_txt is the CC text box
var ArtAPI = _level0 ArtAPI;
cc_btn_mc onRelease = function(){ cc_txt text = ArtAPI GetSlideInfo(strNotes); }
7 Replies
Do you want it to open the built in articulates notes? If so which one?
I use the notes as a CC option I want the built-in notes but want to use my own button graphic What other options do I have?
There are two places were notes are used in Articulate The smaller popup on the bottom of the player and the bigger panel in the outline pane; they are both swfs
You can load them from \data\swf\notes
I want to use the smaller popup at the bottom of the screen Not sure how to go about this Can you give me some help?
I'm attempting to use the Art API GetSlideInfo(nSlideNum) to get to the slide notes There's also the slide info objects property: oSlideInfo strNotes (this is from the Articulate Presenter Player SDK reference) I'm not quite sure how to put this all together in the flash code I have this so far where cc_btn_mc the the Closed Captioning button and the cc_txt is the CC text box
var ArtAPI = _level0 ArtAPI;
cc_btn_mc onRelease = function(){
cc_txt text = ArtAPI GetSlideInfo(strNotes);
}
I get undefined sent back
Try this:
var ArtAPI = _level0 ArtAPI;
cc_btn_mc onRelease = function(){
var slideInfo = ArtAPI GetSlideInfo(1); //this will get slide 1's info
cc_txt text = slideInfo strNotes;
}
Thank you,
James Kingsley
http://elearningenhanced com/
*if you are creating widgets or skins please considering sharing/selling them at http://elearningenhanced com/community-files
Nice You Rock James! That did it! Can't thank you enough!
Now I'm off to adding tabs to my skin
Best Regards,
Lou Mang