Embedding player - loading subset of pages

    var player;
    function icOnAppLoaded(){
        player = icCreatePlayer('_icplayer');
        // Set subset of pages before loading content
        player.setPages('2,3,4');
        player.load('content/default.ic.xml');
    }  

Remarks

  1. Pages should be set before content.
  2. Argument for setPages() method should be string with page indexes separated with comma - otherwise IllegalArgumentException will be thrown.
  3. State for presentation with subset of pages selected is incompatible with presentation with all pages.